From d5cd131da4fd043dd0d7161a43f5b69ef13dd3d3 Mon Sep 17 00:00:00 2001 From: Alexey Gerenkov Date: Fri, 10 Jan 2020 23:21:37 +0300 Subject: [PATCH] apptrace: Adds support for multi-core traces in single file to SystemView processing scripts --- tools/ci/executable-list.txt | 1 - tools/esp_app_trace/espytrace/apptrace.py | 3 +- tools/esp_app_trace/espytrace/sysview.py | 80 +- .../test/sysview/compare_json.py | 16 - .../test/sysview/expected_output_mcore | 28964 ++ .../test/sysview/expected_output_mcore.json | 243449 +++++++++++++++ .../test/sysview/heap_log_mcore.svdat | Bin 0 -> 171074 bytes .../test/sysview/sysview_tracing_heap_log.elf | Bin 0 -> 2718952 bytes tools/esp_app_trace/test/sysview/test.sh | 14 + 9 files changed, 272485 insertions(+), 42 deletions(-) delete mode 100755 tools/esp_app_trace/test/sysview/compare_json.py create mode 100644 tools/esp_app_trace/test/sysview/expected_output_mcore create mode 100644 tools/esp_app_trace/test/sysview/expected_output_mcore.json create mode 100644 tools/esp_app_trace/test/sysview/heap_log_mcore.svdat create mode 100644 tools/esp_app_trace/test/sysview/sysview_tracing_heap_log.elf diff --git a/tools/ci/executable-list.txt b/tools/ci/executable-list.txt index c0ca2c4ba0..94830a12dd 100644 --- a/tools/ci/executable-list.txt +++ b/tools/ci/executable-list.txt @@ -63,7 +63,6 @@ tools/docker/hooks/build tools/esp_app_trace/logtrace_proc.py tools/esp_app_trace/sysviewtrace_proc.py tools/esp_app_trace/test/logtrace/test.sh -tools/esp_app_trace/test/sysview/compare_json.py tools/esp_app_trace/test/sysview/test.sh tools/find_apps.py tools/format.sh diff --git a/tools/esp_app_trace/espytrace/apptrace.py b/tools/esp_app_trace/espytrace/apptrace.py index 1aa6f2dd2b..ef90e28479 100644 --- a/tools/esp_app_trace/espytrace/apptrace.py +++ b/tools/esp_app_trace/espytrace/apptrace.py @@ -1,3 +1,4 @@ +from __future__ import print_function import sys import os try: @@ -593,7 +594,7 @@ class BaseLogTraceDataProcessorImpl: msg = event.get_message(self.felf) self.messages.append(msg) if self.print_log_events: - print(msg), + print(msg, end='') class HeapTraceParseError(ParseError): diff --git a/tools/esp_app_trace/espytrace/sysview.py b/tools/esp_app_trace/espytrace/sysview.py index 00ffba52ff..4378dc818c 100644 --- a/tools/esp_app_trace/espytrace/sysview.py +++ b/tools/esp_app_trace/espytrace/sysview.py @@ -90,7 +90,7 @@ def parse_trace(reader, parser, os_evt_map_file=''): global _os_events_map # parse OS events formats file _os_events_map = _read_events_map(os_evt_map_file) - _read_file_header(reader) + parser.esp_ext = ('; ESP_Extension\n' in _read_file_header(reader)) _read_init_seq(reader) while True: event = parser.read_event(reader, _os_events_map) @@ -305,7 +305,7 @@ class SysViewEvent(apptrace.TraceEvent): """ Generic SystemView event class. This is a base class for all events. """ - def __init__(self, evt_id, reader, core_id, events_fmt_map=None): + def __init__(self, evt_id, core_id, reader, events_fmt_map=None): """ Constructor. Reads and optionally decodes event. @@ -516,11 +516,11 @@ class SysViewPredefinedEvent(SysViewEvent): SYSVIEW_EVTID_NUMMODULES: ('svNumModules', [SysViewEventParamSimple('mod_cnt', _decode_u32)]), } - def __init__(self, evt_id, reader, core_id): + def __init__(self, evt_id, core_id, reader): """ see SysViewEvent.__init__() """ - SysViewEvent.__init__(self, evt_id, reader, core_id, self._predef_events_fmt) + SysViewEvent.__init__(self, evt_id, core_id, reader, self._predef_events_fmt) # self.name = 'SysViewPredefinedEvent' @@ -528,11 +528,11 @@ class SysViewOSEvent(SysViewEvent): """ OS related SystemView events class. """ - def __init__(self, evt_id, reader, core_id, events_fmt_map): + def __init__(self, evt_id, core_id, reader, events_fmt_map): """ see SysViewEvent.__init__() """ - SysViewEvent.__init__(self, evt_id, reader, core_id, events_fmt_map) + SysViewEvent.__init__(self, evt_id, core_id, reader, events_fmt_map) # self.name = 'SysViewOSEvent' @@ -553,7 +553,7 @@ class SysViewHeapEvent(SysViewEvent): SysViewEventParamArray('callers', _decode_u32)]), } - def __init__(self, evt_id, events_off, reader, core_id): + def __init__(self, evt_id, core_id, events_off, reader): """ Constructor. Reads and optionally decodes event. @@ -571,7 +571,7 @@ class SysViewHeapEvent(SysViewEvent): cur_events_map = {} for id in self.events_fmt: cur_events_map[events_off + id] = self.events_fmt[id] - SysViewEvent.__init__(self, evt_id, reader, core_id, cur_events_map) + SysViewEvent.__init__(self, evt_id, core_id, reader, cur_events_map) # self.name = 'SysViewHeapEvent' @@ -609,6 +609,7 @@ class SysViewTraceDataParser(apptrace.TraceDataProcessor): self.irqs_info = {} self.tasks_info = {} self.core_id = core_id + self.esp_ext = False def _parse_irq_desc(self, desc): """ @@ -646,7 +647,7 @@ class SysViewTraceDataParser(apptrace.TraceDataProcessor): self._last_ts += ts return float(self._last_ts) / self.sys_info.params['sys_freq'].value - def read_extension_event(self, evt_id, reader): + def read_extension_event(self, evt_id, core_id, reader): """ Reads extension event. Default implementation which just reads out event. @@ -667,9 +668,18 @@ class SysViewTraceDataParser(apptrace.TraceDataProcessor): """ if self.root_proc == self: # by default just read out and skip unknown event - return SysViewEvent(evt_id, reader, self.core_id) + return SysViewEvent(evt_id, core_id, reader) return None # let decide to root parser + @staticmethod + def _decode_core_id(high_b): + if high_b & (1 << 6): + core_id = 1 + high_b &= ~(1 << 6) + else: + core_id = 0 + return high_b,core_id + def read_event(self, reader, os_evt_map): """ Reads pre-defined or OS-related event. @@ -692,17 +702,26 @@ class SysViewTraceDataParser(apptrace.TraceDataProcessor): if evt_hdr & 0x80: # evt_id (2 bytes) b, = struct.unpack('= SYSVIEW_MODULE_EVENT_OFFSET and evt_id >= self.events_off and evt_id < self.events_off + self.events_num): - return SysViewHeapEvent(evt_id, self.events_off, reader, self.core_id) - return SysViewTraceDataParser.read_extension_event(self, evt_id, reader) + return SysViewHeapEvent(evt_id, core_id, self.events_off, reader) + return SysViewTraceDataParser.read_extension_event(self, evt_id, core_id, reader) def on_new_event(self, event): """ diff --git a/tools/esp_app_trace/test/sysview/compare_json.py b/tools/esp_app_trace/test/sysview/compare_json.py deleted file mode 100755 index e53cb4a71c..0000000000 --- a/tools/esp_app_trace/test/sysview/compare_json.py +++ /dev/null @@ -1,16 +0,0 @@ -#!/usr/bin/env python - -import json -import sys - -if len(sys.argv) < 3: - sys.exit(-1) - -objs = [] -for i in range(1, len(sys.argv)): - f = open(sys.argv[i]) - objs.append(json.load(f)) - -for i in range(1, len(objs)): - if objs[i - 1] != objs[i]: - sys.exit(-1) diff --git a/tools/esp_app_trace/test/sysview/expected_output_mcore b/tools/esp_app_trace/test/sysview/expected_output_mcore new file mode 100644 index 0000000000..cacefccfc5 --- /dev/null +++ b/tools/esp_app_trace/test/sysview/expected_output_mcore @@ -0,0 +1,28964 @@ +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 +=============== LOG TRACE REPORT =============== +Processed 600 log messages. +=============== HEAP TRACE REPORT =============== +Processed 612 heap events. +[0.003721700] HEAP: Allocated 8 bytes @ 0x3ffb7f34 from task "main" on core 0 by: +/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:85 +/home/alexey/projects/esp/esp-idf/components/esp32/cpu_start.c:570 +/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 + +[0.003768500] HEAP: Allocated 2500 bytes @ 0x3ffb888c from task "main" on core 0 by: +/home/alexey/projects/esp/esp-idf/components/freertos/tasks.c:804 +/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:84 (discriminator 2) +/home/alexey/projects/esp/esp-idf/components/esp32/cpu_start.c:570 +/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 + +[0.003795700] HEAP: Allocated 356 bytes @ 0x3ffb7f40 from task "main" on core 0 by: +/home/alexey/projects/esp/esp-idf/components/freertos/tasks.c:809 +/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:84 (discriminator 2) +/home/alexey/projects/esp/esp-idf/components/esp32/cpu_start.c:570 +/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 + +[0.003924500] HEAP: Allocated 120 bytes @ 0x3ffb80a8 from task "alloc0" on core 0 by: +/home/alexey/projects/esp/esp-idf/components/freertos/queue.c:391 +/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:46 +/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 + +[0.003976350] HEAP: Allocated 2500 bytes @ 0x3ffb9254 from task "alloc0" on core 0 by: +/home/alexey/projects/esp/esp-idf/components/freertos/tasks.c:804 +/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:55 +/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 + +[0.003999725] HEAP: Allocated 356 bytes @ 0x3ffb8124 from task "alloc0" on core 0 by: +/home/alexey/projects/esp/esp-idf/components/freertos/tasks.c:809 +/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:55 +/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 + +[0.004439700] HEAP: Allocated 8 bytes @ 0x3ffb8294 from task "main" on core 0 by: +/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:85 +/home/alexey/projects/esp/esp-idf/components/esp32/cpu_start.c:570 +/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 + +[0.004471100] HEAP: Allocated 2500 bytes @ 0x3ffb9c1c from task "main" on core 0 by: +/home/alexey/projects/esp/esp-idf/components/freertos/tasks.c:804 +/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:84 (discriminator 2) +/home/alexey/projects/esp/esp-idf/components/esp32/cpu_start.c:570 +/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 + +[0.004498675] HEAP: Allocated 356 bytes @ 0x3ffb82a0 from task "main" on core 0 by: +/home/alexey/projects/esp/esp-idf/components/freertos/tasks.c:809 +/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:84 (discriminator 2) +/home/alexey/projects/esp/esp-idf/components/esp32/cpu_start.c:570 +/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 + +[0.004654925] HEAP: Allocated 120 bytes @ 0x3ffb8408 from task "alloc1" on core 0 by: +/home/alexey/projects/esp/esp-idf/components/freertos/queue.c:391 +/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:46 +/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 + +[0.004694775] HEAP: Allocated 2500 bytes @ 0x3ffba5e4 from task "alloc1" on core 0 by: +/home/alexey/projects/esp/esp-idf/components/freertos/tasks.c:804 +/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:55 +/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 + +[0.004718150] HEAP: Allocated 356 bytes @ 0x3ffb8484 from task "alloc1" on core 0 by: +/home/alexey/projects/esp/esp-idf/components/freertos/tasks.c:809 +/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:55 +/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 + +[0.005138950] HEAP: Allocated 8 bytes @ 0x3ffb85f4 from task "main" on core 0 by: +/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:85 +/home/alexey/projects/esp/esp-idf/components/esp32/cpu_start.c:570 +/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 + +[0.005171025] HEAP: Allocated 2500 bytes @ 0x3ffbafac from task "main" on core 0 by: +/home/alexey/projects/esp/esp-idf/components/freertos/tasks.c:804 +/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:84 (discriminator 2) +/home/alexey/projects/esp/esp-idf/components/esp32/cpu_start.c:570 +/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 + +[0.005205975] HEAP: Allocated 356 bytes @ 0x3ffb8600 from task "main" on core 0 by: +/home/alexey/projects/esp/esp-idf/components/freertos/tasks.c:809 +/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:84 (discriminator 2) +/home/alexey/projects/esp/esp-idf/components/esp32/cpu_start.c:570 +/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 + +[0.005369825] HEAP: Allocated 120 bytes @ 0x3ffb8768 from task "alloc2" on core 0 by: +/home/alexey/projects/esp/esp-idf/components/freertos/queue.c:391 +/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:46 +/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 + +[0.005413350] HEAP: Allocated 2500 bytes @ 0x3ffbb974 from task "alloc2" on core 0 by: +/home/alexey/projects/esp/esp-idf/components/freertos/tasks.c:804 +/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:55 +/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 + +[0.005437250] HEAP: Allocated 356 bytes @ 0x3ffb49a8 from task "alloc2" on core 0 by: +/home/alexey/projects/esp/esp-idf/components/freertos/tasks.c:809 +/home/alexey/projects/esp/esp-idf/examples/system/sysview_tracing_heap_log/build/../main/sysview_heap_log.c:55 +/home/alexey/projects/esp/esp-idf/components/freertos/port.c:145 + +Found 17520 leaked bytes in 18 blocks. diff --git a/tools/esp_app_trace/test/sysview/expected_output_mcore.json b/tools/esp_app_trace/test/sysview/expected_output_mcore.json new file mode 100644 index 0000000000..3ff47cbc9b --- /dev/null +++ b/tools/esp_app_trace/test/sysview/expected_output_mcore.json @@ -0,0 +1,243449 @@ +{ + "events": [ + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 10, + "in_irq": false, + "params": {}, + "ts": 0 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 24, + "in_irq": false, + "params": { + "cpu_freq": 160000000, + "id_shift": 0, + "ram_base": 1061158912, + "sys_freq": 40000000 + }, + "ts": 6.4e-06 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "N=FreeRTOS Application,D=esp32,C=Xtensa,O=FreeRTOS" + }, + "ts": 1.9525e-05 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#5=SysTick" + }, + "ts": 7.0625e-05 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#6=WIFI_MAC" + }, + "ts": 0.0001596 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#7=WIFI_NMI" + }, + "ts": 0.00018495 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#8=WIFI_BB" + }, + "ts": 0.00020605 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#9=BT_MAC" + }, + "ts": 0.00022295 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#10=BT_BB" + }, + "ts": 0.0002619 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#11=BT_BB_NMI" + }, + "ts": 0.000285625 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#12=RWBT" + }, + "ts": 0.000304525 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#13=RWBLE" + }, + "ts": 0.000323425 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#14=RWBT_NMI" + }, + "ts": 0.00034695 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#15=RWBLE_NMI" + }, + "ts": 0.000366875 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#16=SLC0" + }, + "ts": 0.000392525 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#17=SLC1" + }, + "ts": 0.000415325 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#18=UHCI0" + }, + "ts": 0.000434225 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#19=UHCI1" + }, + "ts": 0.000453175 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#20=TG0_T0_LEVEL" + }, + "ts": 0.0004776 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#21=TG0_T1_LEVEL" + }, + "ts": 0.000498075 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#22=TG0_WDT_LEVEL" + }, + "ts": 0.000522825 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#23=TG0_LACT_LEVEL" + }, + "ts": 0.000543775 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#24=TG1_T0_LEVEL" + }, + "ts": 0.000572225 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#25=TG1_T1_LEVEL" + }, + "ts": 0.000592675 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#26=TG1_WDT_LEVEL" + }, + "ts": 0.0006173 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#27=TG1_LACT_LEVEL" + }, + "ts": 0.00063835 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#28=GPIO" + }, + "ts": 0.00065715 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#29=GPIO_NMI" + }, + "ts": 0.00068365 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#30=FROM_CPU0" + }, + "ts": 0.000703575 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#31=FROM_CPU1" + }, + "ts": 0.00072345 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#32=FROM_CPU2" + }, + "ts": 0.000752275 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#33=FROM_CPU3" + }, + "ts": 0.000773675 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#34=SPI0" + }, + "ts": 0.00079375 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#35=SPI1" + }, + "ts": 0.000817875 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#36=SPI2" + }, + "ts": 0.000838025 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#37=SPI3" + }, + "ts": 0.000858375 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#38=I2S0" + }, + "ts": 0.00087835 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#39=I2S1" + }, + "ts": 0.0009024 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#40=UART0" + }, + "ts": 0.000926725 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#41=UART1" + }, + "ts": 0.00094725 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#42=UART2" + }, + "ts": 0.000967725 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#43=SDIO_HOST" + }, + "ts": 0.000992875 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#44=ETH_MAC" + }, + "ts": 0.001013975 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#45=PWM0" + }, + "ts": 0.001036925 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#46=PWM1" + }, + "ts": 0.001060925 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#47=PWM2" + }, + "ts": 0.001080775 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#48=PWM3" + }, + "ts": 0.001104725 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#49=LEDC" + }, + "ts": 0.001124475 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#50=EFUSE" + }, + "ts": 0.0011488 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#51=CAN" + }, + "ts": 0.0011686 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#52=RTC_CORE" + }, + "ts": 0.00119395 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#53=RMT" + }, + "ts": 0.001213875 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#54=PCNT" + }, + "ts": 0.001233625 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#55=I2C_EXT0" + }, + "ts": 0.001258875 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#56=I2C_EXT1" + }, + "ts": 0.00128415 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#57=RSA" + }, + "ts": 0.001303975 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#58=SPI1_DMA" + }, + "ts": 0.001325125 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#59=SPI2_DMA" + }, + "ts": 0.001349925 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#60=SPI3_DMA" + }, + "ts": 0.001370875 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#61=WDT" + }, + "ts": 0.001390975 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#62=TIMER1" + }, + "ts": 0.001418825 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#63=TIMER2" + }, + "ts": 0.0014391 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#64=TG0_T0_EDGE" + }, + "ts": 0.001468925 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#65=TG0_T1_EDGE" + }, + "ts": 0.00149465 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#66=TG0_WDT_EDGE" + }, + "ts": 0.0015168 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#67=TG0_LACT_EDGE" + }, + "ts": 0.0015433 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#68=TG1_T0_EDGE" + }, + "ts": 0.00156515 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#69=TG1_T1_EDGE" + }, + "ts": 0.001587425 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#70=TG1_WDT_EDGE" + }, + "ts": 0.0016136 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#71=TG1_LACT_EDGE" + }, + "ts": 0.0016359 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#72=MMU_IA" + }, + "ts": 0.0016643 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#73=MPU_IA" + }, + "ts": 0.0016849 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#74=CACHE_IA" + }, + "ts": 0.001706 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 13, + "in_irq": false, + "params": { + "time": 8000 + }, + "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 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 9, + "in_irq": false, + "params": { + "name": "ipc0", + "prio": 24, + "tid": 12254676 + }, + "ts": 0.002044675 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 21, + "in_irq": false, + "params": { + "base": 1073428420, + "sz": 1356, + "tid": 12254676, + "unused": 0 + }, + "ts": 0.002049675 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 9, + "in_irq": false, + "params": { + "name": "ipc1", + "prio": 24, + "tid": 12273696 + }, + "ts": 0.00214765 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 21, + "in_irq": false, + "params": { + "base": 1073430556, + "sz": 1380, + "tid": 12273696, + "unused": 0 + }, + "ts": 0.0021529 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 9, + "in_irq": false, + "params": { + "name": "main", + "prio": 1, + "tid": 12280900 + }, + "ts": 0.0023185 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 21, + "in_irq": false, + "params": { + "base": 1073435712, + "sz": 2416, + "tid": 12280900, + "unused": 0 + }, + "ts": 0.002323775 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 9, + "in_irq": false, + "params": { + "name": "IDLE0", + "prio": 0, + "tid": 12282800 + }, + "ts": 0.00241285 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 21, + "in_irq": false, + "params": { + "base": 1073440172, + "sz": 1236, + "tid": 12282800, + "unused": 0 + }, + "ts": 0.00241815 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 9, + "in_irq": false, + "params": { + "name": "IDLE1", + "prio": 0, + "tid": 12284700 + }, + "ts": 0.002497925 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 21, + "in_irq": false, + "params": { + "base": 1073442072, + "sz": 1096, + "tid": 12284700, + "unused": 0 + }, + "ts": 0.002503025 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 9, + "in_irq": false, + "params": { + "name": "Tmr Svc", + "prio": 1, + "tid": 12287356 + }, + "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 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 27, + "in_irq": false, + "params": { + "mod_cnt": 0 + }, + "ts": 0.002613425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.002620975 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.002629525 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.002637475 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 3, + "in_irq": false, + "params": {}, + "ts": 0.002646175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0026544 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "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 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "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 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.00279805 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "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 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 4, + "in_irq": false, + "params": { + "tid": 12280900 + }, + "ts": 0.003653075 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 22, + "in_irq": false, + "params": { + "desc": "ESP32 SystemView Heap Tracing Module", + "evt_off": 512, + "mod_id": 0 + }, + "ts": 0.0036776 + }, + { + "addr": "0x3ffb7f34", + "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.0037217 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.003748425 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.003760275 + }, + { + "addr": "0x3ffb888c", + "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.0037685 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.003776475 + }, + { + "addr": "0x3ffb7f40", + "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.0037957 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 8, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 0.00382695 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 9, + "in_irq": false, + "params": { + "name": "alloc0", + "prio": 5, + "tid": 12287808 + }, + "ts": 0.003837225 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 21, + "in_irq": false, + "params": { + "base": 1073449100, + "sz": 2196, + "tid": 12287808, + "unused": 0 + }, + "ts": 0.003843775 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 6, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 0.003854875 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.0038683 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.003877025 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 0.0038918 + }, + { + "addr": "0x3ffb80a8", + "callers": [ + "0x4008a2a6", + "0x400d3a80", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 120, + "ts": 0.0039245 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 47, + "in_irq": false, + "params": { + "ucQueueType": 0, + "uxItemSize": 4, + "uxQueueLength": 10 + }, + "ts": 0.00393515 + }, + { + "addr": "0x3ffb9254", + "callers": [ + "0x4008b4df", + "0x400d3abd", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 2500, + "ts": 0.00397635 + }, + { + "addr": "0x3ffb8124", + "callers": [ + "0x4008b4ed", + "0x400d3abd", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 356, + "ts": 0.003999725 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 8, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 0.0040305 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 9, + "in_irq": false, + "params": { + "name": "free0", + "prio": 5, + "tid": 12288292 + }, + "ts": 0.004041175 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 21, + "in_irq": false, + "params": { + "base": 1073451604, + "sz": 2204, + "tid": 12288292, + "unused": 0 + }, + "ts": 0.0040477 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 0.00405585 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.00406915 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.00407865 + }, + { + "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": 2, + "ts": 0.004092075 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 0.004101075 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 0.00411065 + }, + { + "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", + "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 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 0.004303075 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 0.0043131 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.0043261 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "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 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 0.00436355 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.004371925 + }, + { + "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 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 4, + "in_irq": false, + "params": { + "tid": 12280900 + }, + "ts": 0.004405225 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 0.00441405 + }, + { + "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", + "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.0044397 + }, + { + "addr": "0x3ffb9c1c", + "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.0044711 + }, + { + "addr": "0x3ffb82a0", + "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.004498675 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 8, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 0.004529925 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 9, + "in_irq": false, + "params": { + "name": "alloc1", + "prio": 5, + "tid": 12288672 + }, + "ts": 0.004540825 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 21, + "in_irq": false, + "params": { + "base": 1073454108, + "sz": 2196, + "tid": 12288672, + "unused": 0 + }, + "ts": 0.004547375 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 0.004555525 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.004568975 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.00457775 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 0.004592525 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.00461795 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0046294 + }, + { + "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", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 124, + "ts": 0.90467695 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 0.904689625 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 0.9047037 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9047475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1231) example: Task[0x3ffb82a0]: allocated 124 bytes @ 0x3ffb87e4\n", + "ts": 0.904769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1231) example: Task[0x3ffb82a0]: allocated 124 bytes @ 0x3ffb87e4\n", + "ts": 0.904769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.904781275 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 0.904789775 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.90480015 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 0.904810925 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.90482395 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.904832475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.90484045 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 0.904849025 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 0.904861675 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.90487005 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 0.9048783 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.904887175 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 0.90489655 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.904905725 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 0.90492055 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1231) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", + "ts": 0.9049698 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1231) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", + "ts": 0.9049698 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.9049854 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 0.905007025 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.905019725 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.905028525 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9050441 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.90561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 0.905629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9056388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 0.905652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 186, + "ts": 0.905676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 0.905689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 0.905703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9057475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1232) example: Task[0x3ffb8600]: allocated 186 bytes @ 0x3ffb4b10\n", + "ts": 0.90576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1232) example: Task[0x3ffb8600]: allocated 186 bytes @ 0x3ffb4b10\n", + "ts": 0.90576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9057782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 0.9057867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.905797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 0.90580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.905820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.9058294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.905837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 0.90584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 0.9058586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.905866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 0.905879175 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.905887225 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 0.905895675 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.905905775 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 0.905920725 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1232) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 0.905970075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1232) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 0.905970075 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.90598545 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 0.906003575 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.9060164 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.90602515 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9060406 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.90661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.90662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.906643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9067475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.906756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9067706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.90761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9076295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.907643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9077475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.907757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.907770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.90861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9086295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.908643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9087475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.908756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9087706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.90961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9096295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.90964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9097475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.909756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9097706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.91061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9106326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.910646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9107475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.910756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9107706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.91161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9116295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.911643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9117475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.911757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.911770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.91261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9126295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.912643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9127475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.912756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9127706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.91361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9136295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.91364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9137475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.913756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9137706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.91461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.91462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.914643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9147475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.914756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9147706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.91561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9156295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.915643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9157475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.915757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.915770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.91661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9166295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.916643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9167475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.916756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9167706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.91761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9176295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.91764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9177475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.917756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9177706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.91861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.91862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.918643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9187475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.918756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9187706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.91961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9196295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.919643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9197475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.919757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.919770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.92061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9206295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.920643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9207475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.920756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9207706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.92161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9216295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.92164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9217475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.921756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9217706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.92261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.922631925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.92264555 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9227475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.922756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9227706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.92361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9236295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.923643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9237475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.923757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.923770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.92461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9246295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.924643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9247475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.924756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9247706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.92561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9256295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.92564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9257475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.925756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9257706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.92661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.92662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.926643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9267475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.926756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9267706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.92761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9276295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.927643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9277475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.927757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.927770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.92861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9286295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.928643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9287475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.928756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9287706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.92961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9296295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.92964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9297475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.929756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9297706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.93061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.93062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.930643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9307475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.930756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9307706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.93161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9316295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.931643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9317475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.931757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.931770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.93261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9326295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.932643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9327475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.932756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9327706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.93361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 0.933629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.933638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 0.933652975 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 64, + "ts": 0.93367695 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 0.933692725 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 0.9337068 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9337475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1260) example: Task[0x3ffb7f40]: allocated 64 bytes @ 0x3ffb87e4\n", + "ts": 0.93376895 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1260) example: Task[0x3ffb7f40]: allocated 64 bytes @ 0x3ffb87e4\n", + "ts": 0.93376895 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.933777425 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 0.933785425 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.933796175 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 0.933807025 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.933819975 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.9338287 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9338366 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 0.93384515 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 0.93385785 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.93386625 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 0.93387455 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.933883275 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 0.933892725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.933901925 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 0.93391675 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1260) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 0.933966075 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1260) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 0.933966075 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.9339845 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 0.93400305 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.93401575 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.93402455 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.934040125 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.93461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 0.934629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9346388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 0.934652975 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 128, + "ts": 0.934677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 0.9346897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 0.9347037 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9347475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1261) example: Task[0x3ffb82a0]: allocated 128 bytes @ 0x3ffb87e4\n", + "ts": 0.934769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1261) example: Task[0x3ffb82a0]: allocated 128 bytes @ 0x3ffb87e4\n", + "ts": 0.934769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.93478125 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 0.93478975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.934800125 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 0.934810925 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.934823925 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.934832475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.934840425 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 0.934849 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 0.93486165 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.93487005 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 0.93487835 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.934887225 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 0.934896625 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9349058 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 0.934920625 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1261) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", + "ts": 0.934969875 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1261) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", + "ts": 0.934969875 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.934985475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 0.9350064 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.9350191 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9350279 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.935043475 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.93561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 0.935629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9356388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 0.935652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 192, + "ts": 0.935676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 0.935689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 0.935703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9357475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1262) example: Task[0x3ffb8600]: allocated 192 bytes @ 0x3ffb4b10\n", + "ts": 0.93576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1262) example: Task[0x3ffb8600]: allocated 192 bytes @ 0x3ffb4b10\n", + "ts": 0.93576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9357782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 0.9357867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.935797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 0.93580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.935820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.9358294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.935837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 0.93584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 0.9358586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.935866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 0.9358792 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.935887225 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 0.935895675 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9359058 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 0.935920725 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1262) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 0.935970075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1262) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 0.935970075 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.93598545 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 0.936003575 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.9360164 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.936025175 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.936040625 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.93661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.93662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.936643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9367475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.936756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9367706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.93761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9376295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.937643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9377475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.937757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.937770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.93861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9386295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.938643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9387475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.938756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9387706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.93961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9396295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.93964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9397475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.939756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9397706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.94061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.940631925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.94064555 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9407475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.940756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9407706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.94161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9416295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.941643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9417475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.941757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.941770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.94261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9426295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.942643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9427475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.942756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9427706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.94361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9436295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.94364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9437475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.943756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9437706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.94461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.94462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.944643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9447475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.944756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9447706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.94561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9456295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.945643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9457475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.945757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.945770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.94661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9466295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.946643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9467475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.946756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9467706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.94761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9476295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.94764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9477475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.947756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9477706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.94861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.94862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.948643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9487475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.948756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9487706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.94961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9496295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.949643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9497475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.949757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.949770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.95061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9506295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.950643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9507475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.950756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9507706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.95161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9516295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.95164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9517475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.951756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9517706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.95261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9526326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.952646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9527475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.952756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9527706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.95361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9536295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.953643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9537475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.953757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.953770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.95461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9546295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.954643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9547475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.954756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9547706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.95561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9556295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.95564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9557475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.955756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9557706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.95661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.95662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.956643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9567475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.956756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9567706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.95761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9576295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.957643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9577475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.957757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.957770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.95861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9586295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.958643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9587475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.958756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9587706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.95961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9596295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.95964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9597475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.959756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9597706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.96061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.96062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.960643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9607475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.960756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9607706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.96161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9616295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.961643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9617475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.961757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.961770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.96261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9626295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.962643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9627475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.962756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9627706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.96361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 0.963629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.963638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 0.963652975 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 66, + "ts": 0.96367695 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 0.96369205 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 0.963706125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9637475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1290) example: Task[0x3ffb7f40]: allocated 66 bytes @ 0x3ffb87e4\n", + "ts": 0.963768225 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1290) example: Task[0x3ffb7f40]: allocated 66 bytes @ 0x3ffb87e4\n", + "ts": 0.963768225 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.963776475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 0.9637847 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9637953 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 0.963806175 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.963819125 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.963827825 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.963835725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 0.963844275 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 0.963857 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.963865375 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 0.963873675 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.963882425 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 0.963891875 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.963901075 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 0.9639159 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1290) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 0.9639652 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1290) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 0.9639652 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.963983625 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 0.9640022 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.964014875 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.964023675 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.96403925 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.96461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 0.964629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9646388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 0.964652975 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 132, + "ts": 0.964676825 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 0.964689525 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 0.9647035 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9647475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1291) example: Task[0x3ffb82a0]: allocated 132 bytes @ 0x3ffb87e4\n", + "ts": 0.964769175 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1291) example: Task[0x3ffb82a0]: allocated 132 bytes @ 0x3ffb87e4\n", + "ts": 0.964769175 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.96477995 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 0.964788675 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9647988 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 0.964809575 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.9648226 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.964831125 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9648391 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 0.964847675 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 0.964860325 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.9648687 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 0.964877025 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9648859 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 0.964895275 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.964904475 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 0.9649193 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1291) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", + "ts": 0.96496855 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1291) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", + "ts": 0.96496855 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.96498415 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 0.9650052 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.965017875 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.965026675 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.96504225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.96561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 0.965629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9656388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 0.965652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 198, + "ts": 0.965676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 0.965689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 0.965703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9657475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1292) example: Task[0x3ffb8600]: allocated 198 bytes @ 0x3ffb4b10\n", + "ts": 0.96576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1292) example: Task[0x3ffb8600]: allocated 198 bytes @ 0x3ffb4b10\n", + "ts": 0.96576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9657782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 0.9657867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.965797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 0.96580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.965820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.9658294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.965837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 0.96584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 0.9658586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.965866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 0.96587925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.965887275 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 0.965895725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.965905825 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 0.96592075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1292) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 0.9659701 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1292) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 0.9659701 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.965985475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 0.9660036 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.966016425 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9660252 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.96604065 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.96661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.96662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.966643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9667475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.966756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9667706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.96761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9676295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.967643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9677475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.967757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.967770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.96861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9686295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.968643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9687475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.968756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9687706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.96961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9696295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.96964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9697475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.969756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9697706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.97061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9706326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.970646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9707475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.970756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9707706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.97161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9716295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.971643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9717475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.971757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.971770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.97261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9726295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.972643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9727475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.972756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9727706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.97361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9736295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.97364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9737475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.973756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9737706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.97461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.97462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.974643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9747475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.974756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9747706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.97561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9756295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.975643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9757475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.975757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.975770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.97661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9766295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.976643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9767475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.976756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9767706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.97761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9776295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.97764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9777475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.977756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9777706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.97861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.97862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.978643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9787475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.978756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9787706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.97961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9796295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.979643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9797475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.979757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.979770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.98061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9806295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.980643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9807475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.980756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9807706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.98161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9816295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.98164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9817475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.981756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9817706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.98261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.982631925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.98264555 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9827475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.982756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9827706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.98361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9836295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.983643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9837475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.983757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.983770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.98461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9846295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.984643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9847475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.984756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9847706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.98561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9856295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.98564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9857475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.985756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9857706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.98661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.98662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.986643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9867475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.986756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9867706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.98761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9876295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.987643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9877475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.987757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.987770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.98861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9886295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.988643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9887475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.988756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9887706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.98961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9896295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.98964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9897475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.989756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9897706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.99061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.99062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.990643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9907475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.990756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9907706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.99161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9916295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.991643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9917475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.991757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.991770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.99261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9926295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.992643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9927475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.992756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9927706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.99361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 0.993629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.993638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 0.993652975 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 68, + "ts": 0.99367695 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 0.993692725 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 0.9937068 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9937475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1320) example: Task[0x3ffb7f40]: allocated 68 bytes @ 0x3ffb87e4\n", + "ts": 0.99376895 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1320) example: Task[0x3ffb7f40]: allocated 68 bytes @ 0x3ffb87e4\n", + "ts": 0.99376895 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.993777425 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 0.993785425 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.993796175 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 0.993807025 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.993819975 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.9938287 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9938366 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 0.99384515 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 0.99385785 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.99386625 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 0.99387455 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.993883275 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 0.993892725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.993901925 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 0.99391675 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1320) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 0.993966075 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1320) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 0.993966075 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.9939845 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 0.99400305 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.99401575 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.99402455 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.994040125 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.99461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 0.994629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9946388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 0.994652975 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 136, + "ts": 0.99467625 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 0.99468895 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 0.994702925 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9947475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1321) example: Task[0x3ffb82a0]: allocated 136 bytes @ 0x3ffb87e4\n", + "ts": 0.994769625 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1321) example: Task[0x3ffb82a0]: allocated 136 bytes @ 0x3ffb87e4\n", + "ts": 0.994769625 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.994781075 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 0.9947897 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.99479985 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 0.99481065 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.99482365 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.9948322 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.99484015 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 0.994848725 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 0.994861375 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.994869775 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 0.994878075 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.99488695 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 0.99489635 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.994905525 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 0.99492035 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1321) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", + "ts": 0.9949696 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1321) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4\n", + "ts": 0.9949696 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.9949852 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 0.99500555 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.99501825 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.99502705 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.995042625 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.99561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 0.995629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9956388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 0.995652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 204, + "ts": 0.995676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 0.995689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 0.995703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9957475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1322) example: Task[0x3ffb8600]: allocated 204 bytes @ 0x3ffb4b10\n", + "ts": 0.99576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1322) example: Task[0x3ffb8600]: allocated 204 bytes @ 0x3ffb4b10\n", + "ts": 0.99576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9957782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 0.9957867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.995797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 0.99580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.995820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.9958294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.995837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 0.99584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 0.9958586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.995866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 0.9958792 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.995887225 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 0.995895675 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9959058 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 0.995920725 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1322) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 0.995970075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1322) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 0.995970075 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.99598545 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 0.996003575 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.9960164 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.996025175 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.996040625 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.99661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.99662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.996643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9967475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.996756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9967706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.99761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9976295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.997643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9977475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.997757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.997770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.99861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9986295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.998643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9987475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.998756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9987706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.99961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.9996295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.99964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.9997475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.999756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.9997706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.00061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.000631925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.00064555 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0007475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.000756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0007706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.00161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0016295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.001643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0017475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.001757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.001770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.00261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0026295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.002643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0027475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.002756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0027706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.00361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0036295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.00364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0037475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.003756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0037706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.00461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.00462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.004643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0047475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.004756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0047706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.00561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0056295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.005643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0057475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.005757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.005770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.00661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0066295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.006643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0067475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.006756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0067706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.00761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0076295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.00764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0077475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.007756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0077706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.00861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.00862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.008643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0087475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.008756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0087706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.00961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0096295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.009643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0097475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.009757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.009770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.01061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0106295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.010643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0107475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.010756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0107706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.01161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0116295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.01164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0117475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.011756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0117706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.01261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0126326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.012646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0127475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.012756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0127706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.01361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0136295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.013643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0137475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.013757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.013770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.01461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0146295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.014643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0147475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.014756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0147706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.01561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0156295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.01564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0157475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.015756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0157706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.01661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.01662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.016643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0167475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.016756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0167706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.01761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0176295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.017643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0177475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.017757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.017770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.01861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0186295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.018643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0187475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.018756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0187706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.01961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0196295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.01964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0197475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.019756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0197706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.02061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.02062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.020643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0207475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.020756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0207706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.02161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0216295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.021643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0217475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.021757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.021770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.02261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0226295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.022643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0227475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.022756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0227706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.02361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 1.023629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.023638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 1.023652975 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 70, + "ts": 1.02367695 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.02369205 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.023706125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0237475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1350) example: Task[0x3ffb7f40]: allocated 70 bytes @ 0x3ffb87e4\n", + "ts": 1.023768225 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1350) example: Task[0x3ffb7f40]: allocated 70 bytes @ 0x3ffb87e4\n", + "ts": 1.023768225 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.023776475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 1.0237847 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0237953 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.023806175 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.023819125 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.023827825 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.023835725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 1.023844275 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.023857 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.023865375 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 1.023873675 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.023882425 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.023891875 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.023901075 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.0239159 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1350) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.0239652 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1350) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.0239652 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.023983625 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 1.0240022 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.024014875 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.024023675 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.02403925 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.02461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 1.024629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0246388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 1.024652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 140, + "ts": 1.024677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.0246897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.024703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0247475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1351) example: Task[0x3ffb82a0]: allocated 140 bytes @ 0x3ffb4b10\n", + "ts": 1.024769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1351) example: Task[0x3ffb82a0]: allocated 140 bytes @ 0x3ffb4b10\n", + "ts": 1.024769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.02478005 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 1.02478905 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.02479895 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.024809725 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.02482275 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.024831275 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.02483925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 1.024847825 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.024860475 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.02486885 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 1.024877175 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.02488605 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.024895425 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.024904625 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.02491945 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1351) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.0249687 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1351) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.0249687 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.0249843 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 1.02500535 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.02501805 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.02502685 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.025042425 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.02561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 1.025629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0256388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 1.025652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 210, + "ts": 1.025676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.025689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.025703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0257475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1352) example: Task[0x3ffb8600]: allocated 210 bytes @ 0x3ffb4b10\n", + "ts": 1.02576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1352) example: Task[0x3ffb8600]: allocated 210 bytes @ 0x3ffb4b10\n", + "ts": 1.02576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0257782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 1.0257867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.025797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.02580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.025820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.0258294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.025837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 1.02584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.0258586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.025866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 1.02587925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.025887275 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.025895725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.025905825 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.02592075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1352) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.0259701 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1352) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.0259701 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.025985475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 1.0260036 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.026016425 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0260252 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.02604065 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.02661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.02662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.026643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0267475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.026756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0267706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.02761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0276295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.027643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0277475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.027757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.027770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.02861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0286295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.028643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0287475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.028756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0287706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.02961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0296295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.02964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0297475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.029756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0297706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.03061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0306326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.030646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0307475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.030756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0307706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.03161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0316295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.031643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0317475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.031757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.031770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.03261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0326295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.032643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0327475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.032756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0327706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.03361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0336295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.03364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0337475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.033756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0337706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.03461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.03462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.034643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0347475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.034756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0347706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.03561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0356295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.035643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0357475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.035757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.035770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.03661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0366295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.036643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0367475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.036756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0367706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.03761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0376295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.03764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0377475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.037756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0377706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.03861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.03862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.038643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0387475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.038756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0387706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.03961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0396295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.039643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0397475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.039757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.039770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.04061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0406295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.040643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0407475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.040756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0407706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.04161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0416295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.04164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0417475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.041756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0417706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.04261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.042631925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.04264555 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0427475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.042756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0427706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.04361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0436295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.043643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0437475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.043757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.043770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.04461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0446295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.044643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0447475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.044756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0447706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.04561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0456295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.04564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0457475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.045756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0457706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.04661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.04662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.046643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0467475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.046756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0467706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.04761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0476295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.047643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0477475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.047757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.047770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.04861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0486295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.048643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0487475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.048756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0487706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.04961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0496295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.04964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0497475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.049756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0497706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.05061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.05062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.050643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0507475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.050756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0507706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.05161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0516295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.051643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0517475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.051757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.051770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.05261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0526295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.052643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0527475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.052756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0527706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.05361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 1.053629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.053638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 1.053652975 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 72, + "ts": 1.05367695 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.053692725 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.0537068 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0537475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1380) example: Task[0x3ffb7f40]: allocated 72 bytes @ 0x3ffb87e4\n", + "ts": 1.05376895 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1380) example: Task[0x3ffb7f40]: allocated 72 bytes @ 0x3ffb87e4\n", + "ts": 1.05376895 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.053777425 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 1.053785425 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.053796175 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.053807025 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.053819975 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.0538287 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0538366 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 1.05384515 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.05385785 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.05386625 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 1.05387455 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.053883275 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.053892725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.053901925 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.05391675 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1380) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.053966075 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1380) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.053966075 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.0539845 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 1.05400305 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.05401575 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.05402455 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.054040125 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.05461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 1.054629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0546388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 1.054652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 144, + "ts": 1.054677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.0546897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.054703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0547475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1381) example: Task[0x3ffb82a0]: allocated 144 bytes @ 0x3ffb4b10\n", + "ts": 1.054769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1381) example: Task[0x3ffb82a0]: allocated 144 bytes @ 0x3ffb4b10\n", + "ts": 1.054769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.05478125 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 1.05478975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.054800125 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.0548109 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.054823925 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.05483245 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.054840425 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 1.054849 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.05486165 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.054870025 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 1.05487835 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.054887225 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.0548966 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0549058 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.054920625 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1381) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.054969875 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1381) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.054969875 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.054985475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 1.055005825 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.055018525 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.055027325 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0550429 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.05561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 1.055629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0556388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 1.055652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 216, + "ts": 1.055676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.055689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.055703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0557475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1382) example: Task[0x3ffb8600]: allocated 216 bytes @ 0x3ffb4b10\n", + "ts": 1.05576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1382) example: Task[0x3ffb8600]: allocated 216 bytes @ 0x3ffb4b10\n", + "ts": 1.05576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0557782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 1.0557867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.055797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.05580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.055820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.0558294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.055837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 1.05584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.0558586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.055866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 1.0558792 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.055887225 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.055895675 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0559058 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.055920725 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1382) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.055970075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1382) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.055970075 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.05598545 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 1.056003575 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.0560164 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.056025175 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.056040625 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.05661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.05662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.056643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0567475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.056756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0567706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.05761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0576295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.057643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0577475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.057757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.057770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.05861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0586295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.058643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0587475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.058756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0587706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.05961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0596295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.05964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0597475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.059756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0597706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.06061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.060631925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.06064555 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0607475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.060756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0607706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.06161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0616295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.061643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0617475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.061757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.061770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.06261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0626295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.062643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0627475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.062756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0627706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.06361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0636295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.06364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0637475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.063756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0637706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.06461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.06462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.064643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0647475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.064756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0647706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.06561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0656295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.065643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0657475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.065757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.065770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.06661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0666295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.066643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0667475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.066756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0667706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.06761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0676295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.06764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0677475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.067756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0677706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.06861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.06862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.068643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0687475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.068756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0687706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.06961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0696295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.069643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0697475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.069757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.069770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.07061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0706295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.070643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0707475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.070756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0707706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.07161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0716295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.07164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0717475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.071756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0717706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.07261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0726326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.072646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0727475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.072756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0727706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.07361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0736295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.073643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0737475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.073757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.073770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.07461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0746295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.074643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0747475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.074756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0747706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.07561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0756295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.07564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0757475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.075756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0757706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.07661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.07662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.076643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0767475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.076756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0767706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.07761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0776295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.077643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0777475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.077757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.077770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.07861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0786295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.078643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0787475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.078756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0787706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.07961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0796295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.07964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0797475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.079756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0797706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.08061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.08062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.080643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0807475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.080756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0807706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.08161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0816295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.081643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0817475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.081757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.081770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.08261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0826295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.082643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0827475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.082756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0827706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.08361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 1.083629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.083638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 1.083652975 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 74, + "ts": 1.08367695 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.08369205 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.083706125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0837475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1410) example: Task[0x3ffb7f40]: allocated 74 bytes @ 0x3ffb87e4\n", + "ts": 1.083768225 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1410) example: Task[0x3ffb7f40]: allocated 74 bytes @ 0x3ffb87e4\n", + "ts": 1.083768225 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.083776475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 1.0837847 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0837953 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.083806175 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.083819125 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.083827825 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.083835725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 1.083844275 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.083857 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.083865375 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 1.083873675 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.083882425 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.083891875 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.083901075 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.0839159 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1410) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.0839652 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1410) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.0839652 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.083983625 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 1.0840022 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.084014875 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.084023675 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.08403925 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.08461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 1.084629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0846388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 1.084652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 148, + "ts": 1.084677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.0846897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.084703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0847475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1411) example: Task[0x3ffb82a0]: allocated 148 bytes @ 0x3ffb4b10\n", + "ts": 1.084769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1411) example: Task[0x3ffb82a0]: allocated 148 bytes @ 0x3ffb4b10\n", + "ts": 1.084769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.08478005 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 1.08478905 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.08479895 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.084809725 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.08482275 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.084831275 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.08483925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 1.084847825 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.084860475 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.08486885 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 1.084877175 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.08488605 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.084895425 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.084904625 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.08491945 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1411) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.0849687 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1411) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.0849687 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.0849843 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 1.08500535 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.08501805 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.08502685 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.085042425 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.08561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 1.085629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0856388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 1.085652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 222, + "ts": 1.085676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.085689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.085703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0857475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1412) example: Task[0x3ffb8600]: allocated 222 bytes @ 0x3ffb4b10\n", + "ts": 1.08576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1412) example: Task[0x3ffb8600]: allocated 222 bytes @ 0x3ffb4b10\n", + "ts": 1.08576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0857782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 1.0857867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.085797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.08580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.085820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.0858294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.085837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 1.08584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.0858586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.085866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 1.08587925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.085887275 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.085895725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.085905825 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.08592075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1412) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.0859701 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1412) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.0859701 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.085985475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 1.0860036 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.086016425 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0860252 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.08604065 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.08661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.08662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.086643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0867475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.086756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0867706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.08761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0876295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.087643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0877475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.087757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.087770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.08861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0886295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.088643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0887475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.088756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0887706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.08961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0896295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.08964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0897475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.089756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0897706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.09061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0906326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.090646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0907475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.090756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0907706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.09161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0916295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.091643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0917475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.091757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.091770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.09261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0926295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.092643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0927475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.092756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0927706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.09361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0936295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.09364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0937475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.093756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0937706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.09461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.09462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.094643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0947475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.094756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0947706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.09561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0956295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.095643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0957475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.095757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.095770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.09661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0966295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.096643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0967475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.096756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0967706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.09761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0976295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.09764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0977475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.097756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0977706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.09861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.09862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.098643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0987475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.098756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.0987706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.09961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.0996295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.099643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.0997475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.099757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.099770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.10061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1006295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.100643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1007475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.100756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1007706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.10161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1016295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.10164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1017475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.101756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1017706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.10261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.102633975 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1026476 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1027475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.102756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1027706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.10361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1036295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.103643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1037475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.103757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.103770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.10461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1046295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.104643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1047475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.104756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1047706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.10561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1056295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.10564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1057475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.105756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1057706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.10661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.10662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.106643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1067475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.106756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1067706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.10761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1076295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.107643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1077475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.107757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.107770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.10861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1086295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.108643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1087475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.108756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1087706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.10961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1096295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.10964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1097475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.109756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1097706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.11061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.11062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.110643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1107475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.110756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1107706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.11161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1116295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.111643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1117475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.111757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.111770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.11261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1126295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.112643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1127475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.112756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1127706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.11361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 1.113629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.113638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 1.113652975 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 76, + "ts": 1.11367695 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.11369205 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.113706125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1137475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1440) example: Task[0x3ffb7f40]: allocated 76 bytes @ 0x3ffb87e4\n", + "ts": 1.113768225 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1440) example: Task[0x3ffb7f40]: allocated 76 bytes @ 0x3ffb87e4\n", + "ts": 1.113768225 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.113776475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 1.1137847 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1137953 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.113806175 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.113819125 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.113827825 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.113835725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 1.113844275 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.113857 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.113865375 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 1.113873675 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.113882425 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.113891875 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.113901075 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.1139159 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1440) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.1139652 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1440) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.1139652 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.113983625 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 1.1140022 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.114014875 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.114023675 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.11403925 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.11461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 1.114629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1146388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 1.114652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 152, + "ts": 1.114677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.1146897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.114703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1147475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1441) example: Task[0x3ffb82a0]: allocated 152 bytes @ 0x3ffb4b10\n", + "ts": 1.114769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1441) example: Task[0x3ffb82a0]: allocated 152 bytes @ 0x3ffb4b10\n", + "ts": 1.114769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.11478005 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 1.11478905 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.11479895 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.114809725 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.11482275 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.114831275 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.11483925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 1.114847825 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.114860475 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.11486885 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 1.114877175 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.11488605 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.114895425 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.114904625 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.11491945 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1441) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.1149687 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1441) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.1149687 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.1149843 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 1.11500535 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.11501805 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.11502685 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.115042425 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.11561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 1.115629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1156388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 1.115652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 228, + "ts": 1.115676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.115689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.115703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1157475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1442) example: Task[0x3ffb8600]: allocated 228 bytes @ 0x3ffb4b10\n", + "ts": 1.11576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1442) example: Task[0x3ffb8600]: allocated 228 bytes @ 0x3ffb4b10\n", + "ts": 1.11576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1157782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 1.1157867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.115797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.11580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.115820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.1158294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.115837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 1.11584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.1158586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.115866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 1.11587925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.115887275 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.115895725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.115905825 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.11592075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1442) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.1159701 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1442) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.1159701 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.115985475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 1.1160036 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.116016425 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1160252 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.11604065 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.11661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.11662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.116643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1167475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.116756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1167706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.11761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1176295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.117643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1177475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.117757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.117770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.11861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1186295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.118643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1187475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.118756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1187706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.11961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1196295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.11964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1197475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.119756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1197706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.12061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1206326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.120646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1207475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.120756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1207706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.12161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1216295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.121643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1217475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.121757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.121770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.12261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1226295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.122643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1227475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.122756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1227706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.12361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1236295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.12364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1237475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.123756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1237706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.12461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.12462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.124643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1247475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.124756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1247706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.12561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1256295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.125643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1257475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.125757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.125770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.12661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1266295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.126643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1267475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.126756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1267706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.12761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1276295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.12764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1277475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.127756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1277706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.12861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.12862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.128643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1287475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.128756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1287706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.12961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1296295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.129643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1297475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.129757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.129770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.13061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1306295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.130643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1307475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.130756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1307706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.13161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1316295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.13164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1317475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.131756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1317706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.13261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.132631925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.13264555 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1327475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.132756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1327706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.13361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1336295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.133643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1337475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.133757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.133770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.13461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1346295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.134643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1347475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.134756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1347706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.13561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1356295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.13564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1357475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.135756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1357706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.13661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.13662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.136643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1367475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.136756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1367706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.13761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1376295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.137643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1377475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.137757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.137770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.13861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1386295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.138643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1387475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.138756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1387706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.13961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1396295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.13964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1397475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.139756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1397706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.14061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.14062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.140643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1407475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.140756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1407706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.14161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1416295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.141643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1417475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.141757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.141770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.14261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1426295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.142643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1427475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.142756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1427706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.14361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 1.143629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.143638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 1.143652975 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 78, + "ts": 1.14367695 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.143692725 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.1437068 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1437475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1470) example: Task[0x3ffb7f40]: allocated 78 bytes @ 0x3ffb87e4\n", + "ts": 1.14376895 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1470) example: Task[0x3ffb7f40]: allocated 78 bytes @ 0x3ffb87e4\n", + "ts": 1.14376895 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.143777425 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 1.143785425 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.143796175 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.143807025 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.143819975 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.1438287 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1438366 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 1.14384515 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.14385785 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.14386625 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 1.14387455 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.143883275 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.143892725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.143901925 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.14391675 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1470) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.143966075 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1470) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.143966075 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.1439845 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 1.14400305 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.14401575 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.14402455 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.144040125 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.14461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 1.144629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1446388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 1.144652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 156, + "ts": 1.144677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.1446897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.144703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1447475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1471) example: Task[0x3ffb82a0]: allocated 156 bytes @ 0x3ffb4b10\n", + "ts": 1.144769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1471) example: Task[0x3ffb82a0]: allocated 156 bytes @ 0x3ffb4b10\n", + "ts": 1.144769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.14478125 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 1.14478975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.144800125 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.1448109 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.144823925 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.14483245 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.144840425 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 1.144849 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.14486165 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.144870025 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 1.14487835 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.144887225 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.1448966 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1449058 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.144920625 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1471) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.144969875 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1471) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.144969875 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.144985475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 1.145005825 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.145018525 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.145027325 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1450429 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.14561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 1.145629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1456388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 1.145652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 234, + "ts": 1.145676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.145689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.145703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1457475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1472) example: Task[0x3ffb8600]: allocated 234 bytes @ 0x3ffb4b10\n", + "ts": 1.14576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1472) example: Task[0x3ffb8600]: allocated 234 bytes @ 0x3ffb4b10\n", + "ts": 1.14576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1457782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 1.1457867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.145797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.14580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.145820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.1458294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.145837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 1.14584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.1458586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.145866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 1.1458792 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.145887225 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.145895675 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1459058 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.145920725 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1472) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.145970075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1472) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.145970075 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.14598545 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 1.146003575 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.1460164 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.146025175 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.146040625 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.14661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.14662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.146643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1467475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.146756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1467706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.14761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1476295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.147643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1477475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.147757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.147770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.14861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1486295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.148643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1487475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.148756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1487706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.14961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1496295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.14964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1497475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.149756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1497706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.15061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.150631925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.15064555 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1507475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.150756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1507706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.15161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1516295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.151643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1517475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.151757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.151770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.15261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1526295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.152643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1527475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.152756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1527706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.15361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1536295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.15364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1537475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.153756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1537706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.15461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.15462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.154643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1547475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.154756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1547706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.15561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1556295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.155643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1557475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.155757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.155770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.15661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1566295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.156643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1567475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.156756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1567706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.15761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1576295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.15764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1577475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.157756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1577706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.15861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.15862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.158643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1587475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.158756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1587706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.15961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1596295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.159643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1597475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.159757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.159770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.16061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1606295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.160643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1607475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.160756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1607706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.16161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1616295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.16164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1617475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.161756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1617706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.16261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1626326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.162646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1627475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.162756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1627706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.16361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1636295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.163643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1637475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.163757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.163770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.16461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1646295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.164643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1647475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.164756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1647706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.16561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1656295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.16564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1657475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.165756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1657706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.16661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.16662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.166643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1667475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.166756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1667706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.16761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1676295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.167643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1677475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.167757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.167770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.16861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1686295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.168643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1687475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.168756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1687706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.16961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1696295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.16964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1697475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.169756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1697706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.17061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.17062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.170643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1707475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.170756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1707706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.17161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1716295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.171643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1717475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.171757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.171770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.17261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1726295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.172643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1727475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.172756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1727706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.17361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 1.173629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.173638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 1.173652975 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 80, + "ts": 1.17367695 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.17369205 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.173706125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1737475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1500) example: Task[0x3ffb7f40]: allocated 80 bytes @ 0x3ffb87e4\n", + "ts": 1.173768225 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1500) example: Task[0x3ffb7f40]: allocated 80 bytes @ 0x3ffb87e4\n", + "ts": 1.173768225 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.173776475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 1.1737847 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1737953 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.173806175 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.173819125 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.173827825 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.173835725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 1.173844275 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.173857 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.173865375 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 1.173873675 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.173882425 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.173891875 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.173901075 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.1739159 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1500) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.1739652 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1500) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.1739652 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.173983625 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 1.1740022 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.174014875 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.174023675 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.17403925 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.17461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 1.174629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1746388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 1.174652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 160, + "ts": 1.174677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.1746897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.174703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1747475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1501) example: Task[0x3ffb82a0]: allocated 160 bytes @ 0x3ffb4b10\n", + "ts": 1.174769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1501) example: Task[0x3ffb82a0]: allocated 160 bytes @ 0x3ffb4b10\n", + "ts": 1.174769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.17478005 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 1.17478905 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.17479895 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.174809725 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.17482275 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.174831275 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.17483925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 1.174847825 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.174860475 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.17486885 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 1.174877175 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.17488605 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.174895425 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.174904625 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.17491945 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1501) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.1749687 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1501) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.1749687 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.1749843 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 1.17500535 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.17501805 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.17502685 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.175042425 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.17561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 1.175629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1756388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 1.175652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 240, + "ts": 1.175676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.175689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.175703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1757475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1502) example: Task[0x3ffb8600]: allocated 240 bytes @ 0x3ffb4b10\n", + "ts": 1.17576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1502) example: Task[0x3ffb8600]: allocated 240 bytes @ 0x3ffb4b10\n", + "ts": 1.17576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1757782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 1.1757867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.175797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.17580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.175820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.1758294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.175837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 1.17584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.1758586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.175866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 1.17587925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.175887275 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.175895725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.175905825 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.17592075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1502) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.1759701 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1502) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.1759701 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.175985475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 1.1760036 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.176016425 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1760252 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.17604065 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.17661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.17662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.176643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1767475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.176756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1767706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.17761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1776295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.177643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1777475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.177757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.177770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.17861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1786295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.178643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1787475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.178756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1787706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.17961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1796295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.17964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1797475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.179756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1797706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.18061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1806326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.180646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1807475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.180756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1807706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.18161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1816295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.181643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1817475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.181757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.181770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.18261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1826295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.182643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1827475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.182756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1827706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.18361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1836295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.18364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1837475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.183756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1837706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.18461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.18462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.184643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1847475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.184756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1847706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.18561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1856295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.185643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1857475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.185757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.185770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.18661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1866295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.186643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1867475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.186756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1867706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.18761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1876295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.18764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1877475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.187756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1877706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.18861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.18862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.188643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1887475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.188756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1887706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.18961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1896295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.189643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1897475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.189757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.189770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.19061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1906295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.190643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1907475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.190756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1907706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.19161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1916295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.19164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1917475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.191756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1917706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.19261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.192631925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.19264555 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1927475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.192756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1927706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.19361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1936295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.193643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1937475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.193757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.193770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.19461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1946295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.194643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1947475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.194756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1947706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.19561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1956295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.19564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1957475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.195756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1957706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.19661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.19662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.196643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1967475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.196756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1967706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.19761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1976295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.197643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1977475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.197757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.197770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.19861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1986295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.198643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1987475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.198756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1987706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.19961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.1996295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.19964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.1997475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.199756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.1997706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.20061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.20062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.200643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2007475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.200756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2007706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.20161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2016295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.201643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2017475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.201757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.201770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.20261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2026295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.202643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2027475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.202756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2027706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.20361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 1.203629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.203638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 1.203652975 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 82, + "ts": 1.20367695 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.203692725 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.2037068 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2037475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1530) example: Task[0x3ffb7f40]: allocated 82 bytes @ 0x3ffb87e4\n", + "ts": 1.20376895 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1530) example: Task[0x3ffb7f40]: allocated 82 bytes @ 0x3ffb87e4\n", + "ts": 1.20376895 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.203777425 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 1.203785425 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.203796175 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.203807025 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.203819975 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.2038287 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2038366 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 1.20384515 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.20385785 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.20386625 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 1.2038745 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.203883225 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.203892675 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.203901875 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.2039167 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1530) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.203966 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1530) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.203966 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.203984425 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 1.204003 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.204015675 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.204024475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.20404005 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.20461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 1.204629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2046388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 1.204652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 164, + "ts": 1.204677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.2046897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.204703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2047475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1531) example: Task[0x3ffb82a0]: allocated 164 bytes @ 0x3ffb4b10\n", + "ts": 1.204769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1531) example: Task[0x3ffb82a0]: allocated 164 bytes @ 0x3ffb4b10\n", + "ts": 1.204769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.20478125 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 1.20478975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.204800125 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.2048109 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.204823925 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.20483245 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.204840425 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 1.204849 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.20486165 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.204870025 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 1.204878275 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.20488715 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.204896525 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2049057 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.204920525 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1531) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.204969775 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1531) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.204969775 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.204985375 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 1.20500575 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.205018425 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.205027225 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2050428 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.20561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 1.205629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2056388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 1.205652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 246, + "ts": 1.205676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.205689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.205703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2057475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1532) example: Task[0x3ffb8600]: allocated 246 bytes @ 0x3ffb4b10\n", + "ts": 1.20576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1532) example: Task[0x3ffb8600]: allocated 246 bytes @ 0x3ffb4b10\n", + "ts": 1.20576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2057782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 1.2057867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.205797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.20580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.205820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.2058294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.205837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 1.20584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.2058586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.205866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 1.205879175 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2058872 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.20589565 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.20590575 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.205920675 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1532) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.205970025 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1532) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.205970025 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.2059854 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 1.206003525 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.20601635 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.206025125 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.206040575 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.20661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.20662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.206643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2067475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.206756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2067706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.20761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2076295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.207643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2077475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.207757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.207770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.20861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2086295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.208643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2087475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.208756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2087706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.20961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2096295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.20964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2097475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.209756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2097706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.21061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.210631925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.21064555 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2107475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.210756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2107706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.21161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2116295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.211643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2117475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.211757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.211770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.21261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2126295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.212643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2127475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.212756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2127706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.21361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2136295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.21364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2137475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.213756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2137706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.21461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.21462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.214643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2147475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.214756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2147706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.21561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2156295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.215643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2157475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.215757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.215770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.21661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2166295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.216643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2167475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.216756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2167706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.21761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2176295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.21764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2177475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.217756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2177706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.21861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.21862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.218643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2187475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.218756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2187706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.21961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2196295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.219643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2197475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.219757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.219770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.22061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2206295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.220643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2207475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.220756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2207706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.22161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2216295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.22164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2217475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.221756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2217706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.22261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2226326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.222646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2227475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.222756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2227706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.22361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2236295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.223643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2237475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.223757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.223770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.22461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2246295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.224643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2247475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.224756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2247706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.22561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2256295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.22564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2257475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.225756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2257706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.22661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.22662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.226643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2267475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.226756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2267706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.22761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2276295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.227643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2277475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.227757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.227770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.22861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2286295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.228643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2287475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.228756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2287706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.22961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2296295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.22964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2297475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.229756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2297706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.23061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.23062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.230643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2307475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.230756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2307706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.23161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2316295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.231643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2317475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.231757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.231770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.23261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2326295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.232643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2327475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.232756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2327706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.23361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 1.233629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.233638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 1.233652975 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 84, + "ts": 1.23367695 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.23369205 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.233706125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2337475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1560) example: Task[0x3ffb7f40]: allocated 84 bytes @ 0x3ffb87e4\n", + "ts": 1.233768225 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1560) example: Task[0x3ffb7f40]: allocated 84 bytes @ 0x3ffb87e4\n", + "ts": 1.233768225 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.233776475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 1.2337847 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2337953 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.233806175 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.233819125 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.233827825 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.233835725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 1.233844275 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.233857 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.233865375 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 1.233873675 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.233882425 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.233891875 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.233901075 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.2339159 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1560) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.2339652 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1560) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.2339652 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.233983625 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 1.2340022 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.234014875 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.234023675 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.23403925 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.23461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 1.234629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2346388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 1.234652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 168, + "ts": 1.234677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.2346897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.234703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2347475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1561) example: Task[0x3ffb82a0]: allocated 168 bytes @ 0x3ffb4b10\n", + "ts": 1.234769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1561) example: Task[0x3ffb82a0]: allocated 168 bytes @ 0x3ffb4b10\n", + "ts": 1.234769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.23478005 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 1.23478905 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.23479895 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.234809725 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.23482275 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.234831275 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.23483925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 1.234847825 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.234860475 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.23486885 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 1.234877175 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.23488605 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.234895425 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.234904625 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.23491945 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1561) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.2349687 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1561) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.2349687 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.2349843 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 1.23500535 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.23501805 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.23502685 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.235042425 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.23561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 1.235629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2356388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 1.235652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 252, + "ts": 1.235676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.235689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.235703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2357475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1562) example: Task[0x3ffb8600]: allocated 252 bytes @ 0x3ffb4b10\n", + "ts": 1.23576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1562) example: Task[0x3ffb8600]: allocated 252 bytes @ 0x3ffb4b10\n", + "ts": 1.23576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2357782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 1.2357867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.235797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.23580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.235820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.2358294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.235837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 1.23584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.2358586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.235866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 1.23587925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.235887275 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.235895725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.235905825 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.23592075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1562) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.2359701 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1562) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.2359701 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.235985475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 1.2360036 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.236016425 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2360252 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.23604065 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.23661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.23662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.236643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2367475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.236756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2367706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.23761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2376295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.237643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2377475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.237757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.237770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.23861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2386295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.238643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2387475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.238756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2387706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.23961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2396295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.23964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2397475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.239756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2397706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.24061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2406326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.240646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2407475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.240756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2407706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.24161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2416295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.241643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2417475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.241757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.241770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.24261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2426295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.242643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2427475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.242756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2427706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.24361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2436295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.24364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2437475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.243756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2437706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.24461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.24462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.244643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2447475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.244756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2447706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.24561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2456295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.245643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2457475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.245757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.245770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.24661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2466295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.246643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2467475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.246756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2467706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.24761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2476295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.24764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2477475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.247756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2477706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.24861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.24862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.248643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2487475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.248756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2487706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.24961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2496295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.249643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2497475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.249757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.249770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.25061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2506295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.250643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2507475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.250756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2507706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.25161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2516295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.25164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2517475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.251756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2517706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.25261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.252631925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.25264555 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2527475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.252756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2527706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.25361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2536295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.253643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2537475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.253757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.253770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.25461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2546295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.254643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2547475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.254756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2547706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.25561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2556295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.25564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2557475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.255756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2557706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.25661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.25662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.256643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2567475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.256756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2567706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.25761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2576295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.257643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2577475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.257757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.257770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.25861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2586295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.258643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2587475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.258756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2587706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.25961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2596295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.25964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2597475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.259756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2597706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.26061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.26062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.260643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2607475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.260756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2607706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.26161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2616295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.261643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2617475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.261757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.261770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.26261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2626295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.262643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2627475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.262756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2627706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.26361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 1.263629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.263638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 1.263652975 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 86, + "ts": 1.26367695 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.263692725 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.2637068 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2637475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1590) example: Task[0x3ffb7f40]: allocated 86 bytes @ 0x3ffb87e4\n", + "ts": 1.26376895 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1590) example: Task[0x3ffb7f40]: allocated 86 bytes @ 0x3ffb87e4\n", + "ts": 1.26376895 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.263777425 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 1.263785425 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.263796175 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.263807025 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.263819975 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.2638287 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2638366 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 1.26384515 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.26385785 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.26386625 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 1.26387455 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.263883275 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.263892725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.263901925 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.26391675 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1590) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.263966075 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1590) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.263966075 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.2639845 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 1.26400305 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.26401575 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.26402455 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.264040125 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.26461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 1.264629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2646388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 1.264652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 172, + "ts": 1.264677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.2646897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.264703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2647475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1591) example: Task[0x3ffb82a0]: allocated 172 bytes @ 0x3ffb4b10\n", + "ts": 1.264769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1591) example: Task[0x3ffb82a0]: allocated 172 bytes @ 0x3ffb4b10\n", + "ts": 1.264769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.26478125 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 1.26478975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.264800125 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.2648109 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.264823925 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.26483245 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.264840425 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 1.264849 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.26486165 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.264870025 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 1.26487835 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.264887225 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.2648966 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2649058 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.264920625 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1591) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.264969875 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1591) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.264969875 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.264985475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 1.265005825 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.265018525 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.265027325 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2650429 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.26561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 1.265629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2656388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 1.265652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 258, + "ts": 1.265676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.265689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.265703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2657475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1592) example: Task[0x3ffb8600]: allocated 258 bytes @ 0x3ffb4b10\n", + "ts": 1.26576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1592) example: Task[0x3ffb8600]: allocated 258 bytes @ 0x3ffb4b10\n", + "ts": 1.26576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2657782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 1.2657867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.265797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.26580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.265820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.2658294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.265837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 1.26584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.2658586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.265866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 1.2658792 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.265887225 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.265895675 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2659058 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.265920725 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1592) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.265970075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1592) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.265970075 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.26598545 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 1.266003575 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.2660164 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.266025175 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.266040625 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.26661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.26662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.266643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2667475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.266756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2667706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.26761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2676295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.267643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2677475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.267757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.267770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.26861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2686295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.268643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2687475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.268756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2687706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.26961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2696295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.26964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2697475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.269756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2697706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.27061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.270631925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.27064555 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2707475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.270756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2707706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.27161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2716295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.271643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2717475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.271757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.271770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.27261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2726295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.272643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2727475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.272756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2727706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.27361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2736295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.27364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2737475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.273756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2737706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.27461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.27462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.274643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2747475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.274756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2747706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.27561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2756295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.275643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2757475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.275757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.275770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.27661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2766295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.276643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2767475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.276756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2767706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.27761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2776295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.27764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2777475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.277756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2777706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.27861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.27862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.278643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2787475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.278756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2787706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.27961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2796295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.279643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2797475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.279757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.279770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.28061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2806295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.280643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2807475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.280756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2807706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.28161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2816295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.28164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2817475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.281756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2817706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.28261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2826326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.282646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2827475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.282756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2827706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.28361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2836295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.283643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2837475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.283757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.283770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.28461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2846295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.284643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2847475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.284756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2847706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.28561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2856295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.28564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2857475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.285756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2857706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.28661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.28662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.286643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2867475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.286756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2867706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.28761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2876295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.287643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2877475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.287757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.287770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.28861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2886295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.288643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2887475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.288756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2887706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.28961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2896295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.28964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2897475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.289756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2897706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.29061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.29062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.290643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2907475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.290756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2907706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.29161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2916295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.291643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2917475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.291757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.291770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.29261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2926295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.292643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2927475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.292756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2927706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.29361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 1.293629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.293638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 1.293652975 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 88, + "ts": 1.29367695 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.29369205 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.293706125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2937475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1620) example: Task[0x3ffb7f40]: allocated 88 bytes @ 0x3ffb87e4\n", + "ts": 1.293768225 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1620) example: Task[0x3ffb7f40]: allocated 88 bytes @ 0x3ffb87e4\n", + "ts": 1.293768225 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.293776475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 1.2937847 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2937953 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.293806175 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.293819125 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.293827825 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.293835725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 1.293844275 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.293857 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.293865375 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 1.293873675 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.293882425 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.293891875 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.293901075 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.2939159 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1620) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.2939652 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1620) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.2939652 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.293983625 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 1.2940022 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.294014875 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.294023675 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.29403925 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.29461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 1.294629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2946388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 1.294652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 176, + "ts": 1.294677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.2946897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.294703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2947475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1621) example: Task[0x3ffb82a0]: allocated 176 bytes @ 0x3ffb4b10\n", + "ts": 1.294769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1621) example: Task[0x3ffb82a0]: allocated 176 bytes @ 0x3ffb4b10\n", + "ts": 1.294769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.29478005 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 1.29478905 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.29479895 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.294809725 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.29482275 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.294831275 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.29483925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 1.294847825 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.294860475 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.29486885 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 1.294877175 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.29488605 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.294895425 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.294904625 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.29491945 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1621) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.2949687 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1621) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.2949687 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.2949843 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 1.29500535 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.29501805 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.29502685 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.295042425 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.29561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 1.295629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2956388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 1.295652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 264, + "ts": 1.295676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.295689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.295703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2957475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1622) example: Task[0x3ffb8600]: allocated 264 bytes @ 0x3ffb4b10\n", + "ts": 1.29576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1622) example: Task[0x3ffb8600]: allocated 264 bytes @ 0x3ffb4b10\n", + "ts": 1.29576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2957782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 1.2957867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.295797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.29580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.295820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.2958294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.295837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 1.29584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.2958586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.295866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 1.29587925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.295887275 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.295895725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.295905825 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.29592075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1622) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.2959701 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1622) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.2959701 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.295985475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 1.2960036 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.296016425 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2960252 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.29604065 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.29661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.29662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.296643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2967475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.296756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2967706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.29761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2976295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.297643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2977475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.297757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.297770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.29861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2986295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.298643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2987475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.298756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2987706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.29961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.2996295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.29964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.2997475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.299756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.2997706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.30061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3006326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.300646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3007475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.300756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3007706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.30161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3016295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.301643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3017475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.301757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.301770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.30261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3026295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.302643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3027475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.302756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3027706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.30361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3036295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.30364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3037475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.303756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3037706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.30461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.30462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.304643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3047475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.304756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3047706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.30561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3056295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.305643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3057475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.305757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.305770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.30661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3066295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.306643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3067475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.306756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3067706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.30761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3076295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.30764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3077475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.307756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3077706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.30861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.30862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.308643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3087475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.308756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3087706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.30961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3096295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.309643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3097475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.309757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.309770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.31061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3106295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.310643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3107475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.310756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3107706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.31161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3116295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.31164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3117475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.311756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3117706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.31261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.312631925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.31264555 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3127475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.312756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3127706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.31361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3136295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.313643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3137475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.313757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.313770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.31461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3146295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.314643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3147475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.314756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3147706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.31561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3156295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.31564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3157475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.315756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3157706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.31661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.31662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.316643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3167475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.316756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3167706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.31761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3176295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.317643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3177475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.317757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.317770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.31861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3186295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.318643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3187475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.318756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3187706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.31961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3196295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.31964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3197475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.319756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3197706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.32061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.32062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.320643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3207475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.320756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3207706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.32161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3216295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.321643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3217475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.321757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.321770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.32261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3226295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.322643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3227475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.322756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3227706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.32361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 1.323629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.323638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 1.323652975 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 90, + "ts": 1.32367695 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.323692725 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.3237068 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3237475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1650) example: Task[0x3ffb7f40]: allocated 90 bytes @ 0x3ffb87e4\n", + "ts": 1.32376895 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1650) example: Task[0x3ffb7f40]: allocated 90 bytes @ 0x3ffb87e4\n", + "ts": 1.32376895 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.323777425 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 1.323785425 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.323796175 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.323807025 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.323819975 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.3238287 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3238366 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 1.32384515 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.32385785 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.32386625 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 1.32387455 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.323883275 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.323892725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.323901925 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.32391675 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1650) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.323966075 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1650) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.323966075 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.3239845 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 1.32400305 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.32401575 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.32402455 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.324040125 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.32461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 1.324629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3246388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 1.324652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 180, + "ts": 1.324677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.3246897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.324703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3247475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1651) example: Task[0x3ffb82a0]: allocated 180 bytes @ 0x3ffb4b10\n", + "ts": 1.324769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1651) example: Task[0x3ffb82a0]: allocated 180 bytes @ 0x3ffb4b10\n", + "ts": 1.324769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.32478125 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 1.32478975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.324800125 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.3248109 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.324823925 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.32483245 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.324840425 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 1.324849 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.32486165 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.324870025 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 1.32487835 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.324887225 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.3248966 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3249058 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.324920625 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1651) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.324969875 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1651) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.324969875 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.324985475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 1.325005825 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.325018525 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.325027325 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3250429 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.32561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 1.325629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3256388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 1.325652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 270, + "ts": 1.325676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.325689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.325703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3257475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1652) example: Task[0x3ffb8600]: allocated 270 bytes @ 0x3ffb4b10\n", + "ts": 1.32576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1652) example: Task[0x3ffb8600]: allocated 270 bytes @ 0x3ffb4b10\n", + "ts": 1.32576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3257782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 1.3257867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.325797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.32580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.325820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.3258294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.325837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 1.32584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.3258586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.325866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 1.3258792 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.325887225 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.325895675 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3259058 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.325920725 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1652) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.325970075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1652) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.325970075 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.32598545 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 1.326003575 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.3260164 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.326025175 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.326040625 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.32661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.32662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.326643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3267475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.326756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3267706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.32761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3276295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.327643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3277475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.327757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.327770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.32861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3286295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.328643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3287475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.328756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3287706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.32961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3296295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.32964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3297475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.329756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3297706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.33061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.330631925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.33064555 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3307475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.330756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3307706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.33161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3316295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.331643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3317475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.331757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.331770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.33261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3326295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.332643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3327475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.332756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3327706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.33361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3336295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.33364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3337475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.333756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3337706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.33461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.33462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.334643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3347475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.334756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3347706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.33561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3356295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.335643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3357475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.335757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.335770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.33661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3366295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.336643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3367475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.336756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3367706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.33761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3376295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.33764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3377475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.337756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3377706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.33861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.33862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.338643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3387475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.338756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3387706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.33961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3396295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.339643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3397475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.339757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.339770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.34061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3406295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.340643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3407475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.340756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3407706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.34161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3416295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.34164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3417475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.341756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3417706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.34261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3426326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.342646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3427475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.342756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3427706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.34361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3436295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.343643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3437475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.343757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.343770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.34461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3446295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.344643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3447475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.344756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3447706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.34561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3456295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.34564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3457475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.345756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3457706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.34661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.34662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.346643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3467475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.346756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3467706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.34761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3476295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.347643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3477475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.347757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.347770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.34861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3486295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.348643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3487475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.348756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3487706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.34961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3496295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.34964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3497475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.349756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3497706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.35061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.35062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.350643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3507475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.350756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3507706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.35161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3516295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.351643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3517475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.351757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.351770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.35261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3526295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.352643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3527475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.352756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3527706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.35361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 1.353629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.353638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 1.353652975 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 92, + "ts": 1.35367695 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.35369205 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.353706125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3537475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1680) example: Task[0x3ffb7f40]: allocated 92 bytes @ 0x3ffb87e4\n", + "ts": 1.353768225 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1680) example: Task[0x3ffb7f40]: allocated 92 bytes @ 0x3ffb87e4\n", + "ts": 1.353768225 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.353776475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 1.3537847 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3537953 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.353806175 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.353819125 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.353827825 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.353835725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 1.353844275 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.353857 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.353865375 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 1.353873675 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.353882425 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.353891875 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.353901075 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.3539159 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1680) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.3539652 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1680) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.3539652 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.353983625 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 1.3540022 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.354014875 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.354023675 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.35403925 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.35461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 1.354629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3546388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 1.354652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 184, + "ts": 1.354677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.3546897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.354703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3547475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1681) example: Task[0x3ffb82a0]: allocated 184 bytes @ 0x3ffb4b10\n", + "ts": 1.354769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1681) example: Task[0x3ffb82a0]: allocated 184 bytes @ 0x3ffb4b10\n", + "ts": 1.354769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.35478005 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 1.35478905 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.35479895 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.354809725 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.35482275 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.354831275 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.35483925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 1.354847825 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.354860475 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.35486885 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 1.354877175 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.35488605 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.354895425 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.354904625 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.35491945 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1681) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.3549687 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1681) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.3549687 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.3549843 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 1.35500535 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.35501805 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.35502685 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.355042425 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.35561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 1.355629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3556388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 1.355652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 276, + "ts": 1.355676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.355689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.355703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3557475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1682) example: Task[0x3ffb8600]: allocated 276 bytes @ 0x3ffb4b10\n", + "ts": 1.35576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1682) example: Task[0x3ffb8600]: allocated 276 bytes @ 0x3ffb4b10\n", + "ts": 1.35576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3557782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 1.3557867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.355797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.35580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.355820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.3558294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.355837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 1.35584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.3558586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.355866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 1.35587925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.355887275 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.355895725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.355905825 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.35592075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1682) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.3559701 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1682) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.3559701 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.355985475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 1.3560036 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.356016425 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3560252 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.35604065 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.35661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.35662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.356643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3567475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.356756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3567706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.35761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3576295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.357643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3577475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.357757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.357770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.35861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3586295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.358643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3587475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.358756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3587706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.35961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3596295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.35964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3597475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.359756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3597706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.36061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3606326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.360646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3607475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.360756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3607706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.36161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3616295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.361643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3617475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.361757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.361770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.36261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3626295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.362643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3627475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.362756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3627706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.36361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3636295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.36364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3637475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.363756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3637706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.36461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.36462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.364643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3647475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.364756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3647706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.36561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3656295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.365643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3657475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.365757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.365770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.36661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3666295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.366643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3667475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.366756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3667706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.36761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3676295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.36764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3677475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.367756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3677706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.36861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.36862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.368643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3687475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.368756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3687706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.36961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3696295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.369643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3697475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.369757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.369770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.37061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3706295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.370643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3707475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.370756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3707706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.37161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3716295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.37164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3717475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.371756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3717706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.37261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.372631925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.37264555 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3727475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.372756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3727706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.37361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3736295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.373643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3737475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.373757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.373770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.37461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3746295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.374643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3747475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.374756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3747706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.37561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3756295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.37564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3757475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.375756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3757706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.37661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.37662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.376643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3767475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.376756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3767706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.37761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3776295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.377643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3777475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.377757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.377770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.37861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3786295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.378643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3787475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.378756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3787706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.37961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3796295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.37964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3797475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.379756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3797706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.38061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.38062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.380643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3807475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.380756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3807706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.38161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3816295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.381643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3817475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.381757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.381770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.38261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3826295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.382643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3827475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.382756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3827706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.38361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 1.383629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.383638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 1.383652975 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 94, + "ts": 1.38367695 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.383692725 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.3837068 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3837475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1710) example: Task[0x3ffb7f40]: allocated 94 bytes @ 0x3ffb87e4\n", + "ts": 1.38376895 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1710) example: Task[0x3ffb7f40]: allocated 94 bytes @ 0x3ffb87e4\n", + "ts": 1.38376895 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.383777425 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 1.383785425 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.383796175 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.383807025 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.383819975 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.3838287 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3838366 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 1.38384515 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.38385785 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.38386625 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 1.38387455 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.383883275 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.383892725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.383901925 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.38391675 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1710) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.383966075 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1710) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.383966075 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.3839845 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 1.38400305 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.38401575 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.38402455 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.384040125 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.38461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 1.384629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3846388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 1.384652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 188, + "ts": 1.384677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.3846897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.384703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3847475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1711) example: Task[0x3ffb82a0]: allocated 188 bytes @ 0x3ffb4b10\n", + "ts": 1.384769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1711) example: Task[0x3ffb82a0]: allocated 188 bytes @ 0x3ffb4b10\n", + "ts": 1.384769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.38478125 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 1.38478975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.384800125 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.3848109 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.384823925 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.38483245 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.384840425 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 1.384849 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.38486165 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.384870025 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 1.38487835 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.384887225 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.3848966 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3849058 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.384920625 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1711) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.384969875 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1711) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.384969875 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.384985475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 1.385007925 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.3850206 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3850294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.385044975 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.38561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 1.385629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3856388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 1.385652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 282, + "ts": 1.385676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.385689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.385703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3857475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1712) example: Task[0x3ffb8600]: allocated 282 bytes @ 0x3ffb4b10\n", + "ts": 1.38576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1712) example: Task[0x3ffb8600]: allocated 282 bytes @ 0x3ffb4b10\n", + "ts": 1.38576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3857782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 1.3857867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.385797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.38580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.385820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.3858294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.385837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 1.38584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.3858586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.385866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 1.38587925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.385887275 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.385895725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.385905825 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.38592075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1712) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.3859701 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1712) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.3859701 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.385985475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 1.3860036 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.386016425 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3860252 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.38604065 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.38661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.38662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.386643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3867475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.386756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3867706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.38761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3876295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.387643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3877475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.387757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.387770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.38861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3886295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.388643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3887475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.388756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3887706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.38961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3896295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.38964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3897475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.389756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3897706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.39061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3906326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.390646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3907475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.390756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3907706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.39161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3916295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.391643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3917475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.391757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.391770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.39261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3926295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.392643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3927475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.392756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3927706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.39361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3936295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.39364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3937475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.393756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3937706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.39461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.39462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.394643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3947475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.394756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3947706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.39561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3956295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.395643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3957475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.395757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.395770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.39661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3966295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.396643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3967475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.396756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3967706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.39761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3976295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.39764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3977475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.397756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3977706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.39861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.39862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.398643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3987475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.398756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.3987706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.39961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.3996295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.399643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.3997475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.399757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.399770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.40061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4006295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.400643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4007475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.400756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4007706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.40161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4016295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.40164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4017475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.401756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4017706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.40261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.402631925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.40264555 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4027475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.402756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4027706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.40361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4036295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.403643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4037475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.403757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.403770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.40461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4046295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.404643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4047475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.404756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4047706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.40561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4056295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.40564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4057475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.405756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4057706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.40661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.40662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.406643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4067475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.406756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4067706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.40761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4076295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.407643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4077475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.407757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.407770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.40861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4086295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.408643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4087475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.408756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4087706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.40961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4096295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.40964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4097475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.409756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4097706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.41061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.41062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.410643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4107475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.410756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4107706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.41161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4116295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.411643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4117475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.411757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.411770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.41261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4126295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.412643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4127475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.412756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4127706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.41361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 1.413629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.413638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 1.413652975 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 96, + "ts": 1.41367695 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.413692725 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.4137068 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4137475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1740) example: Task[0x3ffb7f40]: allocated 96 bytes @ 0x3ffb87e4\n", + "ts": 1.41376895 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1740) example: Task[0x3ffb7f40]: allocated 96 bytes @ 0x3ffb87e4\n", + "ts": 1.41376895 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.413777425 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 1.413785425 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.413796175 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.413807025 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.413819975 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.4138287 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4138366 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 1.41384515 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.41385785 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.41386625 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 1.41387455 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.413883275 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.413892725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.413901925 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.41391675 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1740) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.413966075 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1740) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.413966075 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.4139845 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 1.41400305 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.41401575 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.41402455 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.414040125 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.41461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 1.414629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4146388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 1.414652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 192, + "ts": 1.414677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.4146897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.414703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4147475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1741) example: Task[0x3ffb82a0]: allocated 192 bytes @ 0x3ffb4b10\n", + "ts": 1.414769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1741) example: Task[0x3ffb82a0]: allocated 192 bytes @ 0x3ffb4b10\n", + "ts": 1.414769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.41478125 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 1.41478975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.414800125 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.4148109 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.414823925 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.41483245 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.414840425 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 1.414849 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.41486165 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.414870025 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 1.41487835 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.414887225 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.4148966 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4149058 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.414920625 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1741) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.414969875 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1741) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.414969875 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.414985475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 1.415005825 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.415018525 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.415027325 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4150429 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.41561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 1.415629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4156388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 1.415652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 288, + "ts": 1.415676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.415689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.415703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4157475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1742) example: Task[0x3ffb8600]: allocated 288 bytes @ 0x3ffb4b10\n", + "ts": 1.41576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1742) example: Task[0x3ffb8600]: allocated 288 bytes @ 0x3ffb4b10\n", + "ts": 1.41576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4157782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 1.4157867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.415797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.41580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.415820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.4158294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.415837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 1.41584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.4158586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.415866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 1.4158792 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.415887225 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.415895675 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4159058 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.415920725 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1742) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.415970075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1742) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.415970075 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.41598545 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 1.416003575 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.4160164 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.416025175 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.416040625 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.41661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.41662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.416643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4167475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.416756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4167706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.41761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4176295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.417643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4177475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.417757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.417770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.41861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4186295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.418643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4187475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.418756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4187706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.41961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4196295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.41964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4197475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.419756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4197706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.42061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.420631925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.42064555 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4207475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.420756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4207706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.42161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4216295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.421643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4217475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.421757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.421770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.42261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4226295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.422643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4227475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.422756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4227706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.42361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4236295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.42364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4237475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.423756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4237706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.42461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.42462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.424643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4247475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.424756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4247706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.42561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4256295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.425643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4257475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.425757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.425770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.42661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4266295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.426643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4267475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.426756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4267706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.42761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4276295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.42764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4277475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.427756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4277706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.42861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.42862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.428643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4287475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.428756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4287706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.42961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4296295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.429643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4297475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.429757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.429770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.43061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4306295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.430643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4307475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.430756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4307706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.43161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4316295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.43164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4317475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.431756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4317706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.43261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4326326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.432646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4327475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.432756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4327706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.43361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4336295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.433643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4337475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.433757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.433770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.43461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4346295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.434643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4347475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.434756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4347706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.43561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4356295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.43564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4357475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.435756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4357706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.43661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.43662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.436643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4367475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.436756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4367706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.43761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4376295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.437643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4377475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.437757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.437770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.43861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4386295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.438643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4387475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.438756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4387706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.43961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4396295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.43964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4397475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.439756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4397706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.44061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.44062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.440643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4407475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.440756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4407706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.44161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4416295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.441643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4417475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.441757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.441770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.44261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4426295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.442643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4427475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.442756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4427706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.44361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 1.443629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.443638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 1.443652975 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 98, + "ts": 1.44367695 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.44369205 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.443706125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4437475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1770) example: Task[0x3ffb7f40]: allocated 98 bytes @ 0x3ffb87e4\n", + "ts": 1.443768225 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1770) example: Task[0x3ffb7f40]: allocated 98 bytes @ 0x3ffb87e4\n", + "ts": 1.443768225 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.443776475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 1.4437847 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4437953 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.443806175 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.443819125 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.443827825 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.443835725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 1.443844275 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.443857 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.443865375 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 1.443873675 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.443882425 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.443891875 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.443901075 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.4439159 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1770) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.4439652 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1770) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.4439652 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.443983625 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 1.4440022 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.444014875 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.444023675 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.44403925 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.44461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 1.444629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4446388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 1.444652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 196, + "ts": 1.444677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.4446897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.444703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4447475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1771) example: Task[0x3ffb82a0]: allocated 196 bytes @ 0x3ffb4b10\n", + "ts": 1.444769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1771) example: Task[0x3ffb82a0]: allocated 196 bytes @ 0x3ffb4b10\n", + "ts": 1.444769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.44478005 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 1.44478905 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.44479895 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.444809725 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.44482275 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.444831275 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.44483925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 1.444847825 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.444860475 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.44486885 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 1.444877175 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.44488605 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.444895425 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.444904625 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.44491945 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1771) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.4449687 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1771) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.4449687 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.4449843 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 1.44500535 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.44501805 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.44502685 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.445042425 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.44561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 1.445629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4456388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 1.445652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 294, + "ts": 1.445676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.445689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.445703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4457475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1772) example: Task[0x3ffb8600]: allocated 294 bytes @ 0x3ffb4b10\n", + "ts": 1.44576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1772) example: Task[0x3ffb8600]: allocated 294 bytes @ 0x3ffb4b10\n", + "ts": 1.44576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4457782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 1.4457867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.445797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.44580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.445820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.4458294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.445837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 1.44584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.4458586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.445866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 1.44587925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.445887275 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.445895725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.445905825 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.44592075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1772) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.4459701 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1772) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.4459701 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.445985475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 1.4460036 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.446016425 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4460252 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.44604065 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.44661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.44662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.446643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4467475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.446756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4467706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.44761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4476295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.447643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4477475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.447757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.447770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.44861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4486295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.448643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4487475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.448756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4487706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.44961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4496295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.44964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4497475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.449756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4497706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.45061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4506326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.450646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4507475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.450756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4507706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.45161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4516295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.451643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4517475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.451757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.451770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.45261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4526295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.452643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4527475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.452756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4527706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.45361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4536295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.45364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4537475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.453756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4537706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.45461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.45462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.454643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4547475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.454756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4547706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.45561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4556295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.455643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4557475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.455757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.455770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.45661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4566295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.456643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4567475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.456756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4567706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.45761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4576295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.45764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4577475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.457756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4577706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.45861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.45862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.458643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4587475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.458756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4587706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.45961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4596295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.459643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4597475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.459757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.459770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.46061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4606295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.460643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4607475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.460756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4607706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.46161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4616295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.46164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4617475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.461756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4617706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.46261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.462631925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.46264555 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4627475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.462756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4627706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.46361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4636295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.463643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4637475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.463757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.463770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.46461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4646295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.464643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4647475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.464756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4647706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.46561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4656295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.46564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4657475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.465756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4657706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.46661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.46662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.466643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4667475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.466756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4667706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.46761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4676295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.467643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4677475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.467757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.467770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.46861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4686295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.468643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4687475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.468756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4687706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.46961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4696295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.46964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4697475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.469756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4697706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.47061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.47062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.470643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4707475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.470756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4707706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.47161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4716295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.471643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4717475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.471757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.471770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.47261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4726295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.472643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4727475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.472756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4727706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.47361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 1.473629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.473638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 1.473652975 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 100, + "ts": 1.47367695 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.473692725 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.4737068 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4737475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1800) example: Task[0x3ffb7f40]: allocated 100 bytes @ 0x3ffb87e4\n", + "ts": 1.473768825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1800) example: Task[0x3ffb7f40]: allocated 100 bytes @ 0x3ffb87e4\n", + "ts": 1.473768825 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.473778075 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 1.473786225 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.473796875 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.47380765 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.473820625 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.473829325 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.473837225 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 1.4738459 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.47385865 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.4738669 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 1.4738752 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.473884225 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.473892975 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.473902875 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.4739177 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1800) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.47396705 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1800) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.47396705 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.4739855 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 1.474004075 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.47401675 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.47402555 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.474041125 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.47461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 1.474629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4746388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 1.474652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 200, + "ts": 1.474677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.4746897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.474703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4747475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1801) example: Task[0x3ffb82a0]: allocated 200 bytes @ 0x3ffb4b10\n", + "ts": 1.474769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1801) example: Task[0x3ffb82a0]: allocated 200 bytes @ 0x3ffb4b10\n", + "ts": 1.474769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.474781225 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 1.474789725 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4748001 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.4748109 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.4748239 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.47483245 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4748404 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 1.474848975 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.474861625 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.474870025 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 1.474878325 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4748872 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.4748966 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.474905775 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.4749206 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1801) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.47496985 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1801) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.47496985 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.47498545 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 1.475006525 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.475019225 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.475028025 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4750436 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.47561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 1.475629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4756388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 1.475652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 300, + "ts": 1.475676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.475689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.475703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4757475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1802) example: Task[0x3ffb8600]: allocated 300 bytes @ 0x3ffb4b10\n", + "ts": 1.47576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1802) example: Task[0x3ffb8600]: allocated 300 bytes @ 0x3ffb4b10\n", + "ts": 1.47576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4757782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 1.4757867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.475797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.47580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.475820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.4758294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.475837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 1.47584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.4758586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.475866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 1.475878175 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.47588635 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.475894725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.475904975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.475919925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1802) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.475969275 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1802) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.475969275 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.47598465 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 1.476002775 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.4760156 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.47602435 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4760398 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.47661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.47662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.476643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4767475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.476756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4767706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.47761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4776295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.477643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4777475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.477757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.477770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.47861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4786295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.478643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4787475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.478756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4787706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.47961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4796295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.47964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4797475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.479756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4797706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.48061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4806326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.480646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4807475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.480756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4807706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.48161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4816295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.481643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4817475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.481757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.481770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.48261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4826295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.482643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4827475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.482756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4827706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.48361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4836295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.48364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4837475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.483756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4837706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.48461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.48462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.484643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4847475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.484756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4847706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.48561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4856295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.485643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4857475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.485757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.485770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.48661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4866295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.486643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4867475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.486756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4867706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.48761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4876295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.48764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4877475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.487756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4877706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.48861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.48862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.488643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4887475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.488756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4887706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.48961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4896295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.489643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4897475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.489757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.489770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.49061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4906295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.490643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4907475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.490756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4907706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.49161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4916295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.49164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4917475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.491756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4917706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.49261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4926326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.492646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4927475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.492756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4927706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.49361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4936295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.493643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4937475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.493757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.493770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.49461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4946295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.494643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4947475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.494756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4947706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.49561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4956295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.49564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4957475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.495756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4957706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.49661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.49662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.496643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4967475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.496756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4967706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.49761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4976295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.497643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4977475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.497757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.497770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.49861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4986295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.498643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4987475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.498756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4987706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.49961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.4996295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.49964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.4997475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.499756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.4997706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.50061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.50062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.500643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5007475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.500756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5007706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.50161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5016295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.501643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5017475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.501757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.501770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.50261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5026295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.502643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5027475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.502756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5027706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.50361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 1.503629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.503638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 1.503652975 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 102, + "ts": 1.50367695 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.503692725 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.5037068 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5037475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1830) example: Task[0x3ffb7f40]: allocated 102 bytes @ 0x3ffb87e4\n", + "ts": 1.503768825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1830) example: Task[0x3ffb7f40]: allocated 102 bytes @ 0x3ffb87e4\n", + "ts": 1.503768825 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.503778075 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 1.503786225 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.503796875 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.503807675 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.50382065 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.50382935 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.50383725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 1.503845925 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.50385865 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.503866925 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 1.503875175 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5038842 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.50389295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.50390285 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.503917675 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1830) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.503967025 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1830) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.503967025 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.5039848 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 1.50400335 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.50401605 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.50402485 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.504040425 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.50461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 1.504629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5046388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 1.504652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 204, + "ts": 1.504677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.5046897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.504703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5047475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1831) example: Task[0x3ffb82a0]: allocated 204 bytes @ 0x3ffb4b10\n", + "ts": 1.504769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1831) example: Task[0x3ffb82a0]: allocated 204 bytes @ 0x3ffb4b10\n", + "ts": 1.504769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.50478125 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 1.50478975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.504800125 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.5048109 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.504823925 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.50483245 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.504840425 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 1.504849 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.50486165 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.504870025 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 1.504878275 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.50488715 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.504896525 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5049057 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.504920525 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1831) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.504969775 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1831) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.504969775 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.504985375 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 1.50500575 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.505018425 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.505027225 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5050428 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.50561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 1.505629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5056388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 1.505652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 306, + "ts": 1.505676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.505689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.505703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5057475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1832) example: Task[0x3ffb8600]: allocated 306 bytes @ 0x3ffb4b10\n", + "ts": 1.50576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1832) example: Task[0x3ffb8600]: allocated 306 bytes @ 0x3ffb4b10\n", + "ts": 1.50576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5057782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 1.5057867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.505797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.50580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.505820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.5058294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.505837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 1.50584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.5058586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.505866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 1.505879175 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5058872 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.50589565 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.50590575 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.505920675 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1832) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.505970025 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1832) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.505970025 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.5059854 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 1.506003525 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.50601635 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.506025125 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.506040575 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.50661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.50662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.506643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5067475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.506756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5067706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.50761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5076295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.507643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5077475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.507757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.507770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.50861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5086295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.508643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5087475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.508756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5087706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.50961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5096295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.50964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5097475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.509756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5097706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.51061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.510631925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.51064555 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5107475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.510756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5107706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.51161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5116295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.511643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5117475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.511757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.511770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.51261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5126295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.512643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5127475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.512756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5127706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.51361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5136295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.51364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5137475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.513756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5137706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.51461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.51462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.514643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5147475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.514756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5147706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.51561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5156295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.515643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5157475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.515757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.515770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.51661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5166295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.516643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5167475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.516756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5167706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.51761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5176295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.51764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5177475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.517756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5177706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.51861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.51862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.518643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5187475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.518756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5187706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.51961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5196295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.519643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5197475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.519757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.519770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.52061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5206295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.520643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5207475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.520756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5207706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.52161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5216295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.52164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5217475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.521756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5217706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.52261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5226326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.522646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5227475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.522756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5227706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.52361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5236295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.523643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5237475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.523757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.523770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.52461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5246295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.524643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5247475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.524756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5247706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.52561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5256295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.52564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5257475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.525756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5257706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.52661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.52662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.526643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5267475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.526756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5267706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.52761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5276295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.527643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5277475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.527757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.527770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.52861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5286295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.528643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5287475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.528756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5287706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.52961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5296295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.52964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5297475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.529756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5297706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.53061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.53062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.530643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5307475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.530756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5307706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.53161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5316295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.531643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5317475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.531757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.531770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.53261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5326295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.532643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5327475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.532756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5327706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.53361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 1.533629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.533638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 1.533652975 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 104, + "ts": 1.53367695 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.53369205 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.533706125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5337475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1860) example: Task[0x3ffb7f40]: allocated 104 bytes @ 0x3ffb87e4\n", + "ts": 1.5337684 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1860) example: Task[0x3ffb7f40]: allocated 104 bytes @ 0x3ffb87e4\n", + "ts": 1.5337684 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.533777475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 1.533785875 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5337964 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.533807175 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.53382015 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.53382885 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.53383675 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 1.533845425 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.533858175 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.533866425 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 1.533874725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.53388375 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.5338925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5339024 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.533917225 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1860) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.533966575 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1860) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.533966575 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.533985025 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 1.5340036 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.534016275 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.534025075 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.53404065 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.53461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 1.534629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5346388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 1.534652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 208, + "ts": 1.534677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.5346897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.534703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5347475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1861) example: Task[0x3ffb82a0]: allocated 208 bytes @ 0x3ffb4b10\n", + "ts": 1.534769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1861) example: Task[0x3ffb82a0]: allocated 208 bytes @ 0x3ffb4b10\n", + "ts": 1.534769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.534781225 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 1.534789725 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5348001 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.5348109 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.5348239 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.53483245 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5348404 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 1.534848975 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.534861625 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.534870025 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 1.534878325 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5348872 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.5348966 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.534905775 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.5349206 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1861) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.53496985 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1861) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.53496985 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.53498545 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 1.535006425 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.535019125 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.535027925 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5350435 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.53561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 1.535629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5356388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 1.535652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 312, + "ts": 1.535676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.535689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.535703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5357475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1862) example: Task[0x3ffb8600]: allocated 312 bytes @ 0x3ffb4b10\n", + "ts": 1.53576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1862) example: Task[0x3ffb8600]: allocated 312 bytes @ 0x3ffb4b10\n", + "ts": 1.53576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5357782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 1.5357867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.535797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.53580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.535820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.5358294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.535837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 1.53584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.5358586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.535866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 1.53587925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.535887275 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.535895725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.535905825 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.53592075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1862) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.5359701 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1862) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.5359701 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.535985475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 1.5360036 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.536016425 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5360252 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.53604065 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.53661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.53662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.536643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5367475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.536756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5367706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.53761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5376295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.537643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5377475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.537757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.537770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.53861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5386295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.538643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5387475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.538756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5387706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.53961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5396295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.53964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5397475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.539756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5397706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.54061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5406326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.540646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5407475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.540756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5407706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.54161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5416295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.541643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5417475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.541757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.541770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.54261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5426295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.542643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5427475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.542756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5427706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.54361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5436295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.54364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5437475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.543756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5437706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.54461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.54462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.544643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5447475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.544756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5447706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.54561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5456295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.545643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5457475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.545757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.545770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.54661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5466295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.546643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5467475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.546756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5467706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.54761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5476295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.54764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5477475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.547756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5477706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.54861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.54862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.548643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5487475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.548756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5487706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.54961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5496295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.549643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5497475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.549757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.549770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.55061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5506295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.550643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5507475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.550756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5507706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.55161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5516295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.55164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5517475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.551756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5517706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.55261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5526326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.552646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5527475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.552756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5527706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.55361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5536295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.553643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5537475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.553757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.553770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.55461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5546295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.554643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5547475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.554756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5547706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.55561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5556295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.55564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5557475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.555756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5557706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.55661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.55662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.556643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5567475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.556756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5567706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.55761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5576295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.557643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5577475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.557757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.557770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.55861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5586295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.558643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5587475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.558756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5587706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.55961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5596295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.55964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5597475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.559756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5597706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.56061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.56062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.560643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5607475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.560756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5607706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.56161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5616295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.561643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5617475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.561757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.561770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.56261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5626295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.562643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5627475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.562756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5627706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.56361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 1.563629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.563638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 1.563652975 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 106, + "ts": 1.56367695 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.563692625 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.5637067 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5637475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1890) example: Task[0x3ffb7f40]: allocated 106 bytes @ 0x3ffb87e4\n", + "ts": 1.5637688 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1890) example: Task[0x3ffb7f40]: allocated 106 bytes @ 0x3ffb87e4\n", + "ts": 1.5637688 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.56377705 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 1.5637852 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5637961 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.563806875 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.56381985 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.56382855 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.56383645 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 1.563845125 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.563857875 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.563866125 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 1.563874425 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.56388345 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.5638922 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5639021 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.563916925 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1890) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.563966275 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1890) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.563966275 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.563984725 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 1.564003275 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.564015975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.564024775 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.56404035 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.56461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 1.564629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5646388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 1.564652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 212, + "ts": 1.564677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.5646897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.564703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5647475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1891) example: Task[0x3ffb82a0]: allocated 212 bytes @ 0x3ffb4b10\n", + "ts": 1.564769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1891) example: Task[0x3ffb82a0]: allocated 212 bytes @ 0x3ffb4b10\n", + "ts": 1.564769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.56478005 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 1.56478905 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.56479895 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.564809725 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.56482275 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.564831275 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.56483925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 1.564847825 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.564860475 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.56486885 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 1.564877175 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.56488605 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.564895425 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.564904625 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.56491945 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1891) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.5649687 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1891) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.5649687 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.5649843 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 1.56500535 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.56501805 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.56502685 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.565042425 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.56561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 1.565629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5656388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 1.565652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 318, + "ts": 1.565676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.565689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.565703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5657475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1892) example: Task[0x3ffb8600]: allocated 318 bytes @ 0x3ffb4b10\n", + "ts": 1.56576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1892) example: Task[0x3ffb8600]: allocated 318 bytes @ 0x3ffb4b10\n", + "ts": 1.56576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5657782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 1.5657867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.565797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.56580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.565820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.5658294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.565837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 1.56584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.5658586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.565866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 1.56587925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.565887275 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.565895725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.565905825 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.56592075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1892) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.5659701 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1892) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.5659701 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.565985475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 1.5660036 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.566016425 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5660252 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.56604065 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.56661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.56662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.566643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5667475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.566756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5667706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.56761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5676295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.567643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5677475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.567757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.567770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.56861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5686295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.568643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5687475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.568756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5687706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.56961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5696295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.56964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5697475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.569756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5697706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.57061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5706326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.570646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5707475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.570756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5707706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.57161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5716295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.571643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5717475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.571757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.571770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.57261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5726295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.572643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5727475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.572756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5727706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.57361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5736295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.57364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5737475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.573756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5737706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.57461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.57462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.574643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5747475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.574756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5747706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.57561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5756295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.575643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5757475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.575757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.575770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.57661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5766295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.576643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5767475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.576756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5767706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.57761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5776295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.57764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5777475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.577756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5777706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.57861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.57862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.578643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5787475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.578756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5787706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.57961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5796295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.579643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5797475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.579757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.579770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.58061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5806295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.580643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5807475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.580756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5807706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.58161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5816295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.58164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5817475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.581756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5817706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.58261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.582631925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.58264555 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5827475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.582756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5827706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.58361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5836295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.583643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5837475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.583757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.583770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.58461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5846295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.584643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5847475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.584756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5847706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.58561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5856295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.58564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5857475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.585756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5857706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.58661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.58662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.586643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5867475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.586756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5867706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.58761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5876295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.587643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5877475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.587757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.587770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.58861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5886295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.588643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5887475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.588756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5887706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.58961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5896295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.58964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5897475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.589756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5897706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.59061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.59062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.590643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5907475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.590756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5907706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.59161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5916295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.591643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5917475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.591757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.591770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.59261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5926295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.592643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5927475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.592756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5927706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.59361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 1.593629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.593638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 1.593652975 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 108, + "ts": 1.59367695 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.593692725 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.5937068 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5937475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1920) example: Task[0x3ffb7f40]: allocated 108 bytes @ 0x3ffb87e4\n", + "ts": 1.593768825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1920) example: Task[0x3ffb7f40]: allocated 108 bytes @ 0x3ffb87e4\n", + "ts": 1.593768825 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.593778075 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 1.593786225 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.593796875 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.593807675 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.59382065 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.59382935 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.59383725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 1.593845925 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.59385865 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.593866925 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 1.593875225 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.59388425 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.593892975 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5939029 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.593917725 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1920) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.593967075 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1920) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.593967075 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.593985525 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 1.594004075 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.594016775 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.594025575 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.59404115 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.59461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 1.594629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5946388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 1.594652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 216, + "ts": 1.594677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.5946897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.594703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5947475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1921) example: Task[0x3ffb82a0]: allocated 216 bytes @ 0x3ffb4b10\n", + "ts": 1.594769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1921) example: Task[0x3ffb82a0]: allocated 216 bytes @ 0x3ffb4b10\n", + "ts": 1.594769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.594781225 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 1.594789725 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5948001 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.5948109 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.5948239 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.59483245 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5948404 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 1.594848975 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.594861625 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.594870025 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 1.594878325 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5948872 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.5948966 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.594905775 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.5949206 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1921) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.59496985 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1921) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.59496985 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.59498545 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 1.595006525 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.595019225 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.595028025 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5950436 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.59561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 1.595629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5956388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 1.595652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 324, + "ts": 1.595676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.595689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.595703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5957475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1922) example: Task[0x3ffb8600]: allocated 324 bytes @ 0x3ffb4b10\n", + "ts": 1.59576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1922) example: Task[0x3ffb8600]: allocated 324 bytes @ 0x3ffb4b10\n", + "ts": 1.59576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5957782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 1.5957867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.595797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.59580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.595820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.5958294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.595837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 1.59584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.5958586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.595866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 1.595878175 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.59588635 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.595894725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.595904975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.595919925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1922) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.595969275 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1922) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.595969275 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.59598465 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 1.596002775 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.5960156 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.59602435 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5960398 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.59661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.59662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.596643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5967475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.596756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5967706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.59761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5976295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.597643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5977475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.597757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.597770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.59861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5986295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.598643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5987475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.598756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5987706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.59961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.5996295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.59964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.5997475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.599756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.5997706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.60061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6006326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.600646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6007475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.600756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6007706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.60161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6016295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.601643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6017475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.601757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.601770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.60261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6026295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.602643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6027475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.602756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6027706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.60361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6036295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.60364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6037475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.603756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6037706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.60461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.60462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.604643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6047475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.604756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6047706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.60561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6056295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.605643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6057475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.605757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.605770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.60661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6066295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.606643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6067475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.606756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6067706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.60761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6076295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.60764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6077475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.607756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6077706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.60861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.60862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.608643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6087475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.608756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6087706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.60961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6096295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.609643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6097475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.609757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.609770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.61061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6106295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.610643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6107475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.610756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6107706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.61161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6116295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.61164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6117475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.611756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6117706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.61261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6126326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.612646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6127475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.612756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6127706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.61361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6136295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.613643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6137475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.613757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.613770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.61461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6146295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.614643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6147475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.614756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6147706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.61561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6156295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.61564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6157475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.615756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6157706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.61661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.61662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.616643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6167475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.616756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6167706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.61761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6176295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.617643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6177475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.617757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.617770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.61861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6186295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.618643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6187475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.618756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6187706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.61961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6196295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.61964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6197475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.619756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6197706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.62061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.62062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.620643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6207475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.620756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6207706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.62161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6216295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.621643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6217475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.621757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.621770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.62261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6226295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.622643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6227475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.622756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6227706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.62361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 1.623629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.623638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 1.623652975 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 110, + "ts": 1.62367695 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.623692725 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.6237068 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6237475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1950) example: Task[0x3ffb7f40]: allocated 110 bytes @ 0x3ffb87e4\n", + "ts": 1.623768825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1950) example: Task[0x3ffb7f40]: allocated 110 bytes @ 0x3ffb87e4\n", + "ts": 1.623768825 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.623778075 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 1.623786225 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.623796875 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.623807675 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.62382065 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.62382935 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.62383725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 1.623845925 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.62385865 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.623866925 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 1.623875225 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.62388425 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.623892975 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6239029 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.623917725 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1950) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.623967075 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1950) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.623967075 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.62398485 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 1.6240034 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.6240161 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6240249 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.624040475 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.62461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 1.624629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6246388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 1.624652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 220, + "ts": 1.624677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.6246897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.624703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6247475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1951) example: Task[0x3ffb82a0]: allocated 220 bytes @ 0x3ffb4b10\n", + "ts": 1.624769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1951) example: Task[0x3ffb82a0]: allocated 220 bytes @ 0x3ffb4b10\n", + "ts": 1.624769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.62478125 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 1.62478975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.624800125 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.6248109 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.624823925 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.62483245 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.624840425 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 1.624849 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.62486165 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.624870025 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 1.62487835 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.624887225 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.6248966 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6249058 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.624920625 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1951) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.624969875 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1951) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.624969875 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.624985475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 1.625005825 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.625018525 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.625027325 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6250429 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.62561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 1.625629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6256388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 1.625652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 330, + "ts": 1.625676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.625689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.625703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6257475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1952) example: Task[0x3ffb8600]: allocated 330 bytes @ 0x3ffb4b10\n", + "ts": 1.62576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1952) example: Task[0x3ffb8600]: allocated 330 bytes @ 0x3ffb4b10\n", + "ts": 1.62576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6257782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 1.6257867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.625797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.62580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.625820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.6258294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.625837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 1.62584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.6258586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.625866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 1.6258792 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.625887225 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.625895675 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6259058 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.625920725 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1952) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.625970075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1952) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.625970075 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.62598545 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 1.626003575 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.6260164 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.626025175 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.626040625 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.62661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.62662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.626643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6267475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.626756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6267706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.62761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6276295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.627643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6277475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.627757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.627770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.62861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6286295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.628643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6287475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.628756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6287706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.62961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6296295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.62964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6297475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.629756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6297706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.63061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.630631925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.63064555 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6307475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.630756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6307706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.63161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6316295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.631643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6317475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.631757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.631770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.63261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6326295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.632643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6327475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.632756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6327706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.63361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6336295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.63364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6337475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.633756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6337706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.63461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.63462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.634643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6347475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.634756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6347706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.63561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6356295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.635643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6357475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.635757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.635770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.63661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6366295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.636643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6367475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.636756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6367706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.63761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6376295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.63764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6377475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.637756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6377706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.63861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.63862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.638643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6387475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.638756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6387706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.63961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6396295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.639643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6397475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.639757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.639770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.64061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6406295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.640643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6407475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.640756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6407706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.64161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6416295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.64164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6417475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.641756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6417706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.64261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6426326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.642646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6427475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.642756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6427706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.64361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6436295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.643643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6437475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.643757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.643770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.64461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6446295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.644643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6447475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.644756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6447706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.64561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6456295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.64564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6457475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.645756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6457706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.64661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.64662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.646643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6467475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.646756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6467706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.64761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6476295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.647643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6477475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.647757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.647770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.64861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6486295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.648643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6487475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.648756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6487706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.64961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6496295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.64964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6497475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.649756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6497706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.65061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.65062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.650643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6507475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.650756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6507706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.65161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6516295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.651643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6517475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.651757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.651770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.65261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6526295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.652643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6527475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.652756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6527706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.65361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 1.653629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.653638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 1.653652975 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 112, + "ts": 1.65367695 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.65369205 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.653706125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6537475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1980) example: Task[0x3ffb7f40]: allocated 112 bytes @ 0x3ffb87e4\n", + "ts": 1.6537684 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1980) example: Task[0x3ffb7f40]: allocated 112 bytes @ 0x3ffb87e4\n", + "ts": 1.6537684 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.653777475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 1.653785875 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6537964 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.653807175 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.65382015 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.65382885 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.65383675 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 1.653845425 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.653858175 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.653866425 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 1.653874725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.65388375 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.6538925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6539024 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.653917225 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1980) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.653966575 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1980) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.653966575 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.653985025 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 1.6540036 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.654016275 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.654025075 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.65404065 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.65461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 1.654629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6546388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 1.654652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 224, + "ts": 1.654677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.6546897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.654703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6547475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1981) example: Task[0x3ffb82a0]: allocated 224 bytes @ 0x3ffb4b10\n", + "ts": 1.654769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1981) example: Task[0x3ffb82a0]: allocated 224 bytes @ 0x3ffb4b10\n", + "ts": 1.654769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.654781225 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 1.654789725 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6548001 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.6548109 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.6548239 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.65483245 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6548404 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 1.654848975 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.654861625 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.654870025 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 1.654878325 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6548872 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.6548966 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.654905775 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.6549206 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1981) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.65496985 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1981) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.65496985 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.65498545 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 1.655006425 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.655019125 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.655027925 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6550435 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.65561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 1.655629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6556388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 1.655652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 336, + "ts": 1.655676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.655689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.655703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6557475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1982) example: Task[0x3ffb8600]: allocated 336 bytes @ 0x3ffb4b10\n", + "ts": 1.65576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1982) example: Task[0x3ffb8600]: allocated 336 bytes @ 0x3ffb4b10\n", + "ts": 1.65576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6557782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 1.6557867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.655797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.65580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.655820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.6558294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.655837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 1.65584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.6558586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.655866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 1.65587925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.655887275 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.655895725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.655905825 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.65592075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1982) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.6559701 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (1982) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.6559701 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.655985475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 1.6560036 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.656016425 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6560252 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.65604065 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.65661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.65662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.656643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6567475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.656756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6567706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.65761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6576295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.657643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6577475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.657757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.657770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.65861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6586295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.658643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6587475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.658756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6587706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.65961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6596295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.65964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6597475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.659756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6597706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.66061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6606326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.660646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6607475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.660756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6607706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.66161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6616295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.661643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6617475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.661757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.661770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.66261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6626295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.662643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6627475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.662756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6627706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.66361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6636295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.66364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6637475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.663756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6637706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.66461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.66462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.664643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6647475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.664756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6647706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.66561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6656295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.665643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6657475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.665757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.665770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.66661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6666295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.666643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6667475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.666756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6667706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.66761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6676295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.66764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6677475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.667756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6677706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.66861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.66862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.668643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6687475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.668756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6687706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.66961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6696295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.669643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6697475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.669757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.669770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.67061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6706295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.670643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6707475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.670756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6707706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.67161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6716295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.67164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6717475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.671756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6717706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.67261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.672633975 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6726476 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6727475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.672756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6727706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.67361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6736295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.673643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6737475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.673757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.673770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.67461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6746295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.674643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6747475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.674756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6747706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.67561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6756295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.67564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6757475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.675756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6757706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.67661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.67662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.676643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6767475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.676756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6767706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.67761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6776295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.677643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6777475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.677757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.677770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.67861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6786295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.678643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6787475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.678756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6787706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.67961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6796295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.67964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6797475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.679756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6797706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.68061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.68062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.680643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6807475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.680756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6807706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.68161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6816295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.681643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6817475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.681757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.681770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.68261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6826295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.682643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6827475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.682756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6827706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.68361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 1.683629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.683638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 1.683652975 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 114, + "ts": 1.68367695 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.68369205 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.683706125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6837475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2010) example: Task[0x3ffb7f40]: allocated 114 bytes @ 0x3ffb87e4\n", + "ts": 1.6837684 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2010) example: Task[0x3ffb7f40]: allocated 114 bytes @ 0x3ffb87e4\n", + "ts": 1.6837684 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.683777475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 1.683785875 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6837964 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.683807175 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.68382015 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.68382885 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.68383675 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 1.683845425 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.683858175 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.683866425 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 1.683874725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.68388375 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.6838925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6839024 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.683917225 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2010) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.683966575 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2010) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.683966575 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.683985025 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 1.6840036 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.684016275 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.684025075 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.68404065 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.68461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 1.684629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6846388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 1.684652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 228, + "ts": 1.684677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.6846897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.684703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6847475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2011) example: Task[0x3ffb82a0]: allocated 228 bytes @ 0x3ffb4b10\n", + "ts": 1.684769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2011) example: Task[0x3ffb82a0]: allocated 228 bytes @ 0x3ffb4b10\n", + "ts": 1.684769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.684781225 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 1.684789725 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6848001 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.6848109 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.6848239 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.68483245 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6848404 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 1.684848975 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.684861625 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.684870025 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 1.684878325 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6848872 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.6848966 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.684905775 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.6849206 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2011) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.68496985 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2011) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.68496985 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.68498545 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 1.685006425 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.685019125 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.685027925 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6850435 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.68561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 1.685629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6856388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 1.685652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 342, + "ts": 1.685676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.685689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.685703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6857475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2012) example: Task[0x3ffb8600]: allocated 342 bytes @ 0x3ffb4b10\n", + "ts": 1.68576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2012) example: Task[0x3ffb8600]: allocated 342 bytes @ 0x3ffb4b10\n", + "ts": 1.68576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6857782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 1.6857867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.685797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.68580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.685820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.6858294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.685837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 1.68584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.6858586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.685866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 1.68587925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.685887275 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.685895725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.685905825 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.68592075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2012) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.6859701 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2012) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.6859701 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.685985475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 1.6860036 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.686016425 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6860252 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.68604065 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.68661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.68662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.686643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6867475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.686756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6867706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.68761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6876295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.687643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6877475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.687757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.687770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.68861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6886295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.688643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6887475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.688756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6887706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.68961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6896295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.68964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6897475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.689756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6897706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.69061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6906326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.690646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6907475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.690756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6907706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.69161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6916295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.691643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6917475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.691757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.691770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.69261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6926295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.692643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6927475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.692756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6927706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.69361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6936295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.69364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6937475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.693756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6937706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.69461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.69462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.694643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6947475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.694756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6947706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.69561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6956295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.695643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6957475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.695757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.695770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.69661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6966295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.696643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6967475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.696756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6967706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.69761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6976295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.69764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6977475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.697756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6977706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.69861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.69862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.698643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6987475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.698756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.6987706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.69961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.6996295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.699643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.6997475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.699757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.699770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.70061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7006295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.700643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7007475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.700756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7007706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.70161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7016295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.70164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7017475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.701756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7017706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.70261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7026326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.702646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7027475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.702756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7027706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.70361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7036295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.703643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7037475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.703757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.703770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.70461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7046295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.704643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7047475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.704756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7047706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.70561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7056295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.70564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7057475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.705756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7057706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.70661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.70662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.706643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7067475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.706756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7067706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.70761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7076295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.707643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7077475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.707757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.707770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.70861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7086295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.708643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7087475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.708756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7087706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.70961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7096295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.70964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7097475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.709756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7097706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.71061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.71062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.710643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7107475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.710756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7107706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.71161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7116295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.711643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7117475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.711757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.711770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.71261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7126295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.712643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7127475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.712756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7127706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.71361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 1.713629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.713638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 1.713652975 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 116, + "ts": 1.71367695 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.713692625 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.7137067 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7137475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2040) example: Task[0x3ffb7f40]: allocated 116 bytes @ 0x3ffb87e4\n", + "ts": 1.7137688 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2040) example: Task[0x3ffb7f40]: allocated 116 bytes @ 0x3ffb87e4\n", + "ts": 1.7137688 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.71377705 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 1.7137852 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7137961 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.713806875 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.71381985 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.71382855 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.71383645 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 1.713845125 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.713857875 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.713866125 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 1.713874425 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.71388345 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.7138922 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7139021 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.713916925 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2040) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.713966275 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2040) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.713966275 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.713984725 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 1.714003275 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.714015975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.714024775 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.71404035 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.71461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 1.714629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7146388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 1.714652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 232, + "ts": 1.714677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.7146897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.714703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7147475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2041) example: Task[0x3ffb82a0]: allocated 232 bytes @ 0x3ffb4b10\n", + "ts": 1.714769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2041) example: Task[0x3ffb82a0]: allocated 232 bytes @ 0x3ffb4b10\n", + "ts": 1.714769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.71478005 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 1.71478905 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.71479895 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.714809725 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.71482275 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.714831275 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.71483925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 1.714847825 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.714860475 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.71486885 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 1.714877175 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.71488605 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.714895425 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.714904625 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.71491945 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2041) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.7149687 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2041) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.7149687 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.7149843 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 1.71500535 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.71501805 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.71502685 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.715042425 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.71561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 1.715629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7156388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 1.715652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 348, + "ts": 1.715676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.715689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.715703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7157475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2042) example: Task[0x3ffb8600]: allocated 348 bytes @ 0x3ffb4b10\n", + "ts": 1.71576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2042) example: Task[0x3ffb8600]: allocated 348 bytes @ 0x3ffb4b10\n", + "ts": 1.71576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7157782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 1.7157867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.715797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.71580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.715820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.7158294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.715837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 1.71584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.7158586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.715866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 1.71587925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.715887275 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.715895725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.715905825 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.71592075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2042) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.7159701 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2042) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.7159701 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.715985475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 1.7160036 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.716016425 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7160252 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.71604065 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.71661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.71662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.716643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7167475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.716756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7167706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.71761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7176295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.717643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7177475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.717757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.717770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.71861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7186295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.718643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7187475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.718756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7187706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.71961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7196295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.71964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7197475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.719756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7197706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.72061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7206326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.720646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7207475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.720756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7207706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.72161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7216295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.721643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7217475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.721757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.721770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.72261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7226295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.722643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7227475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.722756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7227706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.72361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7236295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.72364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7237475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.723756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7237706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.72461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.72462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.724643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7247475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.724756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7247706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.72561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7256295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.725643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7257475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.725757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.725770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.72661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7266295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.726643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7267475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.726756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7267706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.72761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7276295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.72764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7277475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.727756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7277706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.72861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.72862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.728643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7287475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.728756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7287706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.72961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7296295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.729643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7297475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.729757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.729770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.73061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7306295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.730643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7307475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.730756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7307706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.73161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7316295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.73164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7317475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.731756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7317706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.73261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.732631925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.73264555 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7327475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.732756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7327706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.73361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7336295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.733643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7337475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.733757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.733770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.73461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7346295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.734643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7347475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.734756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7347706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.73561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7356295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.73564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7357475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.735756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7357706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.73661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.73662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.736643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7367475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.736756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7367706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.73761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7376295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.737643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7377475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.737757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.737770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.73861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7386295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.738643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7387475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.738756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7387706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.73961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7396295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.73964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7397475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.739756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7397706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.74061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.74062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.740643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7407475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.740756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7407706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.74161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7416295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.741643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7417475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.741757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.741770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.74261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7426295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.742643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7427475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.742756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7427706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.74361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 1.743629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.743638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 1.743652975 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 118, + "ts": 1.74367695 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.743692725 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.7437068 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7437475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2070) example: Task[0x3ffb7f40]: allocated 118 bytes @ 0x3ffb87e4\n", + "ts": 1.743768825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2070) example: Task[0x3ffb7f40]: allocated 118 bytes @ 0x3ffb87e4\n", + "ts": 1.743768825 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.743778075 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 1.743786225 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.743796875 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.743807675 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.74382065 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.74382935 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.74383725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 1.743845925 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.74385865 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.743866925 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 1.743875225 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.74388425 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.743892975 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7439029 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.743917725 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2070) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.743967075 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2070) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.743967075 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.743985525 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 1.744004075 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.744016775 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.744025575 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.74404115 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.74461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 1.744629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7446388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 1.744652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 236, + "ts": 1.744677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.7446897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.744703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7447475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2071) example: Task[0x3ffb82a0]: allocated 236 bytes @ 0x3ffb4b10\n", + "ts": 1.744769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2071) example: Task[0x3ffb82a0]: allocated 236 bytes @ 0x3ffb4b10\n", + "ts": 1.744769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.744781225 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 1.744789725 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7448001 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.7448109 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.7448239 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.74483245 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7448404 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 1.744848975 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.744861625 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.744870025 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 1.744878325 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7448872 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.7448966 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.744905775 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.7449206 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2071) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.74496985 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2071) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.74496985 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.74498545 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 1.745006525 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.745019225 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.745028025 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7450436 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.74561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 1.745629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7456388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 1.745652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 354, + "ts": 1.745676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.745689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.745703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7457475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2072) example: Task[0x3ffb8600]: allocated 354 bytes @ 0x3ffb4b10\n", + "ts": 1.74576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2072) example: Task[0x3ffb8600]: allocated 354 bytes @ 0x3ffb4b10\n", + "ts": 1.74576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7457782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 1.7457867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.745797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.74580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.745820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.7458294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.745837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 1.74584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.7458586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.745866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 1.745878175 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.74588635 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.745894725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.745904975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.745919925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2072) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.745969275 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2072) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.745969275 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.74598465 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 1.746002775 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.7460156 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.74602435 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7460398 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.74661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.74662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.746643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7467475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.746756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7467706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.74761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7476295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.747643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7477475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.747757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.747770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.74861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7486295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.748643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7487475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.748756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7487706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.74961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7496295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.74964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7497475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.749756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7497706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.75061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7506326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.750646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7507475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.750756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7507706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.75161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7516295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.751643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7517475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.751757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.751770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.75261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7526295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.752643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7527475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.752756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7527706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.75361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7536295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.75364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7537475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.753756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7537706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.75461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.75462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.754643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7547475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.754756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7547706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.75561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7556295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.755643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7557475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.755757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.755770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.75661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7566295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.756643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7567475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.756756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7567706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.75761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7576295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.75764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7577475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.757756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7577706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.75861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.75862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.758643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7587475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.758756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7587706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.75961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7596295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.759643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7597475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.759757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.759770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.76061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7606295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.760643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7607475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.760756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7607706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.76161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7616295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.76164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7617475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.761756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7617706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.76261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7626326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.762646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7627475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.762756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7627706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.76361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7636295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.763643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7637475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.763757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.763770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.76461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7646295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.764643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7647475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.764756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7647706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.76561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7656295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.76564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7657475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.765756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7657706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.76661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.76662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.766643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7667475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.766756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7667706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.76761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7676295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.767643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7677475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.767757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.767770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.76861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7686295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.768643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7687475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.768756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7687706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.76961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7696295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.76964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7697475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.769756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7697706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.77061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.77062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.770643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7707475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.770756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7707706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.77161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7716295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.771643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7717475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.771757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.771770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.77261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7726295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.772643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7727475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.772756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7727706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.77361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 1.773629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.773638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 1.773652975 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 120, + "ts": 1.77367695 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.773692725 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.7737068 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7737475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2100) example: Task[0x3ffb7f40]: allocated 120 bytes @ 0x3ffb87e4\n", + "ts": 1.773768825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2100) example: Task[0x3ffb7f40]: allocated 120 bytes @ 0x3ffb87e4\n", + "ts": 1.773768825 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.773778075 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 1.773786225 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.773796875 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.77380765 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.773820625 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.773829325 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.773837225 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 1.7738459 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.77385865 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.7738669 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 1.7738752 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.773884225 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.773892975 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.773902875 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.7739177 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2100) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.77396705 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2100) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.77396705 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.773984825 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 1.7740034 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.774016075 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.774024875 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.77404045 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.77461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 1.774629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7746388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 1.774652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 240, + "ts": 1.774677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.7746897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.774703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7747475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2101) example: Task[0x3ffb82a0]: allocated 240 bytes @ 0x3ffb4b10\n", + "ts": 1.774769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2101) example: Task[0x3ffb82a0]: allocated 240 bytes @ 0x3ffb4b10\n", + "ts": 1.774769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.77478125 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 1.77478975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.774800125 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.7748109 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.774823925 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.77483245 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.774840425 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 1.774849 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.77486165 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.774870025 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 1.77487835 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.774887225 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.7748966 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7749058 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.774920625 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2101) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.774969875 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2101) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.774969875 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.774985475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 1.775005825 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.775018525 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.775027325 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7750429 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.77561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 1.775629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7756388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 1.775652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 360, + "ts": 1.775676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.775689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.775703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7757475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2102) example: Task[0x3ffb8600]: allocated 360 bytes @ 0x3ffb4b10\n", + "ts": 1.77576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2102) example: Task[0x3ffb8600]: allocated 360 bytes @ 0x3ffb4b10\n", + "ts": 1.77576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7757782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 1.7757867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.775797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.77580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.775820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.7758294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.775837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 1.77584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.7758586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.775866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 1.7758792 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.775887225 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.775895675 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7759058 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.775920725 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2102) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.775970075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2102) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.775970075 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.77598545 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 1.776003575 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.7760164 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.776025175 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.776040625 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.77661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.77662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.776643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7767475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.776756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7767706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.77761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7776295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.777643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7777475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.777757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.777770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.77861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7786295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.778643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7787475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.778756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7787706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.77961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7796295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.77964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7797475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.779756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7797706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.78061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.780631925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.78064555 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7807475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.780756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7807706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.78161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7816295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.781643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7817475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.781757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.781770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.78261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7826295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.782643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7827475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.782756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7827706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.78361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7836295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.78364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7837475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.783756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7837706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.78461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.78462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.784643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7847475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.784756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7847706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.78561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7856295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.785643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7857475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.785757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.785770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.78661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7866295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.786643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7867475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.786756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7867706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.78761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7876295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.78764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7877475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.787756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7877706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.78861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.78862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.788643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7887475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.788756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7887706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.78961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7896295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.789643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7897475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.789757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.789770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.79061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7906295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.790643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7907475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.790756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7907706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.79161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7916295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.79164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7917475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.791756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7917706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.79261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7926326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.792646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7927475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.792756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7927706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.79361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7936295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.793643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7937475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.793757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.793770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.79461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7946295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.794643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7947475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.794756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7947706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.79561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7956295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.79564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7957475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.795756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7957706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.79661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.79662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.796643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7967475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.796756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7967706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.79761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7976295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.797643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7977475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.797757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.797770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.79861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7986295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.798643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7987475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.798756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7987706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.79961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.7996295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.79964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.7997475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.799756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.7997706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.80061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.80062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.800643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8007475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.800756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8007706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.80161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8016295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.801643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8017475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.801757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.801770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.80261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8026295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.802643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8027475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.802756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8027706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.80361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 1.803629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.803638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 1.803652975 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 122, + "ts": 1.80367695 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.80369205 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.803706125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8037475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2130) example: Task[0x3ffb7f40]: allocated 122 bytes @ 0x3ffb87e4\n", + "ts": 1.8037684 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2130) example: Task[0x3ffb7f40]: allocated 122 bytes @ 0x3ffb87e4\n", + "ts": 1.8037684 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.803777475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 1.803785875 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8037964 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.803807175 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.80382015 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.80382885 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.80383675 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 1.803845425 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.803858175 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.803866425 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 1.8038747 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.803883725 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.80389245 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.80390235 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.803917175 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2130) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.803966525 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2130) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.803966525 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.803984975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 1.80400355 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.804016225 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.804025025 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8040406 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.80461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 1.804629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8046388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 1.804652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 244, + "ts": 1.804677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.8046897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.804703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8047475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2131) example: Task[0x3ffb82a0]: allocated 244 bytes @ 0x3ffb4b10\n", + "ts": 1.804769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2131) example: Task[0x3ffb82a0]: allocated 244 bytes @ 0x3ffb4b10\n", + "ts": 1.804769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.804781225 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 1.804789725 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8048001 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.8048109 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.8048239 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.80483245 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8048404 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 1.804848975 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.804861625 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.804870025 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 1.804878275 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.80488715 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.8048965 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8049057 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.804920525 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2131) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.804969775 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2131) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.804969775 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.804985375 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 1.80500635 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.805019025 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.805027825 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8050434 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.80561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 1.805629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8056388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 1.805652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 366, + "ts": 1.805676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.805689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.805703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8057475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2132) example: Task[0x3ffb8600]: allocated 366 bytes @ 0x3ffb4b10\n", + "ts": 1.80576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2132) example: Task[0x3ffb8600]: allocated 366 bytes @ 0x3ffb4b10\n", + "ts": 1.80576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8057782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 1.8057867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.805797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.80580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.805820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.8058294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.805837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 1.80584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.8058586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.805866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 1.805879175 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8058872 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.80589565 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.80590575 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.805920675 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2132) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.805970025 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2132) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.805970025 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.8059854 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 1.806003525 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.80601635 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.806025125 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.806040575 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.80661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.80662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.806643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8067475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.806756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8067706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.80761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8076295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.807643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8077475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.807757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.807770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.80861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8086295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.808643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8087475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.808756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8087706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.80961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8096295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.80964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8097475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.809756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8097706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.81061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8106326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.810646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8107475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.810756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8107706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.81161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8116295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.811643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8117475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.811757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.811770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.81261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8126295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.812643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8127475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.812756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8127706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.81361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8136295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.81364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8137475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.813756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8137706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.81461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.81462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.814643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8147475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.814756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8147706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.81561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8156295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.815643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8157475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.815757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.815770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.81661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8166295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.816643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8167475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.816756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8167706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.81761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8176295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.81764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8177475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.817756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8177706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.81861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.81862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.818643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8187475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.818756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8187706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.81961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8196295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.819643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8197475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.819757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.819770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.82061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8206295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.820643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8207475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.820756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8207706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.82161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8216295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.82164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8217475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.821756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8217706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.82261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8226326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.822646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8227475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.822756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8227706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.82361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8236295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.823643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8237475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.823757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.823770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.82461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8246295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.824643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8247475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.824756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8247706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.82561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8256295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.82564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8257475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.825756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8257706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.82661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.82662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.826643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8267475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.826756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8267706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.82761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8276295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.827643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8277475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.827757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.827770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.82861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8286295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.828643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8287475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.828756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8287706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.82961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8296295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.82964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8297475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.829756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8297706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.83061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.83062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.830643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8307475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.830756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8307706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.83161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8316295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.831643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8317475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.831757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.831770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.83261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8326295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.832643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8327475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.832756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8327706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.83361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 1.833629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.833638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 1.833652975 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 124, + "ts": 1.83367695 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.833692625 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.8337067 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8337475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2160) example: Task[0x3ffb7f40]: allocated 124 bytes @ 0x3ffb87e4\n", + "ts": 1.8337688 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2160) example: Task[0x3ffb7f40]: allocated 124 bytes @ 0x3ffb87e4\n", + "ts": 1.8337688 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.83377705 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 1.8337852 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8337961 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.833806875 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.83381985 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.83382855 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.83383645 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 1.833845125 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.833857875 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.833866125 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 1.833874425 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.83388345 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.8338922 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8339021 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.833916925 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2160) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.833966275 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2160) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.833966275 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.833984725 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 1.834003275 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.834015975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.834024775 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.83404035 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.83461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 1.834629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8346388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 1.834652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 248, + "ts": 1.834677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.8346897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.834703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8347475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2161) example: Task[0x3ffb82a0]: allocated 248 bytes @ 0x3ffb4b10\n", + "ts": 1.834769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2161) example: Task[0x3ffb82a0]: allocated 248 bytes @ 0x3ffb4b10\n", + "ts": 1.834769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.83478005 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 1.83478905 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.83479895 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.834809725 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.83482275 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.834831275 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.83483925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 1.834847825 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.834860475 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.83486885 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 1.834877175 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.83488605 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.834895425 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.834904625 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.83491945 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2161) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.8349687 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2161) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.8349687 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.8349843 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 1.83500535 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.83501805 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.83502685 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.835042425 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.83561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 1.835629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8356388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 1.835652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 372, + "ts": 1.835676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.835689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.835703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8357475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2162) example: Task[0x3ffb8600]: allocated 372 bytes @ 0x3ffb4b10\n", + "ts": 1.83576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2162) example: Task[0x3ffb8600]: allocated 372 bytes @ 0x3ffb4b10\n", + "ts": 1.83576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8357782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 1.8357867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.835797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.83580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.835820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.8358294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.835837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 1.83584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.8358586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.835866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 1.83587925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.835887275 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.835895725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.835905825 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.83592075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2162) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.8359701 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2162) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.8359701 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.835985475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 1.8360036 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.836016425 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8360252 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.83604065 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.83661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.83662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.836643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8367475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.836756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8367706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.83761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8376295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.837643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8377475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.837757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.837770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.83861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8386295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.838643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8387475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.838756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8387706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.83961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8396295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.83964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8397475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.839756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8397706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.84061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8406326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.840646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8407475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.840756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8407706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.84161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8416295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.841643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8417475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.841757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.841770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.84261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8426295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.842643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8427475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.842756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8427706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.84361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8436295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.84364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8437475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.843756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8437706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.84461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.84462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.844643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8447475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.844756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8447706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.84561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8456295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.845643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8457475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.845757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.845770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.84661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8466295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.846643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8467475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.846756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8467706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.84761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8476295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.84764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8477475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.847756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8477706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.84861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.84862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.848643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8487475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.848756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8487706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.84961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8496295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.849643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8497475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.849757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.849770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.85061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8506295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.850643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8507475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.850756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8507706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.85161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8516295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.85164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8517475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.851756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8517706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.85261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.852631925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.85264555 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8527475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.852756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8527706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.85361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8536295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.853643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8537475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.853757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.853770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.85461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8546295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.854643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8547475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.854756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8547706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.85561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8556295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.85564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8557475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.855756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8557706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.85661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.85662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.856643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8567475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.856756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8567706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.85761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8576295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.857643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8577475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.857757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.857770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.85861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8586295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.858643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8587475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.858756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8587706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.85961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8596295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.85964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8597475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.859756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8597706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.86061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.86062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.860643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8607475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.860756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8607706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.86161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8616295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.861643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8617475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.861757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.861770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.86261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8626295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.862643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8627475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.862756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8627706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.86361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 1.863629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.863638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 1.863652975 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 126, + "ts": 1.86367695 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.863692725 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.8637068 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8637475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2190) example: Task[0x3ffb7f40]: allocated 126 bytes @ 0x3ffb87e4\n", + "ts": 1.863768825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2190) example: Task[0x3ffb7f40]: allocated 126 bytes @ 0x3ffb87e4\n", + "ts": 1.863768825 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.863778075 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 1.863786225 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.863796875 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.863807675 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.86382065 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.86382935 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.86383725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 1.863845925 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.86385865 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.863866925 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 1.863875225 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.86388425 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.863892975 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8639029 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.863917725 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2190) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.863967075 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2190) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.863967075 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.863985525 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 1.864004075 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.864016775 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.864025575 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.86404115 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.86461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 1.864629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8646388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 1.864652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 252, + "ts": 1.864677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.8646897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.864703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8647475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2191) example: Task[0x3ffb82a0]: allocated 252 bytes @ 0x3ffb4b10\n", + "ts": 1.864769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2191) example: Task[0x3ffb82a0]: allocated 252 bytes @ 0x3ffb4b10\n", + "ts": 1.864769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.864781225 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 1.864789725 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8648001 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.8648109 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.8648239 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.86483245 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8648404 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 1.864848975 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.864861625 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.864870025 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 1.864878325 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8648872 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.8648966 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.864905775 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.8649206 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2191) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.86496985 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2191) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.86496985 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.86498545 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 1.865006525 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.865019225 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.865028025 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8650436 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.86561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 1.865629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8656388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 1.865652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 378, + "ts": 1.865676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.865689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.865703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8657475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2192) example: Task[0x3ffb8600]: allocated 378 bytes @ 0x3ffb4b10\n", + "ts": 1.86576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2192) example: Task[0x3ffb8600]: allocated 378 bytes @ 0x3ffb4b10\n", + "ts": 1.86576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8657782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 1.8657867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.865797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.86580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.865820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.8658294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.865837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 1.86584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.8658586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.865866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 1.865878175 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.86588635 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.865894725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.865904975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.865919925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2192) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.865969275 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2192) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.865969275 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.86598465 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 1.866002775 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.8660156 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.86602435 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8660398 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.86661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.86662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.866643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8667475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.866756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8667706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.86761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8676295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.867643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8677475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.867757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.867770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.86861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8686295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.868643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8687475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.868756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8687706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.86961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8696295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.86964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8697475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.869756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8697706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.87061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8706326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.870646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8707475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.870756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8707706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.87161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8716295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.871643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8717475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.871757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.871770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.87261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8726295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.872643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8727475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.872756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8727706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.87361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8736295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.87364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8737475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.873756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8737706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.87461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.87462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.874643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8747475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.874756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8747706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.87561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8756295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.875643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8757475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.875757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.875770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.87661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8766295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.876643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8767475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.876756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8767706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.87761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8776295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.87764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8777475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.877756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8777706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.87861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.87862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.878643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8787475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.878756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8787706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.87961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8796295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.879643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8797475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.879757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.879770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.88061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8806295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.880643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8807475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.880756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8807706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.88161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8816295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.88164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8817475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.881756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8817706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.88261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8826326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.882646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8827475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.882756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8827706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.88361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8836295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.883643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8837475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.883757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.883770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.88461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8846295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.884643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8847475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.884756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8847706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.88561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8856295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.88564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8857475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.885756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8857706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.88661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.88662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.886643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8867475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.886756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8867706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.88761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8876295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.887643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8877475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.887757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.887770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.88861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8886295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.888643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8887475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.888756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8887706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.88961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8896295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.88964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8897475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.889756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8897706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.89061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.89062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.890643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8907475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.890756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8907706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.89161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8916295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.891643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8917475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.891757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.891770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.89261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8926295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.892643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8927475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.892756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8927706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.89361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 1.893629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.893638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 1.893652975 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 128, + "ts": 1.893677025 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.8936928 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.8937068 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8937475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2220) example: Task[0x3ffb7f40]: allocated 128 bytes @ 0x3ffb87e4\n", + "ts": 1.89376885 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2220) example: Task[0x3ffb7f40]: allocated 128 bytes @ 0x3ffb87e4\n", + "ts": 1.89376885 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8937769 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 1.893785925 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8937958 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.893806575 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.8938196 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.893828125 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.893836075 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 1.8938446 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.893857225 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.893865625 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 1.893873925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8938828 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.8938922 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8939015 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.893916325 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2220) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.893965575 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2220) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.893965575 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.893983375 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 1.894001925 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.894014625 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.894023425 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.894039 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.89461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 1.894629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8946388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 1.894652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 256, + "ts": 1.894677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.8946897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.894703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8947475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2221) example: Task[0x3ffb82a0]: allocated 256 bytes @ 0x3ffb4b10\n", + "ts": 1.894769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2221) example: Task[0x3ffb82a0]: allocated 256 bytes @ 0x3ffb4b10\n", + "ts": 1.894769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.894781225 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 1.894789725 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8948001 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.8948109 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.8948239 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.89483245 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8948404 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 1.894848975 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.894861625 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.894870025 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 1.894878325 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8948872 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.8948966 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.894905775 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.8949206 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2221) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.89496985 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2221) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.89496985 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.89498545 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 1.895006525 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.895019225 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.895028025 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8950436 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.89561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 1.895629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8956388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 1.895652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 384, + "ts": 1.895676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.895689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.895703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8957475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2222) example: Task[0x3ffb8600]: allocated 384 bytes @ 0x3ffb4b10\n", + "ts": 1.89576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2222) example: Task[0x3ffb8600]: allocated 384 bytes @ 0x3ffb4b10\n", + "ts": 1.89576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8957782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 1.8957867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.895797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.89580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.895820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.8958294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.895837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 1.89584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.8958586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.895866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 1.895878175 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.89588635 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.895894725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.895904975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.895919925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2222) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.895969275 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2222) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.895969275 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.89598465 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 1.896002775 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.8960156 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.89602435 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8960398 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.89661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.89662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.896643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8967475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.896756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8967706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.89761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8976295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.897643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8977475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.897757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.897770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.89861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8986295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.898643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8987475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.898756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8987706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.89961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.8996295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.89964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.8997475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.899756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.8997706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.90061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9006326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.900646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9007475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.900756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9007706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.90161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9016295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.901643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9017475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.901757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.901770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.90261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9026295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.902643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9027475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.902756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9027706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.90361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9036295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.90364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9037475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.903756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9037706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.90461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.90462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.904643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9047475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.904756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9047706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.90561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9056295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.905643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9057475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.905757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.905770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.90661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9066295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.906643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9067475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.906756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9067706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.90761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9076295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.90764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9077475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.907756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9077706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.90861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.90862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.908643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9087475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.908756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9087706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.90961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9096295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.909643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9097475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.909757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.909770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.91061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9106295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.910643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9107475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.910756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9107706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.91161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9116295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.91164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9117475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.911756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9117706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.91261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9126326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.912646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9127475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.912756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9127706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.91361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9136295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.913643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9137475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.913757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.913770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.91461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9146295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.914643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9147475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.914756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9147706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.91561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9156295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.91564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9157475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.915756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9157706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.91661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.91662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.916643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9167475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.916756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9167706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.91761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9176295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.917643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9177475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.917757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.917770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.91861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9186295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.918643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9187475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.918756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9187706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.91961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9196295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.91964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9197475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.919756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9197706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.92061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.92062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.920643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9207475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.920756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9207706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.92161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9216295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.921643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9217475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.921757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.921770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.92261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9226295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.922643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9227475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.922756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9227706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.92361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 1.923629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.923638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 1.923652975 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 130, + "ts": 1.923676825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.9236926 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.9237066 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9237475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2250) example: Task[0x3ffb7f40]: allocated 130 bytes @ 0x3ffb87e4\n", + "ts": 1.923768875 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2250) example: Task[0x3ffb7f40]: allocated 130 bytes @ 0x3ffb87e4\n", + "ts": 1.923768875 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9237772 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 1.923785925 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.923796075 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.92380685 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.923819875 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.9238284 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.92383635 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 1.923844875 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.9238575 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.9238659 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 1.9238742 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.923883075 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.923892475 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.923901775 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.9239166 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2250) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.92396585 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2250) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.92396585 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.92398365 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 1.924001625 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.924014325 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.924023125 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9240387 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.92461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 1.924629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9246388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 1.924652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 260, + "ts": 1.924677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.9246897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.924703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9247475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2251) example: Task[0x3ffb82a0]: allocated 260 bytes @ 0x3ffb4b10\n", + "ts": 1.924769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2251) example: Task[0x3ffb82a0]: allocated 260 bytes @ 0x3ffb4b10\n", + "ts": 1.924769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.924781225 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 1.924789725 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9248001 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.9248109 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.9248239 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.92483245 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9248404 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 1.924848975 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.924861625 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.924870025 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 1.924878325 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9248872 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.9248966 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.924905775 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.9249206 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2251) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.92496985 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2251) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.92496985 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.92498545 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 1.925006525 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.925019225 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.925028025 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9250436 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.92561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 1.925629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9256388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 1.925652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 390, + "ts": 1.925676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.925689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.925703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9257475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2252) example: Task[0x3ffb8600]: allocated 390 bytes @ 0x3ffb4b10\n", + "ts": 1.92576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2252) example: Task[0x3ffb8600]: allocated 390 bytes @ 0x3ffb4b10\n", + "ts": 1.92576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9257782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 1.9257867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.925797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.92580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.925820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.9258294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.925837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 1.92584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.9258586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.925866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 1.925878175 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.92588635 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.925894725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.925904975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.925919925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2252) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.925969275 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2252) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.925969275 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.92598465 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 1.926002775 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.9260156 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.92602435 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9260398 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.92661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.92662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.926643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9267475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.926756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9267706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.92761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9276295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.927643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9277475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.927757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.927770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.92861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9286295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.928643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9287475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.928756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9287706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.92961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9296295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.92964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9297475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.929756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9297706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.93061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9306326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.930646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9307475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.930756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9307706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.93161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9316295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.931643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9317475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.931757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.931770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.93261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9326295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.932643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9327475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.932756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9327706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.93361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9336295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.93364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9337475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.933756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9337706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.93461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.93462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.934643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9347475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.934756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9347706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.93561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9356295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.935643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9357475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.935757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.935770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.93661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9366295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.936643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9367475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.936756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9367706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.93761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9376295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.93764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9377475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.937756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9377706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.93861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.93862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.938643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9387475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.938756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9387706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.93961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9396295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.939643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9397475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.939757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.939770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.94061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9406295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.940643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9407475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.940756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9407706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.94161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9416295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.94164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9417475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.941756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9417706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.94261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9426326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.942646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9427475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.942756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9427706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.94361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9436295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.943643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9437475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.943757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.943770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.94461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9446295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.944643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9447475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.944756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9447706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.94561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9456295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.94564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9457475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.945756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9457706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.94661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.94662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.946643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9467475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.946756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9467706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.94761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9476295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.947643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9477475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.947757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.947770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.94861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9486295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.948643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9487475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.948756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9487706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.94961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9496295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.94964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9497475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.949756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9497706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.95061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.95062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.950643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9507475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.950756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9507706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.95161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9516295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.951643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9517475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.951757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.951770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.95261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9526295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.952643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9527475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.952756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9527706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.95361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 1.953629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.953638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 1.953652975 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 132, + "ts": 1.953676825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.9536926 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.9537066 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9537475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2280) example: Task[0x3ffb7f40]: allocated 132 bytes @ 0x3ffb87e4\n", + "ts": 1.953768875 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2280) example: Task[0x3ffb7f40]: allocated 132 bytes @ 0x3ffb87e4\n", + "ts": 1.953768875 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9537772 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 1.953785925 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.953796075 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.95380685 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.953819875 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.9538284 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.95383635 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 1.953844875 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.9538575 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.9538659 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 1.9538742 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.953883075 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.953892475 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.953901775 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.9539166 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2280) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.95396585 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2280) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.95396585 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.95398365 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 1.954001625 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.954014325 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.954023125 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9540387 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.95461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 1.954629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9546388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 1.954652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 264, + "ts": 1.954677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.9546897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.954703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9547475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2281) example: Task[0x3ffb82a0]: allocated 264 bytes @ 0x3ffb4b10\n", + "ts": 1.954769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2281) example: Task[0x3ffb82a0]: allocated 264 bytes @ 0x3ffb4b10\n", + "ts": 1.954769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.954781225 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 1.954789725 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9548001 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.9548109 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.9548239 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.95483245 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9548404 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 1.954848975 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.954861625 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.954870025 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 1.954878325 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9548872 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.9548966 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.954905775 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.9549206 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2281) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.95496985 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2281) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.95496985 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.95498545 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 1.9550079 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.9550206 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9550294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.955044975 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.95561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 1.955629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9556388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 1.955652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 396, + "ts": 1.955676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.955689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.955703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9557475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2282) example: Task[0x3ffb8600]: allocated 396 bytes @ 0x3ffb4b10\n", + "ts": 1.95576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2282) example: Task[0x3ffb8600]: allocated 396 bytes @ 0x3ffb4b10\n", + "ts": 1.95576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9557782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 1.9557867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.955797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.95580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.955820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.9558294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.955837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 1.95584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.9558586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.955866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 1.95587925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.955887275 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.955895725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.955905825 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.95592075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2282) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.9559701 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2282) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.9559701 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.955985475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 1.9560036 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.956016425 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9560252 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.95604065 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.95661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.95662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.956643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9567475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.956756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9567706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.95761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9576295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.957643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9577475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.957757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.957770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.95861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9586295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.958643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9587475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.958756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9587706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.95961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9596295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.95964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9597475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.959756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9597706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.96061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9606326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.960646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9607475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.960756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9607706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.96161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9616295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.961643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9617475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.961757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.961770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.96261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9626295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.962643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9627475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.962756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9627706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.96361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9636295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.96364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9637475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.963756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9637706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.96461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.96462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.964643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9647475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.964756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9647706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.96561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9656295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.965643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9657475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.965757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.965770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.96661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9666295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.966643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9667475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.966756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9667706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.96761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9676295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.96764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9677475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.967756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9677706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.96861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.96862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.968643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9687475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.968756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9687706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.96961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9696295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.969643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9697475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.969757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.969770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.97061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9706295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.970643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9707475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.970756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9707706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.97161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9716295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.97164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9717475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.971756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9717706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.97261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.972631925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.97264555 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9727475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.972756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9727706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.97361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9736295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.973643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9737475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.973757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.973770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.97461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9746295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.974643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9747475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.974756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9747706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.97561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9756295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.97564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9757475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.975756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9757706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.97661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.97662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.976643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9767475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.976756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9767706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.97761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9776295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.977643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9777475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.977757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.977770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.97861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9786295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.978643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9787475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.978756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9787706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.97961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9796295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.97964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9797475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.979756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9797706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.98061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.98062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.980643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9807475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.980756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9807706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.98161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9816295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.981643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9817475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.981757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.981770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.98261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9826295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.982643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9827475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.982756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9827706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.98361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 1.983629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.983638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 1.983652975 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 134, + "ts": 1.98367625 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.98369205 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.983706025 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9837475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2310) example: Task[0x3ffb7f40]: allocated 134 bytes @ 0x3ffb87e4\n", + "ts": 1.98376835 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2310) example: Task[0x3ffb7f40]: allocated 134 bytes @ 0x3ffb87e4\n", + "ts": 1.98376835 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9837775 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 1.9837858 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9837964 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.983807175 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.9838202 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.983828725 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.983836675 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 1.9838452 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 1.983857825 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.983866225 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 1.983874525 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9838834 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.9838928 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9839021 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.983916925 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2310) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.983966175 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2310) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 1.983966175 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.98398465 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 1.984002625 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.984015325 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.984024125 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9840397 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.98461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 1.984629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9846388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 1.984652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 268, + "ts": 1.984677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.9846897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.984703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9847475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2311) example: Task[0x3ffb82a0]: allocated 268 bytes @ 0x3ffb4b10\n", + "ts": 1.984769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2311) example: Task[0x3ffb82a0]: allocated 268 bytes @ 0x3ffb4b10\n", + "ts": 1.984769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.98478005 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 1.98478905 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.98479895 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.984809725 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.98482275 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.984831275 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.98483925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 1.984847825 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 1.984860475 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.98486885 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 1.984877175 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.98488605 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.984895425 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.984904625 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.98491945 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2311) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.9849687 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2311) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 1.9849687 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.9849843 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 1.98500535 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.98501805 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.98502685 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.985042425 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.98561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 1.985629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9856388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 1.985652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 402, + "ts": 1.985676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.985689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.985703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9857475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2312) example: Task[0x3ffb8600]: allocated 402 bytes @ 0x3ffb4b10\n", + "ts": 1.98576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2312) example: Task[0x3ffb8600]: allocated 402 bytes @ 0x3ffb4b10\n", + "ts": 1.98576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9857782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 1.9857867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.985797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.98580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.985820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 1.9858294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.985837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 1.98584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 1.9858586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 1.985866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 1.98587925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.985887275 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 1.985895725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.985905825 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 1.98592075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2312) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.9859701 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2312) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 1.9859701 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 1.985985475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 1.9860036 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 1.986016425 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9860252 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.98604065 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.98661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.98662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.986643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9867475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.986756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9867706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.98761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9876295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.987643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9877475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.987757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.987770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.98861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9886295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.988643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9887475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.988756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9887706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.98961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9896295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.98964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9897475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.989756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9897706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.99061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9906326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.990646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9907475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.990756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9907706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.99161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9916295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.991643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9917475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.991757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.991770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.99261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9926295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.992643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9927475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.992756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9927706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.99361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9936295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.99364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9937475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.993756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9937706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.99461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.99462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.994643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9947475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.994756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9947706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.99561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9956295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.995643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9957475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.995757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.995770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.99661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9966295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.996643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9967475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.996756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9967706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.99761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9976295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.99764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9977475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.997756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9977706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.99861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.99862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.998643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9987475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.998756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.9987706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.99961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.9996295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.999643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 1.9997475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 1.999757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 1.999770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.00061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0006295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.000643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0007475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.000756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0007706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.00161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0016295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.00164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0017475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.001756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0017706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.00261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.002631925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.00264555 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0027475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.002756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0027706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.00361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0036295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.003643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0037475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.003757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.003770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.00461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0046295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.004643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0047475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.004756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0047706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.00561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0056295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.00564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0057475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.005756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0057706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.00661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.00662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.006643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0067475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.006756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0067706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.00761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0076295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.007643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0077475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.007757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.007770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.00861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0086295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.008643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0087475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.008756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0087706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.00961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0096295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.00964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0097475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.009756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0097706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.01061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.01062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.010643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0107475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.010756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0107706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.01161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0116295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.011643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0117475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.011757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.011770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.01261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0126295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.012643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0127475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.012756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0127706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.01361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 2.013629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.013638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 2.013652975 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 136, + "ts": 2.01367625 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.01369205 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.013706025 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0137475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2340) example: Task[0x3ffb7f40]: allocated 136 bytes @ 0x3ffb87e4\n", + "ts": 2.01376835 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2340) example: Task[0x3ffb7f40]: allocated 136 bytes @ 0x3ffb87e4\n", + "ts": 2.01376835 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0137775 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 2.0137858 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0137964 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 2.013807175 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.0138202 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.013828725 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.013836675 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 2.0138452 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 2.013857825 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.013866225 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 2.013874525 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0138834 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.0138928 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0139021 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.013916925 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2340) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 2.013966175 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2340) example: Task[0x3ffb8124]: free memory @ 0x3ffb87e4\n", + "ts": 2.013966175 + }, + { + "addr": "0x3ffb87e4", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.01398465 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 2.014002625 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.014015325 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.014024125 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0140397 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.01461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 2.014629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0146388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 2.014652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 272, + "ts": 2.014677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.0146897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.014703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0147475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2341) example: Task[0x3ffb82a0]: allocated 272 bytes @ 0x3ffb4b10\n", + "ts": 2.014769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2341) example: Task[0x3ffb82a0]: allocated 272 bytes @ 0x3ffb4b10\n", + "ts": 2.014769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.01478005 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 2.01478905 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.01479895 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 2.014809725 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.01482275 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.014831275 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.01483925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 2.014847825 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 2.014860475 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.01486885 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 2.014877175 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.01488605 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.014895425 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.014904625 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.01491945 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2341) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.0149687 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2341) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.0149687 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.0149843 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 2.01500535 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.01501805 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.01502685 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.015042425 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.01561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 2.015629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0156388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 2.015652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 408, + "ts": 2.015676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.015689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.015703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0157475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2342) example: Task[0x3ffb8600]: allocated 408 bytes @ 0x3ffb4b10\n", + "ts": 2.01576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2342) example: Task[0x3ffb8600]: allocated 408 bytes @ 0x3ffb4b10\n", + "ts": 2.01576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0157782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 2.0157867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.015797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 2.01580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.015820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.0158294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.015837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 2.01584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 2.0158586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.015866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 2.01587925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.015887275 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.015895725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.015905825 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.01592075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2342) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.0159701 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2342) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.0159701 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.015985475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 2.0160036 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.016016425 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0160252 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.01604065 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.01661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.01662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.016643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0167475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.016756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0167706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.01761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0176295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.017643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0177475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.017757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.017770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.01861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0186295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.018643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0187475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.018756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0187706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.01961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0196295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.01964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0197475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.019756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0197706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.02061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0206326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.020646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0207475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.020756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0207706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.02161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0216295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.021643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0217475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.021757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.021770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.02261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0226295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.022643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0227475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.022756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0227706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.02361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0236295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.02364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0237475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.023756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0237706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.02461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.02462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.024643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0247475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.024756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0247706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.02561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0256295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.025643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0257475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.025757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.025770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.02661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0266295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.026643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0267475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.026756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0267706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.02761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0276295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.02764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0277475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.027756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0277706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.02861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.02862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.028643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0287475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.028756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0287706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.02961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0296295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.029643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0297475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.029757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.029770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.03061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0306295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.030643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0307475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.030756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0307706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.03161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0316295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.03164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0317475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.031756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0317706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.03261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.032631925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.03264555 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0327475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.032756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0327706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.03361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0336295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.033643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0337475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.033757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.033770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.03461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0346295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.034643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0347475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.034756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0347706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.03561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0356295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.03564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0357475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.035756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0357706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.03661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.03662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.036643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0367475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.036756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0367706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.03761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0376295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.037643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0377475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.037757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.037770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.03861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0386295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.038643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0387475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.038756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0387706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.03961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0396295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.03964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0397475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.039756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0397706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.04061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.04062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.040643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0407475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.040756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0407706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.04161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0416295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.041643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0417475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.041757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.041770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.04261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0426295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.042643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0427475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.042756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0427706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.04361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 2.043629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.043638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 2.043652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 138, + "ts": 2.043677 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.043692775 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.043706775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0437475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2370) example: Task[0x3ffb7f40]: allocated 138 bytes @ 0x3ffb4b10\n", + "ts": 2.04376895 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2370) example: Task[0x3ffb7f40]: allocated 138 bytes @ 0x3ffb4b10\n", + "ts": 2.04376895 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.043777025 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 2.043785775 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.043795925 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 2.0438067 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.043819725 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.04382825 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0438362 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 2.043844725 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 2.04385735 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.04386575 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 2.04387405 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.043882925 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.043892325 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.043901625 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.04391645 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2370) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", + "ts": 2.0439657 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2370) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", + "ts": 2.0439657 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.043984175 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 2.044002175 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.04401485 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.04402365 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.044039225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.04461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 2.044629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0446388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 2.044652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 276, + "ts": 2.044677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.0446897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.044703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0447475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2371) example: Task[0x3ffb82a0]: allocated 276 bytes @ 0x3ffb4b10\n", + "ts": 2.044769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2371) example: Task[0x3ffb82a0]: allocated 276 bytes @ 0x3ffb4b10\n", + "ts": 2.044769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.04478005 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 2.04478905 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.04479895 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 2.044809725 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.04482275 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.044831275 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.04483925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 2.044847825 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 2.044860475 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.04486885 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 2.044877175 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.04488605 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.044895425 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.044904625 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.04491945 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2371) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.0449687 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2371) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.0449687 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.0449843 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 2.04500535 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.04501805 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.04502685 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.045042425 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.04561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 2.045629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0456388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 2.045652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 414, + "ts": 2.045676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.045689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.045703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0457475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2372) example: Task[0x3ffb8600]: allocated 414 bytes @ 0x3ffb4b10\n", + "ts": 2.04576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2372) example: Task[0x3ffb8600]: allocated 414 bytes @ 0x3ffb4b10\n", + "ts": 2.04576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0457782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 2.0457867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.045797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 2.04580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.045820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.0458294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.045837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 2.04584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 2.0458586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.045866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 2.04587925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.045887275 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.045895725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.045905825 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.04592075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2372) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.0459701 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2372) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.0459701 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.045985475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 2.0460036 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.046016425 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0460252 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.04604065 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.04661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.04662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.046643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0467475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.046756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0467706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.04761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0476295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.047643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0477475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.047757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.047770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.04861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0486295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.048643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0487475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.048756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0487706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.04961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0496295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.04964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0497475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.049756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0497706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.05061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0506326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.050646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0507475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.050756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0507706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.05161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0516295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.051643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0517475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.051757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.051770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.05261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0526295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.052643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0527475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.052756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0527706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.05361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0536295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.05364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0537475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.053756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0537706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.05461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.05462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.054643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0547475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.054756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0547706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.05561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0556295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.055643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0557475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.055757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.055770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.05661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0566295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.056643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0567475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.056756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0567706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.05761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0576295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.05764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0577475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.057756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0577706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.05861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.05862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.058643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0587475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.058756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0587706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.05961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0596295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.059643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0597475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.059757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.059770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.06061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0606295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.060643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0607475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.060756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0607706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.06161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0616295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.06164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0617475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.061756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0617706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.06261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.062631925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.06264555 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0627475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.062756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0627706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.06361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0636295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.063643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0637475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.063757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.063770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.06461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0646295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.064643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0647475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.064756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0647706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.06561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0656295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.06564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0657475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.065756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0657706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.06661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.06662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.066643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0667475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.066756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0667706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.06761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0676295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.067643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0677475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.067757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.067770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.06861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0686295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.068643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0687475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.068756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0687706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.06961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0696295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.06964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0697475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.069756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0697706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.07061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.07062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.070643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0707475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.070756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0707706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.07161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0716295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.071643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0717475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.071757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.071770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.07261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0726295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.072643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0727475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.072756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0727706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.07361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 2.073629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.073638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 2.073652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 140, + "ts": 2.073677 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.073692775 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.073706775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0737475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2400) example: Task[0x3ffb7f40]: allocated 140 bytes @ 0x3ffb4b10\n", + "ts": 2.07376895 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2400) example: Task[0x3ffb7f40]: allocated 140 bytes @ 0x3ffb4b10\n", + "ts": 2.07376895 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.073777025 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 2.073785775 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0737959 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 2.0738067 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.0738197 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.07382825 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.073836175 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 2.073844725 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 2.07385735 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.073865725 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 2.07387405 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.073882925 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.073892325 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0739016 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.073916425 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2400) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", + "ts": 2.073965675 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2400) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", + "ts": 2.073965675 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.07398415 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 2.07400215 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.07401485 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.07402365 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.074039225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.07461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 2.074629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0746388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 2.074652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 280, + "ts": 2.074677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.0746897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.074703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0747475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2401) example: Task[0x3ffb82a0]: allocated 280 bytes @ 0x3ffb4b10\n", + "ts": 2.074769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2401) example: Task[0x3ffb82a0]: allocated 280 bytes @ 0x3ffb4b10\n", + "ts": 2.074769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.07478005 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 2.07478905 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.07479895 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 2.074809725 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.07482275 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.074831275 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.07483925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 2.074847825 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 2.074860475 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.07486885 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 2.074877175 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.07488605 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.074895425 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.074904625 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.07491945 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2401) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.0749687 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2401) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.0749687 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.0749843 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 2.07500535 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.07501805 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.07502685 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.075042425 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.07561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 2.075629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0756388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 2.075652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 420, + "ts": 2.075676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.075689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.075703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0757475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2402) example: Task[0x3ffb8600]: allocated 420 bytes @ 0x3ffb4b10\n", + "ts": 2.07576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2402) example: Task[0x3ffb8600]: allocated 420 bytes @ 0x3ffb4b10\n", + "ts": 2.07576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0757782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 2.0757867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.075797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 2.07580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.075820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.0758294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.075837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 2.07584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 2.0758586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.075866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 2.07587925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.075887275 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.075895725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.075905825 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.07592075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2402) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.0759701 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2402) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.0759701 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.075985475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 2.0760036 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.076016425 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0760252 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.07604065 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.07661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.07662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.076643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0767475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.076756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0767706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.07761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0776295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.077643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0777475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.077757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.077770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.07861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0786295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.078643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0787475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.078756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0787706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.07961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0796295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.07964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0797475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.079756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0797706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.08061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0806326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.080646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0807475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.080756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0807706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.08161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0816295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.081643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0817475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.081757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.081770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.08261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0826295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.082643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0827475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.082756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0827706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.08361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0836295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.08364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0837475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.083756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0837706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.08461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.08462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.084643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0847475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.084756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0847706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.08561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0856295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.085643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0857475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.085757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.085770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.08661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0866295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.086643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0867475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.086756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0867706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.08761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0876295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.08764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0877475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.087756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0877706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.08861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.08862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.088643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0887475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.088756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0887706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.08961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0896295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.089643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0897475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.089757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.089770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.09061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0906295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.090643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0907475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.090756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0907706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.09161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0916295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.09164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0917475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.091756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0917706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.09261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.092631925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.09264555 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0927475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.092756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0927706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.09361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0936295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.093643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0937475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.093757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.093770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.09461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0946295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.094643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0947475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.094756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0947706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.09561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0956295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.09564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0957475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.095756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0957706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.09661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.09662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.096643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0967475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.096756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0967706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.09761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0976295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.097643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0977475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.097757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.097770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.09861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0986295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.098643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0987475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.098756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0987706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.09961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.0996295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.09964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.0997475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.099756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.0997706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.10061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.10062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.100643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1007475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.100756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1007706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.10161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1016295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.101643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1017475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.101757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.101770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.10261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1026295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.102643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1027475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.102756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1027706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.10361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 2.103629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.103638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 2.103652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 142, + "ts": 2.103677 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.103692775 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.103706775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1037475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2430) example: Task[0x3ffb7f40]: allocated 142 bytes @ 0x3ffb4b10\n", + "ts": 2.10376895 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2430) example: Task[0x3ffb7f40]: allocated 142 bytes @ 0x3ffb4b10\n", + "ts": 2.10376895 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.103777025 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 2.103785775 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.103795925 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 2.1038067 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.103819725 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.10382825 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1038362 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 2.103844725 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 2.10385735 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.10386575 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 2.103874 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.103882875 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.10389225 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.103901525 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.10391635 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2430) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", + "ts": 2.1039656 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2430) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", + "ts": 2.1039656 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.103984075 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 2.104002075 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.104014775 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.104023575 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.10403915 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.10461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 2.104629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1046388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 2.104652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 284, + "ts": 2.104677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.1046897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.104703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1047475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2431) example: Task[0x3ffb82a0]: allocated 284 bytes @ 0x3ffb4b10\n", + "ts": 2.104769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2431) example: Task[0x3ffb82a0]: allocated 284 bytes @ 0x3ffb4b10\n", + "ts": 2.104769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.10478005 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 2.10478905 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.10479895 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 2.104809725 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.10482275 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.104831275 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.10483925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 2.104847825 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 2.104860475 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.10486885 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 2.1048771 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.104885975 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.10489535 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.104904525 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.10491935 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2431) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.1049686 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2431) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.1049686 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.1049842 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 2.105005275 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.10501795 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.10502675 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.105042325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.10561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 2.105629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1056388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 2.105652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 426, + "ts": 2.105676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.105689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.105703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1057475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2432) example: Task[0x3ffb8600]: allocated 426 bytes @ 0x3ffb4b10\n", + "ts": 2.10576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2432) example: Task[0x3ffb8600]: allocated 426 bytes @ 0x3ffb4b10\n", + "ts": 2.10576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1057782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 2.1057867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.105797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 2.10580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.105820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.1058294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.105837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 2.10584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 2.1058586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.105866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 2.105879175 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.105887225 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.105895675 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.105905775 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.105920725 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2432) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.105970075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2432) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.105970075 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.10598545 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 2.106003575 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.1060164 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.10602515 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1060406 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.10661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.10662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.106643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1067475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.106756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1067706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.10761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1076295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.107643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1077475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.107757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.107770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.10861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1086295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.108643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1087475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.108756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1087706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.10961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1096295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.10964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1097475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.109756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1097706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.11061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1106326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.110646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1107475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.110756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1107706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.11161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1116295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.111643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1117475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.111757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.111770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.11261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1126295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.112643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1127475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.112756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1127706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.11361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1136295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.11364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1137475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.113756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1137706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.11461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.11462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.114643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1147475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.114756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1147706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.11561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1156295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.115643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1157475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.115757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.115770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.11661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1166295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.116643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1167475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.116756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1167706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.11761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1176295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.11764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1177475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.117756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1177706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.11861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.11862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.118643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1187475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.118756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1187706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.11961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1196295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.119643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1197475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.119757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.119770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.12061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1206295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.120643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1207475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.120756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1207706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.12161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1216295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.12164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1217475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.121756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1217706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.12261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.122631925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.12264555 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1227475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.122756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1227706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.12361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1236295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.123643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1237475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.123757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.123770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.12461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1246295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.124643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1247475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.124756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1247706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.12561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1256295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.12564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1257475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.125756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1257706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.12661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.12662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.126643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1267475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.126756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1267706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.12761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1276295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.127643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1277475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.127757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.127770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.12861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1286295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.128643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1287475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.128756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1287706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.12961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1296295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.12964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1297475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.129756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1297706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.13061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.13062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.130643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1307475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.130756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1307706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.13161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1316295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.131643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1317475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.131757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.131770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.13261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1326295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.132643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1327475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.132756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1327706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.13361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 2.133629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.133638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 2.133652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 144, + "ts": 2.133677 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.133692775 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.133706775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1337475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2460) example: Task[0x3ffb7f40]: allocated 144 bytes @ 0x3ffb4b10\n", + "ts": 2.13376895 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2460) example: Task[0x3ffb7f40]: allocated 144 bytes @ 0x3ffb4b10\n", + "ts": 2.13376895 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.133777025 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 2.133785775 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.133795925 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 2.1338067 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.133819725 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.13382825 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1338362 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 2.133844725 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 2.13385735 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.13386575 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 2.13387405 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.133882925 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.133892325 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.133901625 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.13391645 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2460) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", + "ts": 2.1339657 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2460) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", + "ts": 2.1339657 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.133984175 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 2.134002175 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.13401485 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.13402365 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.134039225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.13461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 2.134629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1346388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 2.134652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 288, + "ts": 2.134677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.1346897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.134703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1347475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2461) example: Task[0x3ffb82a0]: allocated 288 bytes @ 0x3ffb4b10\n", + "ts": 2.134769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2461) example: Task[0x3ffb82a0]: allocated 288 bytes @ 0x3ffb4b10\n", + "ts": 2.134769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.13478005 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 2.13478905 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.13479895 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 2.134809725 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.13482275 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.134831275 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.13483925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 2.134847825 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 2.134860475 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.13486885 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 2.134877175 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.13488605 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.134895425 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.134904625 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.13491945 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2461) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.1349687 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2461) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.1349687 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.1349843 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 2.13500535 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.13501805 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.13502685 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.135042425 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.13561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 2.135629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1356388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 2.135652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 432, + "ts": 2.135676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.135689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.135703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1357475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2462) example: Task[0x3ffb8600]: allocated 432 bytes @ 0x3ffb4b10\n", + "ts": 2.13576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2462) example: Task[0x3ffb8600]: allocated 432 bytes @ 0x3ffb4b10\n", + "ts": 2.13576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1357782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 2.1357867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.135797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 2.13580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.135820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.1358294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.135837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 2.13584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 2.1358586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.135866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 2.13587925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.135887275 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.135895725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.135905825 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.13592075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2462) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.1359701 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2462) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.1359701 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.135985475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 2.1360036 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.136016425 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1360252 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.13604065 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.13661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.13662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.136643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1367475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.136756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1367706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.13761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1376295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.137643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1377475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.137757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.137770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.13861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1386295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.138643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1387475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.138756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1387706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.13961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1396295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.13964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1397475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.139756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1397706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.14061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1406326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.140646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1407475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.140756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1407706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.14161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1416295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.141643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1417475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.141757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.141770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.14261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1426295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.142643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1427475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.142756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1427706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.14361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1436295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.14364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1437475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.143756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1437706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.14461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.14462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.144643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1447475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.144756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1447706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.14561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1456295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.145643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1457475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.145757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.145770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.14661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1466295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.146643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1467475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.146756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1467706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.14761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1476295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.14764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1477475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.147756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1477706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.14861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.14862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.148643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1487475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.148756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1487706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.14961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1496295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.149643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1497475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.149757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.149770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.15061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1506295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.150643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1507475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.150756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1507706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.15161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1516295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.15164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1517475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.151756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1517706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.15261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.152631925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.15264555 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1527475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.152756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1527706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.15361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1536295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.153643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1537475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.153757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.153770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.15461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1546295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.154643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1547475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.154756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1547706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.15561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1556295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.15564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1557475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.155756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1557706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.15661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.15662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.156643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1567475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.156756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1567706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.15761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1576295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.157643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1577475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.157757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.157770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.15861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1586295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.158643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1587475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.158756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1587706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.15961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1596295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.15964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1597475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.159756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1597706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.16061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.16062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.160643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1607475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.160756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1607706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.16161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1616295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.161643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1617475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.161757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.161770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.16261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1626295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.162643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1627475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.162756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1627706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.16361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 2.163629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.163638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 2.163652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 146, + "ts": 2.163677 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.163692775 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.163706775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1637475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2490) example: Task[0x3ffb7f40]: allocated 146 bytes @ 0x3ffb4b10\n", + "ts": 2.16376895 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2490) example: Task[0x3ffb7f40]: allocated 146 bytes @ 0x3ffb4b10\n", + "ts": 2.16376895 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.163777025 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 2.163785775 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.163795925 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 2.1638067 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.163819725 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.16382825 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1638362 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 2.163844725 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 2.16385735 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.16386575 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 2.16387405 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.163882925 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.163892325 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.163901625 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.16391645 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2490) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", + "ts": 2.1639657 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2490) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", + "ts": 2.1639657 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.163984175 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 2.164002175 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.16401485 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.16402365 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.164039225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.16461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 2.164629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1646388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 2.164652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 292, + "ts": 2.164677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.1646897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.164703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1647475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2491) example: Task[0x3ffb82a0]: allocated 292 bytes @ 0x3ffb4b10\n", + "ts": 2.164769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2491) example: Task[0x3ffb82a0]: allocated 292 bytes @ 0x3ffb4b10\n", + "ts": 2.164769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.16478005 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 2.16478905 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.16479895 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 2.164809725 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.16482275 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.164831275 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.16483925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 2.164847825 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 2.164860475 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.16486885 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 2.164877175 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.16488605 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.164895425 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.164904625 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.16491945 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2491) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.1649687 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2491) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.1649687 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.1649843 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 2.16500535 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.16501805 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.16502685 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.165042425 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.16561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 2.165629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1656388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 2.165652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 438, + "ts": 2.165676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.165689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.165703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1657475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2492) example: Task[0x3ffb8600]: allocated 438 bytes @ 0x3ffb4b10\n", + "ts": 2.16576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2492) example: Task[0x3ffb8600]: allocated 438 bytes @ 0x3ffb4b10\n", + "ts": 2.16576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1657782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 2.1657867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.165797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 2.16580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.165820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.1658294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.165837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 2.16584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 2.1658586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.165866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 2.16587925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.165887275 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.165895725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.165905825 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.16592075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2492) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.1659701 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2492) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.1659701 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.165985475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 2.1660036 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.166016425 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1660252 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.16604065 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.16661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.16662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.166643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1667475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.166756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1667706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.16761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1676295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.167643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1677475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.167757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.167770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.16861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1686295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.168643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1687475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.168756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1687706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.16961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1696295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.16964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1697475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.169756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1697706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.17061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1706326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.170646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1707475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.170756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1707706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.17161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1716295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.171643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1717475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.171757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.171770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.17261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1726295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.172643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1727475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.172756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1727706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.17361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1736295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.17364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1737475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.173756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1737706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.17461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.17462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.174643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1747475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.174756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1747706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.17561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1756295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.175643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1757475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.175757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.175770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.17661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1766295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.176643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1767475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.176756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1767706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.17761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1776295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.17764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1777475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.177756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1777706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.17861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.17862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.178643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1787475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.178756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1787706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.17961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1796295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.179643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1797475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.179757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.179770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.18061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1806295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.180643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1807475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.180756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1807706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.18161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1816295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.18164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1817475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.181756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1817706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.18261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.182631925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.18264555 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1827475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.182756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1827706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.18361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1836295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.183643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1837475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.183757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.183770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.18461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1846295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.184643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1847475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.184756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1847706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.18561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1856295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.18564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1857475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.185756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1857706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.18661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.18662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.186643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1867475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.186756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1867706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.18761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1876295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.187643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1877475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.187757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.187770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.18861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1886295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.188643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1887475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.188756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1887706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.18961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1896295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.18964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1897475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.189756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1897706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.19061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.19062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.190643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1907475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.190756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1907706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.19161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1916295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.191643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1917475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.191757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.191770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.19261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1926295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.192643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1927475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.192756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1927706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.19361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 2.193629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.193638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 2.193652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 148, + "ts": 2.193677 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.193692775 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.193706775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1937475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2520) example: Task[0x3ffb7f40]: allocated 148 bytes @ 0x3ffb4b10\n", + "ts": 2.19376895 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2520) example: Task[0x3ffb7f40]: allocated 148 bytes @ 0x3ffb4b10\n", + "ts": 2.19376895 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.193777025 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 2.193785775 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.193795925 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 2.1938067 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.193819725 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.19382825 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1938362 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 2.193844725 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 2.19385735 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.19386575 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 2.19387405 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.193882925 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.193892325 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.193901625 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.19391645 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2520) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", + "ts": 2.1939657 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2520) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", + "ts": 2.1939657 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.193984175 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 2.194002175 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.19401485 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.19402365 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.194039225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.19461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 2.194629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1946388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 2.194652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 296, + "ts": 2.194677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.1946897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.194703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1947475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2521) example: Task[0x3ffb82a0]: allocated 296 bytes @ 0x3ffb4b10\n", + "ts": 2.194769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2521) example: Task[0x3ffb82a0]: allocated 296 bytes @ 0x3ffb4b10\n", + "ts": 2.194769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.19478005 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 2.19478905 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.19479895 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 2.194809725 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.19482275 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.194831275 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.19483925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 2.194847825 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 2.194860475 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.19486885 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 2.194877175 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.19488605 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.194895425 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.194904625 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.19491945 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2521) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.1949687 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2521) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.1949687 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.1949843 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 2.19500535 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.19501805 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.19502685 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.195042425 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.19561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 2.195629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1956388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 2.195652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 444, + "ts": 2.195676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.195689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.195703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1957475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2522) example: Task[0x3ffb8600]: allocated 444 bytes @ 0x3ffb4b10\n", + "ts": 2.19576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2522) example: Task[0x3ffb8600]: allocated 444 bytes @ 0x3ffb4b10\n", + "ts": 2.19576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1957782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 2.1957867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.195797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 2.19580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.195820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.1958294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.195837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 2.19584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 2.1958586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.195866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 2.19587925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.195887275 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.195895725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.195905825 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.19592075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2522) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.1959701 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2522) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.1959701 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.195985475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 2.1960036 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.196016425 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1960252 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.19604065 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.19661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.19662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.196643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1967475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.196756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1967706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.19761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1976295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.197643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1977475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.197757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.197770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.19861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1986295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.198643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1987475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.198756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1987706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.19961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.1996295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.19964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.1997475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.199756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.1997706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.20061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2006326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.200646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2007475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.200756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2007706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.20161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2016295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.201643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2017475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.201757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.201770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.20261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2026295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.202643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2027475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.202756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2027706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.20361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2036295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.20364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2037475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.203756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2037706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.20461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.20462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.204643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2047475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.204756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2047706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.20561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2056295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.205643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2057475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.205757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.205770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.20661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2066295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.206643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2067475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.206756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2067706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.20761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2076295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.20764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2077475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.207756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2077706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.20861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.20862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.208643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2087475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.208756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2087706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.20961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2096295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.209643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2097475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.209757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.209770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.21061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2106295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.210643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2107475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.210756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2107706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.21161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2116295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.21164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2117475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.211756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2117706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.21261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.212631925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.21264555 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2127475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.212756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2127706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.21361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2136295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.213643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2137475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.213757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.213770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.21461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2146295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.214643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2147475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.214756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2147706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.21561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2156295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.21564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2157475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.215756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2157706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.21661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.21662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.216643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2167475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.216756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2167706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.21761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2176295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.217643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2177475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.217757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.217770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.21861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2186295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.218643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2187475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.218756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2187706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.21961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2196295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.21964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2197475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.219756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2197706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.22061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.22062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.220643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2207475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.220756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2207706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.22161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2216295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.221643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2217475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.221757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.221770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.22261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2226295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.222643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2227475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.222756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2227706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.22361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 2.223629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.223638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 2.223652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 150, + "ts": 2.223677 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.223692775 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.223706775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2237475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2550) example: Task[0x3ffb7f40]: allocated 150 bytes @ 0x3ffb4b10\n", + "ts": 2.22376895 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2550) example: Task[0x3ffb7f40]: allocated 150 bytes @ 0x3ffb4b10\n", + "ts": 2.22376895 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.223777025 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 2.223785775 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.223795925 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 2.2238067 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.223819725 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.22382825 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2238362 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 2.223844725 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 2.22385735 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.22386575 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 2.22387405 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.223882925 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.223892325 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.223901625 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.22391645 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2550) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", + "ts": 2.2239657 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2550) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", + "ts": 2.2239657 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.223984175 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 2.224002175 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.22401485 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.22402365 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.224039225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.22461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 2.224629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2246388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 2.224652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 300, + "ts": 2.224677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.2246897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.224703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2247475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2551) example: Task[0x3ffb82a0]: allocated 300 bytes @ 0x3ffb4b10\n", + "ts": 2.224769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2551) example: Task[0x3ffb82a0]: allocated 300 bytes @ 0x3ffb4b10\n", + "ts": 2.224769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.22478005 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 2.22478905 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.22479895 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 2.224809725 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.22482275 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.224831275 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.22483925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 2.224847825 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 2.224860475 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.22486885 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 2.224877175 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.22488605 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.224895425 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.224904625 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.22491945 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2551) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.2249687 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2551) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.2249687 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.2249843 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 2.22500535 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.22501805 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.22502685 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.225042425 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.22561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 2.225629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2256388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 2.225652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 450, + "ts": 2.225676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.225689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.225703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2257475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2552) example: Task[0x3ffb8600]: allocated 450 bytes @ 0x3ffb4b10\n", + "ts": 2.22576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2552) example: Task[0x3ffb8600]: allocated 450 bytes @ 0x3ffb4b10\n", + "ts": 2.22576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2257782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 2.2257867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.225797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 2.22580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.225820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.2258294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.225837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 2.22584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 2.2258586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.225866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 2.22587925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.225887275 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.225895725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.225905825 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.22592075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2552) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.2259701 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2552) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.2259701 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.225985475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 2.2260036 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.226016425 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2260252 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.22604065 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.22661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.22662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.226643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2267475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.226756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2267706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.22761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2276295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.227643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2277475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.227757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.227770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.22861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2286295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.228643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2287475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.228756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2287706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.22961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2296295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.22964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2297475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.229756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2297706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.23061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2306326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.230646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2307475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.230756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2307706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.23161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2316295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.231643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2317475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.231757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.231770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.23261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2326295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.232643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2327475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.232756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2327706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.23361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2336295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.23364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2337475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.233756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2337706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.23461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.23462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.234643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2347475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.234756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2347706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.23561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2356295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.235643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2357475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.235757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.235770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.23661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2366295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.236643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2367475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.236756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2367706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.23761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2376295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.23764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2377475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.237756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2377706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.23861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.23862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.238643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2387475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.238756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2387706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.23961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2396295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.239643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2397475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.239757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.239770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.24061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2406295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.240643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2407475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.240756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2407706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.24161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2416295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.24164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2417475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.241756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2417706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.24261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.242633975 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2426476 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2427475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.242756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2427706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.24361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2436295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.243643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2437475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.243757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.243770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.24461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2446295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.244643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2447475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.244756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2447706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.24561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2456295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.24564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2457475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.245756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2457706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.24661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.24662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.246643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2467475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.246756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2467706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.24761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2476295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.247643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2477475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.247757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.247770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.24861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2486295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.248643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2487475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.248756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2487706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.24961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2496295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.24964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2497475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.249756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2497706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.25061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.25062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.250643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2507475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.250756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2507706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.25161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2516295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.251643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2517475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.251757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.251770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.25261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2526295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.252643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2527475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.252756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2527706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.25361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 2.253629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.253638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 2.253652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 152, + "ts": 2.253677 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.2536921 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.2537061 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2537475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2580) example: Task[0x3ffb7f40]: allocated 152 bytes @ 0x3ffb4b10\n", + "ts": 2.253768375 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2580) example: Task[0x3ffb7f40]: allocated 152 bytes @ 0x3ffb4b10\n", + "ts": 2.253768375 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.253777525 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 2.2537858 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2537964 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 2.2538072 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.2538202 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.25382875 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.253836675 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 2.253845225 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 2.25385785 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.253866225 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 2.25387455 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.253883425 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.253892825 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2539021 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.253916925 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2580) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", + "ts": 2.253966175 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2580) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", + "ts": 2.253966175 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.253984575 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 2.254002575 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.25401525 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.25402405 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.254039625 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.25461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 2.254629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2546388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 2.254652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 304, + "ts": 2.254677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.2546897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.254703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2547475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2581) example: Task[0x3ffb82a0]: allocated 304 bytes @ 0x3ffb4b10\n", + "ts": 2.254769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2581) example: Task[0x3ffb82a0]: allocated 304 bytes @ 0x3ffb4b10\n", + "ts": 2.254769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.25478125 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 2.25478975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.254800125 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 2.2548109 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.254823925 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.25483245 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.254840425 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 2.254849 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 2.25486165 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.254870025 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 2.25487835 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.254887225 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.2548966 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2549058 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.254920625 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2581) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.254969875 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2581) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.254969875 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.254985475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 2.255005825 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.255018525 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.255027325 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2550429 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.25561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 2.255629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2556388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 2.255652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 456, + "ts": 2.255676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.255689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.255703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2557475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2582) example: Task[0x3ffb8600]: allocated 456 bytes @ 0x3ffb4b10\n", + "ts": 2.25576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2582) example: Task[0x3ffb8600]: allocated 456 bytes @ 0x3ffb4b10\n", + "ts": 2.25576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2557782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 2.2557867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.255797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 2.25580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.255820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.2558294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.255837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 2.25584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 2.2558586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.255866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 2.2558792 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.255887225 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.255895675 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2559058 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.255920725 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2582) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.255970075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2582) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.255970075 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.25598545 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 2.256003575 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.2560164 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.256025175 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.256040625 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.25661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.25662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.256643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2567475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.256756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2567706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.25761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2576295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.257643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2577475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.257757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.257770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.25861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2586295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.258643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2587475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.258756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2587706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.25961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2596295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.25964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2597475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.259756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2597706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.26061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.260631925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.26064555 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2607475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.260756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2607706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.26161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2616295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.261643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2617475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.261757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.261770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.26261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2626295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.262643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2627475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.262756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2627706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.26361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2636295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.26364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2637475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.263756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2637706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.26461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.26462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.264643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2647475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.264756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2647706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.26561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2656295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.265643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2657475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.265757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.265770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.26661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2666295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.266643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2667475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.266756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2667706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.26761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2676295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.26764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2677475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.267756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2677706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.26861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.26862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.268643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2687475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.268756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2687706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.26961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2696295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.269643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2697475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.269757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.269770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.27061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2706295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.270643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2707475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.270756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2707706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.27161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2716295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.27164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2717475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.271756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2717706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.27261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2726326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.272646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2727475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.272756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2727706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.27361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2736295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.273643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2737475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.273757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.273770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.27461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2746295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.274643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2747475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.274756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2747706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.27561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2756295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.27564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2757475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.275756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2757706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.27661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.27662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.276643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2767475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.276756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2767706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.27761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2776295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.277643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2777475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.277757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.277770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.27861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2786295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.278643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2787475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.278756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2787706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.27961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2796295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.27964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2797475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.279756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2797706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.28061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.28062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.280643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2807475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.280756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2807706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.28161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2816295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.281643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2817475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.281757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.281770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.28261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2826295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.282643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2827475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.282756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2827706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.28361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 2.283629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.283638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 2.283652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 154, + "ts": 2.283677 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.2836921 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.2837061 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2837475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2610) example: Task[0x3ffb7f40]: allocated 154 bytes @ 0x3ffb4b10\n", + "ts": 2.283768375 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2610) example: Task[0x3ffb7f40]: allocated 154 bytes @ 0x3ffb4b10\n", + "ts": 2.283768375 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.283777525 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 2.2837858 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2837964 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 2.2838072 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.2838202 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.28382875 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.283836675 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 2.283845225 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 2.28385785 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.283866225 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 2.28387455 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.283883425 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.283892825 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2839021 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.283916925 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2610) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", + "ts": 2.283966175 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2610) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", + "ts": 2.283966175 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.283984575 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 2.284002575 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.28401525 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.28402405 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.284039625 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.28461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 2.284629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2846388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 2.284652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 308, + "ts": 2.284677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.2846897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.284703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2847475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2611) example: Task[0x3ffb82a0]: allocated 308 bytes @ 0x3ffb4b10\n", + "ts": 2.284769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2611) example: Task[0x3ffb82a0]: allocated 308 bytes @ 0x3ffb4b10\n", + "ts": 2.284769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.28478125 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 2.28478975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.284800125 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 2.2848109 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.284823925 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.28483245 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.284840425 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 2.284849 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 2.28486165 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.284870025 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 2.28487835 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.284887225 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.2848966 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2849058 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.284920625 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2611) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.284969875 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2611) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.284969875 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.284985475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 2.285005825 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.285018525 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.285027325 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2850429 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.28561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 2.285629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2856388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 2.285652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 462, + "ts": 2.285676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.285689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.285703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2857475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2612) example: Task[0x3ffb8600]: allocated 462 bytes @ 0x3ffb4b10\n", + "ts": 2.28576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2612) example: Task[0x3ffb8600]: allocated 462 bytes @ 0x3ffb4b10\n", + "ts": 2.28576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2857782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 2.2857867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.285797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 2.28580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.285820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.2858294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.285837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 2.28584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 2.2858586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.285866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 2.2858792 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.285887225 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.285895675 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2859058 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.285920725 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2612) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.285970075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2612) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.285970075 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.28598545 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 2.286003575 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.2860164 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.286025175 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.286040625 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.28661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.28662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.286643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2867475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.286756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2867706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.28761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2876295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.287643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2877475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.287757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.287770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.28861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2886295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.288643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2887475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.288756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2887706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.28961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2896295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.28964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2897475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.289756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2897706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.29061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.290631925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.29064555 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2907475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.290756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2907706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.29161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2916295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.291643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2917475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.291757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.291770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.29261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2926295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.292643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2927475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.292756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2927706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.29361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2936295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.29364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2937475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.293756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2937706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.29461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.29462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.294643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2947475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.294756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2947706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.29561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2956295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.295643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2957475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.295757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.295770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.29661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2966295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.296643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2967475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.296756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2967706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.29761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2976295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.29764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2977475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.297756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2977706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.29861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.29862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.298643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2987475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.298756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.2987706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.29961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.2996295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.299643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.2997475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.299757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.299770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.30061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3006295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.300643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3007475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.300756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3007706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.30161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3016295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.30164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3017475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.301756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3017706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.30261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3026326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.302646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3027475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.302756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3027706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.30361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3036295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.303643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3037475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.303757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.303770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.30461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3046295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.304643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3047475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.304756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3047706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.30561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3056295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.30564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3057475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.305756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3057706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.30661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.30662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.306643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3067475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.306756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3067706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.30761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3076295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.307643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3077475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.307757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.307770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.30861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3086295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.308643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3087475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.308756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3087706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.30961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3096295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.30964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3097475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.309756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3097706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.31061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.31062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.310643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3107475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.310756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3107706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.31161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3116295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.311643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3117475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.311757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.311770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.31261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3126295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.312643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3127475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.312756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3127706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.31361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 2.313629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.313638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 2.313652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 156, + "ts": 2.313677 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.3136921 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.3137061 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3137475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2640) example: Task[0x3ffb7f40]: allocated 156 bytes @ 0x3ffb4b10\n", + "ts": 2.313768375 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2640) example: Task[0x3ffb7f40]: allocated 156 bytes @ 0x3ffb4b10\n", + "ts": 2.313768375 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.313777525 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 2.3137858 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3137964 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 2.3138072 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.3138202 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.31382875 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.313836675 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 2.313845225 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 2.31385785 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.313866225 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 2.31387455 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.313883425 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.313892825 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3139021 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.313916925 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2640) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", + "ts": 2.313966175 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2640) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", + "ts": 2.313966175 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.313984575 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 2.314002575 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.31401525 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.31402405 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.314039625 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.31461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 2.314629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3146388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 2.314652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 312, + "ts": 2.314677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.3146897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.314703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3147475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2641) example: Task[0x3ffb82a0]: allocated 312 bytes @ 0x3ffb4b10\n", + "ts": 2.314769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2641) example: Task[0x3ffb82a0]: allocated 312 bytes @ 0x3ffb4b10\n", + "ts": 2.314769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.31478125 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 2.31478975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.314800125 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 2.3148109 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.314823925 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.31483245 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.314840425 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 2.314849 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 2.31486165 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.314870025 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 2.31487835 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.314887225 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.3148966 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3149058 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.314920625 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2641) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.314969875 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2641) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.314969875 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.314985475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 2.315005825 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.315018525 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.315027325 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3150429 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.31561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 2.315629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3156388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 2.315652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 468, + "ts": 2.315676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.315689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.315703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3157475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2642) example: Task[0x3ffb8600]: allocated 468 bytes @ 0x3ffb4b10\n", + "ts": 2.31576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2642) example: Task[0x3ffb8600]: allocated 468 bytes @ 0x3ffb4b10\n", + "ts": 2.31576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3157782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 2.3157867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.315797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 2.31580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.315820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.3158294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.315837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 2.31584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 2.3158586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.315866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 2.3158792 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.315887225 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.315895675 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3159058 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.315920725 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2642) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.315970075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2642) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.315970075 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.31598545 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 2.316003575 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.3160164 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.316025175 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.316040625 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.31661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.31662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.316643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3167475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.316756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3167706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.31761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3176295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.317643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3177475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.317757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.317770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.31861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3186295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.318643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3187475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.318756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3187706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.31961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3196295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.31964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3197475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.319756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3197706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.32061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.320631925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.32064555 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3207475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.320756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3207706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.32161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3216295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.321643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3217475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.321757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.321770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.32261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3226295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.322643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3227475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.322756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3227706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.32361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3236295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.32364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3237475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.323756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3237706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.32461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.32462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.324643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3247475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.324756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3247706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.32561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3256295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.325643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3257475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.325757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.325770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.32661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3266295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.326643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3267475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.326756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3267706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.32761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3276295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.32764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3277475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.327756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3277706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.32861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.32862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.328643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3287475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.328756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3287706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.32961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3296295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.329643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3297475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.329757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.329770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.33061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3306295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.330643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3307475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.330756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3307706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.33161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3316295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.33164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3317475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.331756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3317706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.33261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3326326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.332646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3327475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.332756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3327706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.33361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3336295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.333643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3337475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.333757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.333770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.33461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3346295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.334643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3347475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.334756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3347706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.33561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3356295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.33564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3357475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.335756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3357706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.33661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.33662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.336643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3367475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.336756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3367706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.33761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3376295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.337643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3377475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.337757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.337770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.33861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3386295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.338643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3387475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.338756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3387706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.33961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3396295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.33964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3397475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.339756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3397706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.34061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.34062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.340643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3407475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.340756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3407706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.34161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3416295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.341643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3417475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.341757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.341770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.34261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3426295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.342643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3427475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.342756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3427706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.34361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 2.343629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.343638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 2.343652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 158, + "ts": 2.343677 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.3436921 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.3437061 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3437475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2670) example: Task[0x3ffb7f40]: allocated 158 bytes @ 0x3ffb4b10\n", + "ts": 2.343768375 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2670) example: Task[0x3ffb7f40]: allocated 158 bytes @ 0x3ffb4b10\n", + "ts": 2.343768375 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.343777525 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 2.3437858 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3437964 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 2.3438072 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.3438202 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.34382875 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.343836675 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 2.343845225 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 2.34385785 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.343866225 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 2.34387455 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.343883425 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.343892825 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3439021 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.343916925 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2670) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", + "ts": 2.343966175 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2670) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", + "ts": 2.343966175 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.343984575 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 2.344002575 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.34401525 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.34402405 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.344039625 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.34461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 2.344629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3446388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 2.344652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 316, + "ts": 2.344677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.3446897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.344703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3447475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2671) example: Task[0x3ffb82a0]: allocated 316 bytes @ 0x3ffb4b10\n", + "ts": 2.344769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2671) example: Task[0x3ffb82a0]: allocated 316 bytes @ 0x3ffb4b10\n", + "ts": 2.344769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.34478125 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 2.34478975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.344800125 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 2.3448109 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.344823925 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.34483245 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.344840425 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 2.344849 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 2.34486165 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.344870025 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 2.34487835 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.344887225 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.3448966 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3449058 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.344920625 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2671) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.344969875 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2671) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.344969875 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.344985475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 2.345005825 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.345018525 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.345027325 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3450429 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.34561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 2.345629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3456388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 2.345652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 474, + "ts": 2.345676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.345689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.345703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3457475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2672) example: Task[0x3ffb8600]: allocated 474 bytes @ 0x3ffb4b10\n", + "ts": 2.34576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2672) example: Task[0x3ffb8600]: allocated 474 bytes @ 0x3ffb4b10\n", + "ts": 2.34576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3457782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 2.3457867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.345797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 2.34580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.345820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.3458294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.345837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 2.34584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 2.3458586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.345866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 2.3458792 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.345887225 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.345895675 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3459058 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.345920725 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2672) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.345970075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2672) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.345970075 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.34598545 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 2.346003575 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.3460164 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.346025175 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.346040625 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.34661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.34662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.346643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3467475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.346756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3467706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.34761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3476295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.347643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3477475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.347757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.347770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.34861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3486295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.348643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3487475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.348756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3487706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.34961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3496295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.34964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3497475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.349756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3497706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.35061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.350631925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.35064555 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3507475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.350756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3507706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.35161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3516295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.351643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3517475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.351757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.351770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.35261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3526295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.352643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3527475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.352756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3527706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.35361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3536295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.35364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3537475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.353756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3537706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.35461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.35462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.354643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3547475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.354756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3547706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.35561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3556295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.355643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3557475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.355757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.355770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.35661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3566295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.356643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3567475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.356756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3567706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.35761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3576295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.35764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3577475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.357756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3577706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.35861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.35862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.358643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3587475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.358756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3587706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.35961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3596295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.359643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3597475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.359757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.359770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.36061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3606295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.360643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3607475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.360756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3607706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.36161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3616295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.36164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3617475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.361756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3617706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.36261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3626326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.362646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3627475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.362756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3627706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.36361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3636295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.363643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3637475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.363757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.363770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.36461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3646295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.364643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3647475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.364756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3647706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.36561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3656295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.36564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3657475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.365756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3657706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.36661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.36662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.366643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3667475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.366756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3667706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.36761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3676295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.367643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3677475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.367757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.367770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.36861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3686295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.368643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3687475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.368756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3687706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.36961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3696295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.36964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3697475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.369756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3697706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.37061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.37062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.370643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3707475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.370756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3707706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.37161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3716295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.371643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3717475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.371757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.371770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.37261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3726295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.372643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3727475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.372756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3727706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.37361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 2.373629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.373638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 2.373652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 160, + "ts": 2.373677 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.3736921 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.3737061 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3737475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2700) example: Task[0x3ffb7f40]: allocated 160 bytes @ 0x3ffb4b10\n", + "ts": 2.373768375 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2700) example: Task[0x3ffb7f40]: allocated 160 bytes @ 0x3ffb4b10\n", + "ts": 2.373768375 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.373777525 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 2.3737858 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3737964 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 2.3738072 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.3738202 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.37382875 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.373836675 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 2.373845225 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 2.37385785 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.373866225 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 2.37387455 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.373883425 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.373892825 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3739021 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.373916925 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2700) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", + "ts": 2.373966175 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2700) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", + "ts": 2.373966175 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.373984575 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 2.374002575 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.37401525 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.37402405 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.374039625 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.37461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 2.374629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3746388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 2.374652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 320, + "ts": 2.374677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.3746897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.374703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3747475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2701) example: Task[0x3ffb82a0]: allocated 320 bytes @ 0x3ffb4b10\n", + "ts": 2.374769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2701) example: Task[0x3ffb82a0]: allocated 320 bytes @ 0x3ffb4b10\n", + "ts": 2.374769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.37478125 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 2.37478975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.374800125 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 2.3748109 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.374823925 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.37483245 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.374840425 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 2.374849 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 2.37486165 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.374870025 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 2.37487835 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.374887225 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.3748966 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3749058 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.374920625 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2701) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.374969875 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2701) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.374969875 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.374985475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 2.375005825 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.375018525 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.375027325 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3750429 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.37561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 2.375629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3756388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 2.375652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 480, + "ts": 2.375676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.375689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.375703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3757475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2702) example: Task[0x3ffb8600]: allocated 480 bytes @ 0x3ffb4b10\n", + "ts": 2.37576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2702) example: Task[0x3ffb8600]: allocated 480 bytes @ 0x3ffb4b10\n", + "ts": 2.37576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3757782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 2.3757867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.375797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 2.37580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.375820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.3758294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.375837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 2.37584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 2.3758586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.375866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 2.3758792 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.375887225 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.375895675 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3759058 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.375920725 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2702) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.375970075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2702) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.375970075 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.37598545 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 2.376003575 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.3760164 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.376025175 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.376040625 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.37661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.37662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.376643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3767475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.376756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3767706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.37761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3776295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.377643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3777475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.377757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.377770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.37861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3786295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.378643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3787475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.378756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3787706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.37961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3796295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.37964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3797475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.379756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3797706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.38061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.380631925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.38064555 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3807475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.380756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3807706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.38161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3816295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.381643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3817475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.381757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.381770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.38261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3826295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.382643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3827475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.382756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3827706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.38361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3836295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.38364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3837475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.383756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3837706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.38461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.38462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.384643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3847475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.384756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3847706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.38561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3856295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.385643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3857475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.385757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.385770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.38661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3866295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.386643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3867475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.386756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3867706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.38761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3876295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.38764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3877475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.387756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3877706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.38861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.38862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.388643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3887475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.388756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3887706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.38961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3896295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.389643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3897475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.389757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.389770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.39061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3906295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.390643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3907475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.390756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3907706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.39161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3916295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.39164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3917475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.391756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3917706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.39261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3926326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.392646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3927475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.392756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3927706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.39361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3936295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.393643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3937475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.393757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.393770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.39461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3946295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.394643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3947475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.394756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3947706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.39561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3956295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.39564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3957475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.395756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3957706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.39661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.39662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.396643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3967475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.396756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3967706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.39761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3976295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.397643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3977475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.397757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.397770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.39861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3986295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.398643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3987475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.398756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3987706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.39961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.3996295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.39964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.3997475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.399756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.3997706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.40061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.40062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.400643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4007475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.400756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4007706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.40161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4016295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.401643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4017475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.401757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.401770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.40261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4026295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.402643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4027475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.402756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4027706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.40361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 2.403629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.403638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 2.403652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 162, + "ts": 2.403677 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.4036921 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.4037061 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4037475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2730) example: Task[0x3ffb7f40]: allocated 162 bytes @ 0x3ffb4b10\n", + "ts": 2.403768375 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2730) example: Task[0x3ffb7f40]: allocated 162 bytes @ 0x3ffb4b10\n", + "ts": 2.403768375 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.403777525 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 2.4037858 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4037964 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 2.4038072 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.4038202 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.40382875 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.403836675 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 2.403845225 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 2.40385785 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.403866225 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 2.403874475 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.40388335 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.403892725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.403902025 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.40391685 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2730) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", + "ts": 2.4039661 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2730) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", + "ts": 2.4039661 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.403984475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 2.404002475 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.404015175 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.404023975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.40403955 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.40461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 2.404629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4046388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 2.404652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 324, + "ts": 2.404677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.4046897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.404703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4047475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2731) example: Task[0x3ffb82a0]: allocated 324 bytes @ 0x3ffb4b10\n", + "ts": 2.404769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2731) example: Task[0x3ffb82a0]: allocated 324 bytes @ 0x3ffb4b10\n", + "ts": 2.404769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.40478125 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 2.40478975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.404800125 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 2.4048109 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.404823925 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.40483245 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.404840425 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 2.404849 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 2.40486165 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.404870025 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 2.404878275 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.40488715 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.404896525 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4049057 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.404920525 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2731) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.404969775 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2731) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.404969775 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.404985375 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 2.40500575 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.405018425 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.405027225 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4050428 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.40561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 2.405629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4056388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 2.405652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 486, + "ts": 2.405676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.405689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.405703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4057475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2732) example: Task[0x3ffb8600]: allocated 486 bytes @ 0x3ffb4b10\n", + "ts": 2.40576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2732) example: Task[0x3ffb8600]: allocated 486 bytes @ 0x3ffb4b10\n", + "ts": 2.40576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4057782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 2.4057867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.405797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 2.40580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.405820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.4058294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.405837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 2.40584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 2.4058586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.405866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 2.405879175 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4058872 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.40589565 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.40590575 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.405920675 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2732) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.405970025 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2732) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.405970025 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.4059854 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 2.406003525 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.40601635 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.406025125 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.406040575 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.40661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.40662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.406643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4067475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.406756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4067706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.40761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4076295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.407643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4077475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.407757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.407770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.40861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4086295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.408643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4087475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.408756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4087706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.40961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4096295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.40964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4097475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.409756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4097706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.41061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.410631925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.41064555 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4107475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.410756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4107706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.41161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4116295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.411643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4117475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.411757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.411770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.41261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4126295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.412643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4127475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.412756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4127706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.41361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4136295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.41364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4137475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.413756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4137706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.41461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.41462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.414643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4147475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.414756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4147706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.41561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4156295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.415643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4157475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.415757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.415770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.41661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4166295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.416643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4167475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.416756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4167706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.41761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4176295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.41764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4177475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.417756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4177706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.41861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.41862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.418643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4187475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.418756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4187706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.41961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4196295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.419643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4197475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.419757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.419770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.42061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4206295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.420643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4207475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.420756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4207706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.42161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4216295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.42164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4217475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.421756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4217706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.42261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4226326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.422646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4227475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.422756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4227706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.42361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4236295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.423643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4237475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.423757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.423770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.42461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4246295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.424643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4247475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.424756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4247706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.42561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4256295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.42564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4257475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.425756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4257706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.42661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.42662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.426643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4267475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.426756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4267706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.42761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4276295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.427643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4277475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.427757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.427770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.42861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4286295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.428643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4287475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.428756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4287706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.42961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4296295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.42964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4297475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.429756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4297706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.43061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.43062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.430643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4307475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.430756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4307706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.43161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4316295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.431643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4317475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.431757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.431770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.43261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4326295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.432643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4327475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.432756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4327706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.43361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 2.433629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.433638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 2.433652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 164, + "ts": 2.433677 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.4336921 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.4337061 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4337475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2760) example: Task[0x3ffb7f40]: allocated 164 bytes @ 0x3ffb4b10\n", + "ts": 2.433768375 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2760) example: Task[0x3ffb7f40]: allocated 164 bytes @ 0x3ffb4b10\n", + "ts": 2.433768375 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.433777525 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 2.4337858 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4337964 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 2.4338072 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.4338202 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.43382875 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.433836675 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 2.433845225 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 2.43385785 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.433866225 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 2.43387455 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.433883425 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.433892825 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4339021 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.433916925 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2760) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", + "ts": 2.433966175 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2760) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", + "ts": 2.433966175 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.433984575 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 2.434002575 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.43401525 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.43402405 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.434039625 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.43461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 2.434629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4346388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 2.434652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 328, + "ts": 2.434677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.4346897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.434703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4347475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2761) example: Task[0x3ffb82a0]: allocated 328 bytes @ 0x3ffb4b10\n", + "ts": 2.434769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2761) example: Task[0x3ffb82a0]: allocated 328 bytes @ 0x3ffb4b10\n", + "ts": 2.434769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.43478125 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 2.43478975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.434800125 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 2.4348109 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.434823925 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.43483245 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.434840425 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 2.434849 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 2.43486165 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.434870025 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 2.43487835 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.434887225 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.4348966 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4349058 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.434920625 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2761) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.434969875 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2761) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.434969875 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.434985475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 2.435005825 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.435018525 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.435027325 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4350429 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.43561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 2.435629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4356388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 2.435652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 492, + "ts": 2.435676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.435689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.435703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4357475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2762) example: Task[0x3ffb8600]: allocated 492 bytes @ 0x3ffb4b10\n", + "ts": 2.43576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2762) example: Task[0x3ffb8600]: allocated 492 bytes @ 0x3ffb4b10\n", + "ts": 2.43576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4357782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 2.4357867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.435797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 2.43580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.435820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.4358294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.435837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 2.43584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 2.4358586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.435866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 2.4358792 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.435887225 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.435895675 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4359058 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.435920725 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2762) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.435970075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2762) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.435970075 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.43598545 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 2.436003575 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.4360164 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.436025175 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.436040625 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.43661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.43662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.436643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4367475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.436756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4367706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.43761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4376295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.437643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4377475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.437757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.437770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.43861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4386295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.438643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4387475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.438756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4387706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.43961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4396295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.43964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4397475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.439756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4397706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.44061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.440631925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.44064555 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4407475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.440756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4407706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.44161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4416295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.441643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4417475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.441757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.441770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.44261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4426295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.442643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4427475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.442756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4427706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.44361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4436295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.44364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4437475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.443756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4437706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.44461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.44462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.444643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4447475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.444756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4447706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.44561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4456295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.445643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4457475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.445757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.445770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.44661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4466295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.446643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4467475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.446756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4467706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.44761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4476295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.44764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4477475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.447756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4477706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.44861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.44862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.448643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4487475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.448756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4487706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.44961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4496295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.449643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4497475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.449757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.449770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.45061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4506295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.450643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4507475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.450756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4507706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.45161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4516295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.45164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4517475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.451756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4517706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.45261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4526326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.452646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4527475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.452756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4527706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.45361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4536295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.453643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4537475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.453757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.453770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.45461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4546295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.454643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4547475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.454756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4547706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.45561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4556295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.45564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4557475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.455756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4557706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.45661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.45662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.456643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4567475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.456756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4567706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.45761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4576295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.457643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4577475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.457757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.457770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.45861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4586295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.458643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4587475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.458756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4587706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.45961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4596295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.45964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4597475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.459756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4597706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.46061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.46062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.460643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4607475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.460756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4607706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.46161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4616295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.461643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4617475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.461757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.461770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.46261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4626295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.462643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4627475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.462756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4627706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.46361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 2.463629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.463638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 2.463652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 166, + "ts": 2.463677 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.4636921 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.4637061 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4637475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2790) example: Task[0x3ffb7f40]: allocated 166 bytes @ 0x3ffb4b10\n", + "ts": 2.463768375 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2790) example: Task[0x3ffb7f40]: allocated 166 bytes @ 0x3ffb4b10\n", + "ts": 2.463768375 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.463777525 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 2.4637858 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4637964 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 2.4638072 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.4638202 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.46382875 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.463836675 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 2.463845225 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 2.46385785 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.463866225 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 2.46387455 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.463883425 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.463892825 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4639021 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.463916925 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2790) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", + "ts": 2.463966175 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2790) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", + "ts": 2.463966175 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.463984575 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 2.464002575 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.46401525 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.46402405 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.464039625 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.46461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 2.464629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4646388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 2.464652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 332, + "ts": 2.464677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.4646897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.464703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4647475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2791) example: Task[0x3ffb82a0]: allocated 332 bytes @ 0x3ffb4b10\n", + "ts": 2.464769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2791) example: Task[0x3ffb82a0]: allocated 332 bytes @ 0x3ffb4b10\n", + "ts": 2.464769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.46478125 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 2.46478975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.464800125 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 2.4648109 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.464823925 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.46483245 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.464840425 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 2.464849 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 2.46486165 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.464870025 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 2.46487835 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.464887225 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.4648966 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4649058 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.464920625 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2791) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.464969875 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2791) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.464969875 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.464985475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 2.465005825 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.465018525 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.465027325 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4650429 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.46561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 2.465629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4656388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 2.465652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 498, + "ts": 2.465676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.465689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.465703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4657475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2792) example: Task[0x3ffb8600]: allocated 498 bytes @ 0x3ffb4b10\n", + "ts": 2.46576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2792) example: Task[0x3ffb8600]: allocated 498 bytes @ 0x3ffb4b10\n", + "ts": 2.46576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4657782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 2.4657867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.465797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 2.46580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.465820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.4658294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.465837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 2.46584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 2.4658586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.465866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 2.4658792 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.465887225 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.465895675 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4659058 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.465920725 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2792) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.465970075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2792) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.465970075 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.46598545 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 2.466003575 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.4660164 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.466025175 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.466040625 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.46661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.46662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.466643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4667475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.466756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4667706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.46761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4676295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.467643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4677475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.467757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.467770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.46861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4686295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.468643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4687475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.468756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4687706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.46961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4696295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.46964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4697475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.469756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4697706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.47061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.470631925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.47064555 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4707475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.470756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4707706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.47161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4716295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.471643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4717475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.471757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.471770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.47261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4726295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.472643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4727475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.472756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4727706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.47361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4736295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.47364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4737475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.473756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4737706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.47461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.47462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.474643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4747475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.474756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4747706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.47561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4756295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.475643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4757475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.475757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.475770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.47661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4766295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.476643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4767475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.476756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4767706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.47761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4776295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.47764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4777475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.477756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4777706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.47861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.47862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.478643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4787475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.478756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4787706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.47961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4796295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.479643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4797475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.479757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.479770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.48061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4806295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.480643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4807475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.480756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4807706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.48161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4816295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.48164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4817475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.481756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4817706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.48261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4826326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.482646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4827475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.482756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4827706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.48361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4836295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.483643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4837475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.483757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.483770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.48461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4846295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.484643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4847475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.484756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4847706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.48561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4856295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.48564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4857475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.485756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4857706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.48661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.48662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.486643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4867475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.486756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4867706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.48761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4876295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.487643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4877475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.487757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.487770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.48861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4886295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.488643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4887475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.488756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4887706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.48961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4896295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.48964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4897475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.489756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4897706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.49061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.49062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.490643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4907475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.490756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4907706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.49161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4916295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.491643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4917475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.491757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.491770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.49261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4926295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.492643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4927475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.492756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4927706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.49361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 2.493629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.493638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 2.493652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 168, + "ts": 2.493677 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.4936921 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.4937061 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4937475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2820) example: Task[0x3ffb7f40]: allocated 168 bytes @ 0x3ffb4b10\n", + "ts": 2.493768375 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2820) example: Task[0x3ffb7f40]: allocated 168 bytes @ 0x3ffb4b10\n", + "ts": 2.493768375 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.493777525 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 2.4937858 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4937964 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 2.4938072 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.4938202 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.49382875 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.493836675 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 2.493845225 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 2.49385785 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.493866225 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 2.49387455 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.493883425 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.493892825 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4939021 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.493916925 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2820) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", + "ts": 2.493966175 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2820) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", + "ts": 2.493966175 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.493984575 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 2.494002575 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.49401525 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.49402405 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.494039625 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.49461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 2.494629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4946388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 2.494652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 336, + "ts": 2.494677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.4946897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.494703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4947475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2821) example: Task[0x3ffb82a0]: allocated 336 bytes @ 0x3ffb4b10\n", + "ts": 2.494769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2821) example: Task[0x3ffb82a0]: allocated 336 bytes @ 0x3ffb4b10\n", + "ts": 2.494769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.49478125 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 2.49478975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.494800125 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 2.4948109 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.494823925 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.49483245 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.494840425 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 2.494849 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 2.49486165 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.494870025 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 2.49487835 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.494887225 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.4948966 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4949058 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.494920625 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2821) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.494969875 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2821) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.494969875 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.494985475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 2.495005825 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.495018525 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.495027325 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4950429 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.49561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 2.495629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4956388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 2.495652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 504, + "ts": 2.495676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.495689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.495703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4957475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2822) example: Task[0x3ffb8600]: allocated 504 bytes @ 0x3ffb4b10\n", + "ts": 2.49576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2822) example: Task[0x3ffb8600]: allocated 504 bytes @ 0x3ffb4b10\n", + "ts": 2.49576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4957782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 2.4957867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.495797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 2.49580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.495820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.4958294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.495837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 2.49584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 2.4958586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.495866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 2.4958792 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.495887225 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.495895675 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4959058 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.495920725 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2822) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.495970075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2822) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.495970075 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.49598545 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 2.496003575 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.4960164 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.496025175 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.496040625 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.49661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.49662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.496643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4967475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.496756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4967706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.49761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4976295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.497643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4977475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.497757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.497770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.49861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4986295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.498643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4987475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.498756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4987706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.49961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.4996295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.49964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.4997475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.499756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.4997706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.50061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.500631925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.50064555 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5007475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.500756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5007706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.50161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5016295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.501643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5017475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.501757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.501770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.50261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5026295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.502643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5027475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.502756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5027706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.50361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5036295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.50364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5037475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.503756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5037706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.50461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.50462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.504643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5047475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.504756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5047706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.50561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5056295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.505643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5057475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.505757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.505770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.50661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5066295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.506643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5067475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.506756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5067706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.50761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5076295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.50764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5077475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.507756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5077706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.50861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.50862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.508643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5087475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.508756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5087706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.50961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5096295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.509643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5097475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.509757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.509770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.51061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5106295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.510643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5107475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.510756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5107706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.51161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5116295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.51164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5117475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.511756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5117706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.51261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5126326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.512646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5127475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.512756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5127706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.51361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5136295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.513643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5137475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.513757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.513770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.51461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5146295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.514643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5147475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.514756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5147706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.51561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5156295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.51564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5157475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.515756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5157706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.51661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.51662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.516643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5167475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.516756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5167706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.51761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5176295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.517643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5177475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.517757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.517770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.51861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5186295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.518643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5187475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.518756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5187706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.51961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5196295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.51964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5197475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.519756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5197706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.52061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.52062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.520643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5207475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.520756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5207706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.52161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5216295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.521643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5217475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.521757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.521770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.52261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5226295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.522643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5227475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.522756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5227706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.52361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 2.523629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.523638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 2.523652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 170, + "ts": 2.523677 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.5236921 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.5237061 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5237475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2850) example: Task[0x3ffb7f40]: allocated 170 bytes @ 0x3ffb4b10\n", + "ts": 2.523768375 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2850) example: Task[0x3ffb7f40]: allocated 170 bytes @ 0x3ffb4b10\n", + "ts": 2.523768375 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.523777525 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 2.5237858 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5237964 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 2.5238072 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.5238202 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.52382875 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.523836675 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 2.523845225 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 2.52385785 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.523866225 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 2.52387455 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.523883425 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.523892825 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5239021 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.523916925 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2850) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", + "ts": 2.523966175 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2850) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", + "ts": 2.523966175 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.523984575 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 2.524002575 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.52401525 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.52402405 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.524039625 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.52461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 2.524629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5246388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 2.524652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 340, + "ts": 2.524677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.5246897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.524703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5247475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2851) example: Task[0x3ffb82a0]: allocated 340 bytes @ 0x3ffb4b10\n", + "ts": 2.524769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2851) example: Task[0x3ffb82a0]: allocated 340 bytes @ 0x3ffb4b10\n", + "ts": 2.524769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.52478125 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 2.52478975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.524800125 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 2.5248109 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.524823925 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.52483245 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.524840425 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 2.524849 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 2.52486165 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.524870025 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 2.52487835 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.524887225 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.5248966 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5249058 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.524920625 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2851) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.524969875 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2851) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.524969875 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.524985475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 2.525007925 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.5250206 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5250294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.525044975 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.52561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 2.525629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5256388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 2.525652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 510, + "ts": 2.525676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.525689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.525703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5257475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2852) example: Task[0x3ffb8600]: allocated 510 bytes @ 0x3ffb4b10\n", + "ts": 2.52576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2852) example: Task[0x3ffb8600]: allocated 510 bytes @ 0x3ffb4b10\n", + "ts": 2.52576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5257782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 2.5257867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.525797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 2.52580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.525820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.5258294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.525837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 2.52584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 2.5258586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.525866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 2.52587925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.525887275 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.525895725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.525905825 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.52592075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2852) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.5259701 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2852) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.5259701 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.525985475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 2.5260036 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.526016425 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5260252 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.52604065 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.52661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.52662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.526643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5267475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.526756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5267706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.52761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5276295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.527643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5277475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.527757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.527770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.52861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5286295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.528643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5287475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.528756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5287706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.52961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5296295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.52964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5297475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.529756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5297706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.53061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5306326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.530646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5307475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.530756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5307706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.53161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5316295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.531643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5317475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.531757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.531770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.53261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5326295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.532643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5327475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.532756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5327706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.53361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5336295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.53364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5337475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.533756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5337706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.53461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.53462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.534643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5347475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.534756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5347706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.53561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5356295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.535643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5357475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.535757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.535770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.53661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5366295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.536643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5367475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.536756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5367706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.53761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5376295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.53764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5377475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.537756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5377706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.53861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.53862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.538643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5387475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.538756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5387706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.53961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5396295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.539643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5397475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.539757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.539770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.54061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5406295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.540643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5407475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.540756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5407706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.54161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5416295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.54164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5417475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.541756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5417706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.54261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.542631925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.54264555 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5427475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.542756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5427706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.54361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5436295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.543643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5437475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.543757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.543770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.54461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5446295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.544643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5447475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.544756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5447706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.54561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5456295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.54564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5457475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.545756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5457706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.54661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.54662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.546643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5467475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.546756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5467706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.54761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5476295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.547643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5477475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.547757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.547770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.54861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5486295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.548643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5487475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.548756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5487706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.54961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5496295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.54964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5497475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.549756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5497706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.55061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.55062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.550643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5507475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.550756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5507706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.55161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5516295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.551643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5517475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.551757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.551770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.55261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5526295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.552643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5527475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.552756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5527706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.55361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 2.553629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.553638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 2.553652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 172, + "ts": 2.553677 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.553692775 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.553706775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5537475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2880) example: Task[0x3ffb7f40]: allocated 172 bytes @ 0x3ffb4b10\n", + "ts": 2.55376895 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2880) example: Task[0x3ffb7f40]: allocated 172 bytes @ 0x3ffb4b10\n", + "ts": 2.55376895 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.553777025 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 2.553785775 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.553795925 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 2.5538067 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.553819725 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.55382825 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5538362 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 2.553844725 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 2.55385735 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.55386575 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 2.55387405 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.553882925 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.553892325 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.553901625 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.55391645 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2880) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", + "ts": 2.5539657 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2880) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", + "ts": 2.5539657 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.553984175 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 2.554002175 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.55401485 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.55402365 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.554039225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.55461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 2.554629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5546388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 2.554652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 344, + "ts": 2.554677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.5546897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.554703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5547475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2881) example: Task[0x3ffb82a0]: allocated 344 bytes @ 0x3ffb4b10\n", + "ts": 2.554769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2881) example: Task[0x3ffb82a0]: allocated 344 bytes @ 0x3ffb4b10\n", + "ts": 2.554769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.55478005 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 2.55478905 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.55479895 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 2.554809725 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.55482275 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.554831275 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.55483925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 2.554847825 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 2.554860475 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.55486885 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 2.554877175 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.55488605 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.554895425 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.554904625 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.55491945 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2881) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.5549687 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2881) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.5549687 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.5549843 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 2.55500535 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.55501805 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.55502685 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.555042425 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.55561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 2.555629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5556388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 2.555652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 516, + "ts": 2.555676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.555689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.555703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5557475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2882) example: Task[0x3ffb8600]: allocated 516 bytes @ 0x3ffb4b10\n", + "ts": 2.55576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2882) example: Task[0x3ffb8600]: allocated 516 bytes @ 0x3ffb4b10\n", + "ts": 2.55576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5557782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 2.5557867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.555797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 2.55580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.555820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.5558294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.555837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 2.55584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 2.5558586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.555866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 2.55587925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.555887275 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.555895725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.555905825 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.55592075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2882) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.5559701 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2882) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.5559701 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.555985475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 2.5560036 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.556016425 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5560252 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.55604065 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.55661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.55662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.556643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5567475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.556756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5567706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.55761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5576295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.557643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5577475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.557757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.557770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.55861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5586295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.558643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5587475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.558756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5587706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.55961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5596295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.55964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5597475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.559756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5597706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.56061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5606326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.560646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5607475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.560756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5607706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.56161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5616295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.561643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5617475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.561757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.561770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.56261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5626295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.562643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5627475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.562756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5627706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.56361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5636295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.56364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5637475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.563756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5637706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.56461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.56462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.564643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5647475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.564756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5647706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.56561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5656295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.565643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5657475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.565757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.565770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.56661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5666295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.566643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5667475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.566756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5667706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.56761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5676295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.56764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5677475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.567756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5677706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.56861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.56862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.568643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5687475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.568756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5687706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.56961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5696295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.569643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5697475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.569757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.569770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.57061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5706295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.570643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5707475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.570756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5707706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.57161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5716295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.57164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5717475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.571756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5717706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.57261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.572631925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.57264555 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5727475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.572756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5727706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.57361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5736295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.573643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5737475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.573757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.573770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.57461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5746295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.574643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5747475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.574756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5747706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.57561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5756295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.57564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5757475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.575756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5757706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.57661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.57662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.576643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5767475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.576756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5767706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.57761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5776295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.577643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5777475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.577757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.577770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.57861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5786295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.578643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5787475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.578756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5787706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.57961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5796295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.57964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5797475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.579756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5797706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.58061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.58062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.580643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5807475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.580756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5807706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.58161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5816295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.581643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5817475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.581757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.581770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.58261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5826295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.582643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5827475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.582756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5827706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.58361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 2.583629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.583638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 2.583652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 174, + "ts": 2.583677 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.583692775 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.583706775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5837475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2910) example: Task[0x3ffb7f40]: allocated 174 bytes @ 0x3ffb4b10\n", + "ts": 2.58376895 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2910) example: Task[0x3ffb7f40]: allocated 174 bytes @ 0x3ffb4b10\n", + "ts": 2.58376895 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.583777025 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 2.583785775 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.583795925 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 2.5838067 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.583819725 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.58382825 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5838362 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 2.583844725 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 2.58385735 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.58386575 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 2.58387405 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.583882925 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.583892325 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.583901625 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.58391645 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2910) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", + "ts": 2.5839657 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2910) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", + "ts": 2.5839657 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.583984175 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 2.584002175 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.58401485 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.58402365 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.584039225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.58461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 2.584629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5846388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 2.584652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 348, + "ts": 2.584677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.5846897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.584703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5847475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2911) example: Task[0x3ffb82a0]: allocated 348 bytes @ 0x3ffb4b10\n", + "ts": 2.584769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2911) example: Task[0x3ffb82a0]: allocated 348 bytes @ 0x3ffb4b10\n", + "ts": 2.584769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.58478005 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 2.58478905 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.58479895 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 2.584809725 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.58482275 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.584831275 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.58483925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 2.584847825 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 2.584860475 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.58486885 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 2.584877175 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.58488605 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.584895425 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.584904625 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.58491945 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2911) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.5849687 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2911) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.5849687 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.5849843 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 2.58500535 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.58501805 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.58502685 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.585042425 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.58561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 2.585629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5856388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 2.585652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 522, + "ts": 2.585676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.585689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.585703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5857475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2912) example: Task[0x3ffb8600]: allocated 522 bytes @ 0x3ffb4b10\n", + "ts": 2.58576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2912) example: Task[0x3ffb8600]: allocated 522 bytes @ 0x3ffb4b10\n", + "ts": 2.58576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5857782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 2.5857867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.585797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 2.58580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.585820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.5858294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.585837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 2.58584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 2.5858586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.585866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 2.58587925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.585887275 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.585895725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.585905825 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.58592075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2912) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.5859701 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2912) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.5859701 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.585985475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 2.5860036 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.586016425 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5860252 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.58604065 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.58661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.58662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.586643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5867475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.586756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5867706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.58761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5876295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.587643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5877475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.587757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.587770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.58861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5886295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.588643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5887475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.588756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5887706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.58961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5896295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.58964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5897475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.589756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5897706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.59061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5906326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.590646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5907475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.590756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5907706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.59161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5916295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.591643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5917475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.591757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.591770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.59261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5926295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.592643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5927475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.592756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5927706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.59361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5936295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.59364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5937475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.593756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5937706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.59461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.59462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.594643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5947475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.594756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5947706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.59561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5956295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.595643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5957475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.595757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.595770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.59661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5966295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.596643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5967475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.596756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5967706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.59761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5976295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.59764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5977475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.597756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5977706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.59861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.59862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.598643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5987475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.598756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.5987706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.59961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.5996295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.599643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.5997475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.599757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.599770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.60061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6006295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.600643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6007475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.600756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6007706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.60161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6016295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.60164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6017475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.601756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6017706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.60261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.602631925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.60264555 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6027475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.602756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6027706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.60361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6036295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.603643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6037475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.603757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.603770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.60461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6046295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.604643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6047475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.604756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6047706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.60561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6056295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.60564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6057475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.605756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6057706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.60661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.60662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.606643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6067475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.606756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6067706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.60761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6076295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.607643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6077475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.607757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.607770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.60861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6086295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.608643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6087475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.608756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6087706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.60961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6096295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.60964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6097475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.609756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6097706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.61061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.61062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.610643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6107475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.610756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6107706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.61161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6116295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.611643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6117475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.611757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.611770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.61261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6126295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.612643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6127475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.612756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6127706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.61361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 2.613629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.613638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 2.613652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 176, + "ts": 2.613677 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.613692775 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.613706775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6137475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2940) example: Task[0x3ffb7f40]: allocated 176 bytes @ 0x3ffb4b10\n", + "ts": 2.61376895 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2940) example: Task[0x3ffb7f40]: allocated 176 bytes @ 0x3ffb4b10\n", + "ts": 2.61376895 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.613777025 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 2.613785775 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.613795925 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 2.6138067 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.613819725 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.61382825 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6138362 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 2.613844725 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 2.61385735 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.61386575 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 2.61387405 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.613882925 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.613892325 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.613901625 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.61391645 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2940) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", + "ts": 2.6139657 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2940) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", + "ts": 2.6139657 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.613984175 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 2.614002175 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.61401485 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.61402365 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.614039225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.61461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 2.614629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6146388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 2.614652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 352, + "ts": 2.614677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.6146897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.614703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6147475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2941) example: Task[0x3ffb82a0]: allocated 352 bytes @ 0x3ffb4b10\n", + "ts": 2.614769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2941) example: Task[0x3ffb82a0]: allocated 352 bytes @ 0x3ffb4b10\n", + "ts": 2.614769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.61478005 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 2.61478905 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.61479895 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 2.614809725 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.61482275 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.614831275 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.61483925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 2.614847825 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 2.614860475 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.61486885 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 2.614877175 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.61488605 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.614895425 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.614904625 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.61491945 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2941) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.6149687 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2941) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.6149687 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.6149843 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 2.61500535 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.61501805 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.61502685 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.615042425 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.61561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 2.615629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6156388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 2.615652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 528, + "ts": 2.615676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.615689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.615703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6157475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2942) example: Task[0x3ffb8600]: allocated 528 bytes @ 0x3ffb4b10\n", + "ts": 2.61576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2942) example: Task[0x3ffb8600]: allocated 528 bytes @ 0x3ffb4b10\n", + "ts": 2.61576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6157782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 2.6157867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.615797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 2.61580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.615820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.6158294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.615837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 2.61584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 2.6158586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.615866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 2.61587925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.615887275 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.615895725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.615905825 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.61592075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2942) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.6159701 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2942) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.6159701 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.615985475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 2.6160036 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.616016425 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6160252 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.61604065 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.61661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.61662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.616643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6167475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.616756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6167706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.61761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6176295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.617643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6177475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.617757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.617770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.61861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6186295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.618643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6187475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.618756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6187706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.61961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6196295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.61964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6197475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.619756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6197706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.62061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6206326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.620646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6207475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.620756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6207706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.62161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6216295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.621643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6217475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.621757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.621770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.62261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6226295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.622643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6227475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.622756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6227706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.62361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6236295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.62364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6237475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.623756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6237706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.62461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.62462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.624643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6247475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.624756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6247706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.62561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6256295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.625643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6257475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.625757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.625770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.62661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6266295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.626643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6267475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.626756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6267706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.62761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6276295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.62764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6277475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.627756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6277706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.62861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.62862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.628643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6287475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.628756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6287706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.62961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6296295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.629643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6297475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.629757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.629770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.63061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6306295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.630643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6307475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.630756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6307706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.63161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6316295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.63164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6317475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.631756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6317706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.63261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.632631925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.63264555 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6327475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.632756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6327706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.63361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6336295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.633643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6337475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.633757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.633770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.63461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6346295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.634643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6347475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.634756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6347706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.63561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6356295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.63564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6357475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.635756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6357706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.63661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.63662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.636643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6367475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.636756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6367706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.63761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6376295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.637643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6377475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.637757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.637770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.63861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6386295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.638643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6387475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.638756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6387706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.63961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6396295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.63964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6397475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.639756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6397706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.64061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.64062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.640643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6407475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.640756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6407706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.64161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6416295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.641643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6417475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.641757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.641770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.64261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6426295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.642643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6427475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.642756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6427706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.64361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 2.643629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.643638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 2.643652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 178, + "ts": 2.643677 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.643692775 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.643706775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6437475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2970) example: Task[0x3ffb7f40]: allocated 178 bytes @ 0x3ffb4b10\n", + "ts": 2.64376895 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2970) example: Task[0x3ffb7f40]: allocated 178 bytes @ 0x3ffb4b10\n", + "ts": 2.64376895 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.643777025 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 2.643785775 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.643795925 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 2.6438067 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.643819725 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.64382825 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6438362 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 2.643844725 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 2.64385735 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.64386575 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 2.64387405 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.643882925 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.643892325 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.643901625 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.64391645 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2970) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", + "ts": 2.6439657 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2970) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", + "ts": 2.6439657 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.643984175 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 2.644002175 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.64401485 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.64402365 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.644039225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.64461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 2.644629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6446388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 2.644652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 356, + "ts": 2.644677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.6446897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.644703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6447475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2971) example: Task[0x3ffb82a0]: allocated 356 bytes @ 0x3ffb4b10\n", + "ts": 2.644769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2971) example: Task[0x3ffb82a0]: allocated 356 bytes @ 0x3ffb4b10\n", + "ts": 2.644769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.64478005 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 2.64478905 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.64479895 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 2.644809725 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.64482275 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.644831275 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.64483925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 2.644847825 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 2.644860475 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.64486885 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 2.644877175 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.64488605 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.644895425 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.644904625 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.64491945 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2971) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.6449687 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2971) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.6449687 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.6449843 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 2.64500535 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.64501805 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.64502685 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.645042425 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.64561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 2.645629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6456388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 2.645652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 534, + "ts": 2.645676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.645689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.645703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6457475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2972) example: Task[0x3ffb8600]: allocated 534 bytes @ 0x3ffb4b10\n", + "ts": 2.64576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2972) example: Task[0x3ffb8600]: allocated 534 bytes @ 0x3ffb4b10\n", + "ts": 2.64576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6457782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 2.6457867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.645797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 2.64580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.645820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.6458294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.645837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 2.64584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 2.6458586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.645866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 2.64587925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.645887275 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.645895725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.645905825 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.64592075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2972) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.6459701 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (2972) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.6459701 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.645985475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 2.6460036 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.646016425 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6460252 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.64604065 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.64661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.64662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.646643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6467475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.646756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6467706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.64761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6476295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.647643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6477475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.647757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.647770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.64861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6486295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.648643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6487475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.648756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6487706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.64961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6496295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.64964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6497475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.649756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6497706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.65061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6506326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.650646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6507475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.650756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6507706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.65161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6516295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.651643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6517475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.651757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.651770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.65261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6526295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.652643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6527475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.652756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6527706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.65361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6536295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.65364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6537475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.653756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6537706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.65461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.65462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.654643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6547475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.654756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6547706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.65561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6556295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.655643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6557475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.655757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.655770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.65661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6566295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.656643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6567475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.656756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6567706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.65761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6576295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.65764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6577475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.657756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6577706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.65861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.65862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.658643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6587475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.658756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6587706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.65961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6596295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.659643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6597475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.659757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.659770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.66061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6606295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.660643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6607475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.660756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6607706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.66161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6616295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.66164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6617475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.661756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6617706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.66261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.662631925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.66264555 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6627475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.662756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6627706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.66361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6636295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.663643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6637475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.663757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.663770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.66461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6646295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.664643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6647475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.664756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6647706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.66561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6656295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.66564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6657475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.665756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6657706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.66661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.66662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.666643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6667475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.666756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6667706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.66761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6676295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.667643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6677475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.667757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.667770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.66861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6686295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.668643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6687475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.668756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6687706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.66961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6696295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.66964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6697475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.669756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6697706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.67061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.67062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.670643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6707475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.670756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6707706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.67161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6716295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.671643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6717475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.671757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.671770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.67261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6726295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.672643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6727475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.672756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6727706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.67361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 2.673629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.673638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 2.673652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 180, + "ts": 2.673677 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.673692775 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.673706775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6737475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (3000) example: Task[0x3ffb7f40]: allocated 180 bytes @ 0x3ffb4b10\n", + "ts": 2.67376895 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (3000) example: Task[0x3ffb7f40]: allocated 180 bytes @ 0x3ffb4b10\n", + "ts": 2.67376895 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.673777025 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 2.673785775 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6737959 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 2.6738067 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.6738197 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.67382825 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.673836175 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 2.673844725 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 2.67385735 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.673865725 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 2.67387405 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.673882925 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.673892325 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6739016 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.673916425 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (3000) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", + "ts": 2.673965675 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (3000) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", + "ts": 2.673965675 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.67398415 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 2.67400215 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.67401485 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.67402365 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.674039225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.67461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 2.674629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6746388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 2.674652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 360, + "ts": 2.674677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.6746897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.674703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6747475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (3001) example: Task[0x3ffb82a0]: allocated 360 bytes @ 0x3ffb4b10\n", + "ts": 2.674769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (3001) example: Task[0x3ffb82a0]: allocated 360 bytes @ 0x3ffb4b10\n", + "ts": 2.674769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.67478005 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 2.67478905 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.67479895 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 2.674809725 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.67482275 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.674831275 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.67483925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 2.674847825 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 2.674860475 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.67486885 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 2.674877175 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.67488605 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.674895425 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.674904625 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.67491945 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (3001) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.6749687 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (3001) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.6749687 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.6749843 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 2.67500535 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.67501805 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.67502685 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.675042425 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.67561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 2.675629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6756388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 2.675652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 540, + "ts": 2.675676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.675689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.675703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6757475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (3002) example: Task[0x3ffb8600]: allocated 540 bytes @ 0x3ffb4b10\n", + "ts": 2.67576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (3002) example: Task[0x3ffb8600]: allocated 540 bytes @ 0x3ffb4b10\n", + "ts": 2.67576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6757782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 2.6757867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.675797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 2.67580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.675820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.6758294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.675837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 2.67584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 2.6758586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.675866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 2.67587925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.675887275 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.675895725 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.675905825 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.67592075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (3002) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.6759701 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (3002) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.6759701 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free2", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.675985475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 2.6760036 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.676016425 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6760252 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.67604065 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.67661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.67662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.676643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6767475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.676756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6767706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.67761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6776295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.677643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6777475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.677757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.677770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.67861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6786295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.678643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6787475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.678756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6787706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.67961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6796295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.67964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6797475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.679756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6797706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.68061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6806326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.680646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6807475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.680756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6807706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.68161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6816295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.681643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6817475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.681757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.681770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.68261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6826295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.682643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6827475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.682756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6827706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.68361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6836295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.68364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6837475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.683756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6837706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.68461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.68462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.684643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6847475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.684756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6847706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.68561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6856295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.685643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6857475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.685757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.685770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.68661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6866295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.686643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6867475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.686756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6867706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.68761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6876295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.68764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6877475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.687756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6877706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.68861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.68862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.688643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6887475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.688756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6887706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.68961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6896295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.689643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6897475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.689757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.689770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.69061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6906295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.690643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6907475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.690756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6907706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.69161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6916295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.69164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6917475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.691756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6917706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.69261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.692631925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.69264555 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6927475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.692756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6927706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.69361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6936295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.693643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6937475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.693757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.693770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.69461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6946295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.694643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6947475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.694756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6947706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.69561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6956295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.69564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6957475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.695756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6957706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.69661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.69662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.696643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6967475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.696756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6967706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.69761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6976295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.697643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6977475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.697757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.697770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.69861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6986295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.698643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6987475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.698756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6987706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.69961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.6996295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.69964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.6997475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.699756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.6997706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.70061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.70062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.700643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.7007475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.700756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.7007706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.70161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.7016295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.701643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.7017475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.701757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.701770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.70261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.7026295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.702643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.7027475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.702756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.7027706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.70361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 2.703629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.703638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 2.703652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 182, + "ts": 2.703677 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.703692775 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.703706775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.7037475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (3030) example: Task[0x3ffb7f40]: allocated 182 bytes @ 0x3ffb4b10\n", + "ts": 2.70376895 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (3030) example: Task[0x3ffb7f40]: allocated 182 bytes @ 0x3ffb4b10\n", + "ts": 2.70376895 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.703777025 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 2.703785775 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.703795925 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 2.7038067 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.703819725 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.70382825 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.7038362 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12287808 + }, + "ts": 2.703844725 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 2.70385735 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.70386575 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 2.703874 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.703882875 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.70389225 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.703901525 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.70391635 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (3030) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", + "ts": 2.7039656 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (3030) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", + "ts": 2.7039656 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free0", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.703984075 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 2.704002075 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.704014775 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.704023575 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.70403915 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.70461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 2.704629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.7046388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 2.704652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 364, + "ts": 2.704677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.7046897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.704703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.7047475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (3031) example: Task[0x3ffb82a0]: allocated 364 bytes @ 0x3ffb4b10\n", + "ts": 2.704769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (3031) example: Task[0x3ffb82a0]: allocated 364 bytes @ 0x3ffb4b10\n", + "ts": 2.704769475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.70478005 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 2.70478905 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.70479895 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 2.704809725 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.70482275 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.704831275 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.70483925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12288672 + }, + "ts": 2.704847825 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 2.704860475 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.70486885 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 2.7048771 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.704885975 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.70489535 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.704904525 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.70491935 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (3031) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.7049686 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (3031) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.7049686 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3b82", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 2.7049842 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 2.705005275 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.70501795 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.70502675 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.705042325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.70561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 2.705629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.7056388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 2.705652975 + }, + { + "addr": "0x3ffb4b10", + "callers": [ + "0x400d3ad0", + "0x40089bbc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 546, + "ts": 2.705676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.705689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.705703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.7057475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (3032) example: Task[0x3ffb8600]: allocated 546 bytes @ 0x3ffb4b10\n", + "ts": 2.70576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (3032) example: Task[0x3ffb8600]: allocated 546 bytes @ 0x3ffb4b10\n", + "ts": 2.70576945 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.7057782 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 2.7057867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.705797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 2.70580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.705820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.7058294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.705837375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 7, + "in_irq": false, + "params": { + "cause": 4, + "tid": 12289536 + }, + "ts": 2.70584595 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 2.7058586 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.705866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 2.705879175 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.705887225 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.705895675 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.705905775 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.705920725 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (3032) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.705970075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (3032) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.705970075 + }, + { + "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.70598545 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 2.706003575 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.7060164 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.70602515 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.7060406 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.70661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.70662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.706643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.7067475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.706756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.7067706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.70761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.7076295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.707643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.7077475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.707757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.707770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.70861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.7086295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.708643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.7087475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.708756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.7087706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.70961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.7096295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.70964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.7097475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.709756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.7097706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.71061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.7106326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.710646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.7107475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.710756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.7107706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.71161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.7116295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.711643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.7117475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.711757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.711770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.71261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.7126295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.712643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.7127475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.712756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.7127706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.71361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.7136295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.71364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.7137475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.713756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.7137706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.71461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.71462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.714643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.7147475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.714756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.7147706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.71561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.7156295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.715643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.7157475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.715757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.715770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.71661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.7166295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.716643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.7167475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.716756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.7167706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.71761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.7176295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.71764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.7177475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.717756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.7177706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.71861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.71862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.718643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.7187475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.718756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.7187706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.71961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.7196295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.719643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.7197475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.719757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.719770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.72061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.7206295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.720643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.7207475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.720756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.7207706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.72161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.7216295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.72164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.7217475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.721756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.7217706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.72261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.722631925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.72264555 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.7227475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.722756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.7227706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.72361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.7236295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.723643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.7237475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.723757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.723770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.72461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.7246295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.724643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.7247475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.724756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.7247706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.72561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.7256295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.72564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.7257475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.725756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.7257706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.72661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.72662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.726643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.7267475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.726756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.7267706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.72761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.7276295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.727643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.7277475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.727757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.727770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.72861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.7286295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.728643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.7287475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.728756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.7287706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.72961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.7296295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.72964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.7297475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.729756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.7297706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.73061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.73062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.730643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.7307475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.730756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.7307706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.73161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.7316295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.731643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.7317475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.731757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.731770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.73261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.7326295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.732643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.7327475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.732756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.7327706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.73361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 2.733629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.733638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 2.733652975 + }, + { + "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": 184, + "ts": 2.733677 + }, + { + "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", + "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", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 186, + "ts": 2.763677 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.763692775 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.763706775 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.7637475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (3090) example: Task[0x3ffb7f40]: allocated 186 bytes @ 0x3ffb4b10\n", + "ts": 2.76376895 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "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 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 2.763785775 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.763795925 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 2.7638067 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.763819725 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.76382825 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "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 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.76386575 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 2.76387405 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.763882925 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.763892325 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.763901625 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.76391645 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (3090) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", + "ts": 2.7639657 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (3090) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", + "ts": 2.7639657 + }, + { + "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.763984175 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 2.764002175 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.76401485 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.76402365 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.764039225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.76461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 2.764629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.7646388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 2.764652975 + }, + { + "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": 372, + "ts": 2.764677 + }, + { + "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", + "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", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 376, + "ts": 2.794677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.7946897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.794703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.7947475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (3121) example: Task[0x3ffb82a0]: allocated 376 bytes @ 0x3ffb4b10\n", + "ts": 2.794769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "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 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 2.79478905 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.79479895 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 2.794809725 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.79482275 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.794831275 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "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 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.79486885 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 2.794877175 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.79488605 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.794895425 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.794904625 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.79491945 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (3121) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.7949687 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (3121) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.7949687 + }, + { + "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.7949843 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 2.79500535 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.79501805 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.79502685 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.795042425 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.79561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 2.795629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.7956388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 2.795652975 + }, + { + "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": 564, + "ts": 2.795676975 + }, + { + "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", + "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", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 570, + "ts": 2.825676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.825689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.825703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.8257475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (3152) example: Task[0x3ffb8600]: allocated 570 bytes @ 0x3ffb4b10\n", + "ts": 2.82576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "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 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 2.8257867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.825797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 2.82580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.825820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.8258294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "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 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.825866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 2.8258792 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.825887225 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.825895675 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.8259058 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.825920725 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (3152) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.825970075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (3152) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.825970075 + }, + { + "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.82598545 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 2.826003575 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.8260164 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.826025175 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "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 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.8267475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.826756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.8267706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.82761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.8276295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.827643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.8277475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.827757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.827770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.82861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.8286295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.828643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.8287475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.828756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.8287706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.82961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.8296295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.82964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.8297475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.829756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.8297706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.83061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.830631925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.83064555 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.8307475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.830756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.8307706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.83161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.8316295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.831643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.8317475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.831757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.831770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.83261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.8326295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.832643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.8327475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.832756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.8327706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.83361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.8336295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.83364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.8337475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.833756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.8337706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.83461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.83462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.834643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.8347475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.834756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.8347706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.83561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.8356295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.835643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.8357475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.835757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.835770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.83661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.8366295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.836643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.8367475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.836756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.8367706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.83761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.8376295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.83764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.8377475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.837756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.8377706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.83861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.83862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.838643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.8387475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.838756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.8387706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.83961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.8396295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.839643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.8397475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.839757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.839770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.84061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.8406295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.840643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.8407475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.840756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.8407706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.84161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.8416295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.84164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.8417475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.841756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.8417706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.84261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.8426326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.842646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.8427475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.842756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.8427706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.84361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.8436295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.843643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.8437475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.843757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.843770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.84461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.8446295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.844643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.8447475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.844756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.8447706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.84561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.8456295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.84564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.8457475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.845756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.8457706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.84661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.84662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.846643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.8467475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.846756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.8467706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.84761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.8476295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.847643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.8477475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.847757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.847770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.84861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.8486295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.848643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.8487475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.848756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.8487706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.84961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.8496295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.84964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.8497475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.849756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.8497706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.85061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.85062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.850643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.8507475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.850756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.8507706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.85161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.8516295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.851643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.8517475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.851757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.851770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.85261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.8526295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.852643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.8527475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.852756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.8527706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.85361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 2.853629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.853638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 2.853652975 + }, + { + "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": 192, + "ts": 2.853677 + }, + { + "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", + "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", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc0", + "id": 512, + "in_irq": false, + "size": 194, + "ts": 2.883677 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.8836921 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.8837061 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.8837475 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (3210) example: Task[0x3ffb7f40]: allocated 194 bytes @ 0x3ffb4b10\n", + "ts": 2.883768375 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "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 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12288168, + "xTicksToWait": 0 + }, + "ts": 2.8837858 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.8837964 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12288292 + }, + "ts": 2.8838072 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.8838202 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.88382875 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "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 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.883866225 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12295008, + "xJustPeek": 0, + "xQueue": 12288168, + "xTicksToWait": 4294967295 + }, + "ts": 2.88387455 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.883883425 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.883892825 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.8839021 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.883916925 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (3210) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", + "ts": 2.883966175 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (3210) example: Task[0x3ffb8124]: free memory @ 0x3ffb4b10\n", + "ts": 2.883966175 + }, + { + "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.883984575 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12288292 + }, + "ts": 2.884002575 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.88401525 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.88402405 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.884039625 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.88461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 2.884629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.8846388 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 2.884652975 + }, + { + "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": 388, + "ts": 2.884677 + }, + { + "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", + "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", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc1", + "id": 512, + "in_irq": false, + "size": 392, + "ts": 2.914677 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.9146897 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.914703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.9147475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (3241) example: Task[0x3ffb82a0]: allocated 392 bytes @ 0x3ffb4b10\n", + "ts": 2.914769475 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "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 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289032, + "xTicksToWait": 0 + }, + "ts": 2.91478975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.914800125 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12289156 + }, + "ts": 2.9148109 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.914823925 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.91483245 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "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 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.914870025 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12300016, + "xJustPeek": 0, + "xQueue": 12289032, + "xTicksToWait": 4294967295 + }, + "ts": 2.91487835 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.914887225 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.9148966 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.9149058 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.914920625 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (3241) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.914969875 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (3241) example: Task[0x3ffb8484]: free memory @ 0x3ffb4b10\n", + "ts": 2.914969875 + }, + { + "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.914985475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12289156 + }, + "ts": 2.915005825 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.915018525 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.915027325 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.9150429 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.91561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 2.915629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.9156388 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 2.915652975 + }, + { + "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": 588, + "ts": 2.915676975 + }, + { + "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", + "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", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 0, + "ctx_name": "alloc2", + "id": 512, + "in_irq": false, + "size": 594, + "ts": 2.945676975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.945689675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.945703675 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.9457475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (3272) example: Task[0x3ffb8600]: allocated 594 bytes @ 0x3ffb4b10\n", + "ts": 2.94576945 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "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 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12289896, + "xTicksToWait": 0 + }, + "ts": 2.9457867 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.945797075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274088 + }, + "ts": 2.94580785 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.945820875 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 2.9458294 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "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 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.945866975 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 12305024, + "xJustPeek": 0, + "xQueue": 12289896, + "xTicksToWait": 4294967295 + }, + "ts": 2.9458792 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.945887225 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.945895675 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.9459058 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.945920725 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (3272) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.945970075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (3272) example: Task[0x3ffb49a8]: free memory @ 0x3ffb4b10\n", + "ts": 2.945970075 + }, + { + "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.94598545 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 7, + "in_irq": false, + "params": { + "cause": 27, + "tid": 12274088 + }, + "ts": 2.946003575 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 2.9460164 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.946025175 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "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 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.9467475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.946756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.9467706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.94761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.9476295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.947643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.9477475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.947757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.947770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.94861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.9486295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.948643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.9487475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.948756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.9487706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.94961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.9496295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.94964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.9497475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.949756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.9497706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.95061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.950631925 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.95064555 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.9507475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.950756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.9507706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.95161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.9516295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.951643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.9517475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.951757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.951770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.95261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.9526295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.952643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.9527475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.952756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.9527706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.95361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.9536295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.95364325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.9537475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.953756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.9537706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.95461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.95462955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.954643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.9547475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.954756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.9547706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.95561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.9556295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.955643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.9557475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.955757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.955770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.95661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.9566295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.956643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.9567475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.956756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.9567706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.95761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.9576295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.95764325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.9577475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.957756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.9577706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.95861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.95862955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.958643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.9587475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.958756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.9587706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.95961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.9596295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.959643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.9597475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.959757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.959770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.96061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.9606295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.960643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.9607475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.960756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.9607706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.96161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.9616295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.96164325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.9617475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.961756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.9617706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.96261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.9626326 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.962646225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.9627475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.962756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.9627706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.96361795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.9636295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.963643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.9637475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.963757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.963770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.96461795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.9646295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.964643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.9647475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.964756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.9647706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.96561795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.9656295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.96564325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.9657475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.965756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.9657706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.96661795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.96662955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.966643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.9667475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.966756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.9667706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.96761795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.9676295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.967643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.9677475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.967757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.967770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.96861795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.9686295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.968643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.9687475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.968756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.9687706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.96961795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.9696295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.96964325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.9697475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.969756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.9697706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.97061795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.97062955 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.970643175 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.9707475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.970756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.9707706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.97161795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.9716295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.971643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.9717475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.971757 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.971770775 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.97261795 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.9726295 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.972643125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.9727475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.972756975 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.9727706 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.97361795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12287808 + }, + "ts": 2.973629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.973638825 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287808 + }, + "ts": 2.973652975 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12280900 + }, + "ts": 2.97366405 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "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 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.97369775 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.9737065 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 4, + "in_irq": false, + "params": { + "tid": 12280900 + }, + "ts": 2.973722375 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.973737475 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.9737486 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "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 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (3300) example: Got notify val 1\n", + "ts": 2.973801325 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (3300) example: Got notify val 1\n", + "ts": 2.973801325 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.973813625 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.97382765 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (3300) example: Wait notify 1\n", + "ts": 2.9738646 + }, + { + "core_id": 0, + "ctx_name": "main", + "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 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.97388695 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.97389565 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.97391015 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.97461795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12288672 + }, + "ts": 2.974629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.974638825 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12288672 + }, + "ts": 2.974652975 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12280900 + }, + "ts": 2.97466405 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 34, + "in_irq": false, + "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 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.974695575 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.974704275 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 4, + "in_irq": false, + "params": { + "tid": 12280900 + }, + "ts": 2.974720025 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.97473515 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.9747485 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "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 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (3301) example: Got notify val 1\n", + "ts": 2.974797575 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (3301) example: Got notify val 1\n", + "ts": 2.974797575 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.97481 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "xTicksToWait": 0 + }, + "ts": 2.974824 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (3301) example: Wait notify 2\n", + "ts": 2.974860925 + }, + { + "core_id": 0, + "ctx_name": "main", + "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 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.974883275 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.974892 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 2.974906475 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.97561795 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12289536 + }, + "ts": 2.975629375 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.97563885 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12289536 + }, + "ts": 2.975653025 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12280900 + }, + "ts": 2.97566405 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 34, + "in_irq": false, + "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 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 2.9756954 + }, + { + "core_id": 0, + "ctx_name": "IDLE0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 2.975704125 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 4, + "in_irq": false, + "params": { + "tid": 12280900 + }, + "ts": 2.97571985 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12276584, + "xTicksToWait": 10 + }, + "ts": 2.975735025 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 2.97574835 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12276584, + "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 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (3302) example: Got notify val 1\n", + "ts": 2.975795775 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (3302) example: Got notify val 1\n", + "ts": 2.975795775 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 33, + "in_irq": false, + "params": { + "xTaskToDelete": 12280900 + }, + "ts": 3.096449025 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 11, + "in_irq": false, + "params": {}, + "ts": 3.096456075 + } + ], + "streams": { + "heap": { + "alloc": 512, + "free": 513 + }, + "log": { + "print": 26 + }, + "os": { + "eTaskConfirmSleepModeStatus": 157, + "eTaskGetState": 130, + "esp_sysview_heap_trace_alloc": 512, + "esp_sysview_heap_trace_free": 513, + "pcTaskGetTaskName": 137, + "pcTimerGetTimerName": 165, + "pvTaskGetThreadLocalStoragePointer": 142, + "pvTimerGetTimerID": 159, + "ulTaskNotifyTake": 37, + "uxEventGroupGetNumber": 200, + "uxListRemove": 193, + "uxQueueMessagesWaiting": 168, + "uxQueueMessagesWaitingFromISR": 170, + "uxQueueSpacesAvailable": 169, + "uxTaskGetNumberOfTasks": 136, + "uxTaskGetStackHighWaterMark": 138, + "uxTaskGetSystemState": 145, + "uxTaskGetTaskNumber": 155, + "uxTaskPriorityGet": 129, + "uxTaskPriorityGetFromISR": 56, + "vEventGroupDelete": 199, + "vListInitialise": 189, + "vListInitialiseItem": 190, + "vListInsert": 191, + "vListInsertEnd": 192, + "vQueueAddToRegistry": 52, + "vQueueDelete": 48, + "vQueueUnregisterQueue": 182, + "vTaskAllocateMPURegions": 128, + "vTaskDelay": 34, + "vTaskDelayUntil": 35, + "vTaskDelete": 33, + "vTaskEndScheduler": 132, + "vTaskGetRunTimeStats": 147, + "vTaskList": 146, + "vTaskMissedYield": 152, + "vTaskNotifyGiveFromISR": 38, + "vTaskPriorityInherit": 39, + "vTaskPrioritySet": 55, + "vTaskResume": 40, + "vTaskSetApplicationTaskTag": 139, + "vTaskSetTaskNumber": 156, + "vTaskSetThreadLocalStoragePointer": 141, + "vTaskSetTimeOutState": 150, + "vTaskStartScheduler": 131, + "vTaskStepTick": 41, + "vTaskSuspend": 36, + "vTaskSuspendAll": 133, + "vTimerSetTimerID": 160, + "xEventGroupClearBits": 196, + "xEventGroupClearBitsFromISR": 58, + "xEventGroupCreate": 194, + "xEventGroupGetBitsFromISR": 60, + "xEventGroupSetBits": 197, + "xEventGroupSetBitsFromISR": 59, + "xEventGroupSync": 198, + "xEventGroupWaitBits": 195, + "xQueueAddToSet": 184, + "xQueueAltGenericReceive": 172, + "xQueueAltGenericSend": 171, + "xQueueCRReceive": 176, + "xQueueCRReceiveFromISR": 174, + "xQueueCRSend": 175, + "xQueueCRSendFromISR": 173, + "xQueueCreateCountingSemaphore": 178, + "xQueueCreateMutex": 177, + "xQueueCreateSet": 183, + "xQueueGenericCreate": 47, + "xQueueGenericReceive": 49, + "xQueueGenericReset": 188, + "xQueueGenericSend": 53, + "xQueueGenericSendFromISR": 54, + "xQueueGetMutexHolder": 179, + "xQueueGiveFromISR": 61, + "xQueueGiveMutexRecursive": 181, + "xQueueIsQueueEmptyFromISR": 62, + "xQueueIsQueueFullFromISR": 63, + "xQueuePeekFromISR": 50, + "xQueueReceiveFromISR": 51, + "xQueueRemoveFromSet": 185, + "xQueueSelectFromSet": 186, + "xQueueSelectFromSetFromISR": 187, + "xQueueTakeMutexRecursive": 180, + "xTaskCallApplicationTaskHook": 143, + "xTaskCheckForTimeOut": 151, + "xTaskGenericCreate": 154, + "xTaskGenericNotify": 44, + "xTaskGenericNotifyFromISR": 45, + "xTaskGetApplicationTaskTag": 140, + "xTaskGetCurrentTaskHandle": 149, + "xTaskGetIdleTaskHandle": 144, + "xTaskGetSchedulerState": 153, + "xTaskGetTickCount": 135, + "xTaskGetTickCountFromISR": 57, + "xTaskNotifyStateClear": 148, + "xTaskNotifyWait": 46, + "xTaskPriorityDisinherit": 42, + "xTaskResumeAll": 134, + "xTaskResumeFromISR": 43, + "xTimerCreate": 158, + "xTimerCreateTimerTask": 166, + "xTimerGenericCommand": 167, + "xTimerGetTimerDaemonTaskHandle": 162, + "xTimerIsTimerActive": 161, + "xTimerPendFunctionCall": 164, + "xTimerPendFunctionCallFromISR": 163 + }, + "system": { + "SYS_IDLE": 17, + "SYS_INIT": 24, + "SYS_ISR_ENTER": 2, + "SYS_ISR_EXIT": 3, + "SYS_ISR_TO_SCHEDULER": 18, + "SYS_MODULEDESC": 24, + "SYS_NAME_RESOURCE": 25, + "SYS_NOP": 0, + "SYS_NUMMODULES": 27, + "SYS_OVERFLOW": 1, + "SYS_PRINT_FORMATTED": 26, + "SYS_STACK_INFO": 21, + "SYS_SYSDESC": 14, + "SYS_SYSTIME_CYCLES": 12, + "SYS_SYSTIME_US": 13, + "SYS_TASK_CREATE": 8, + "SYS_TASK_INFO": 9, + "SYS_TASK_START_EXEC": 4, + "SYS_TASK_START_READY": 6, + "SYS_TASK_STOP_EXEC": 5, + "SYS_TASK_STOP_READY": 7, + "SYS_TIMER_ENTER": 19, + "SYS_TIMER_EXIT": 20, + "SYS_TRACE_START": 10, + "SYS_TRACE_STOP": 11, + "SYS_USER_START": 15, + "SYS_USER_STOP": 16 + } + }, + "version": "1.0" +} diff --git a/tools/esp_app_trace/test/sysview/heap_log_mcore.svdat b/tools/esp_app_trace/test/sysview/heap_log_mcore.svdat new file mode 100644 index 0000000000000000000000000000000000000000..47df37c5d652b1503e6cf234e8d3df608cc8cd30 GIT binary patch literal 171074 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≥=Njq^1vM0|;~6mfP`H`~15iWZa`b2oHCjUrfg0)<1vM0|;~B8j zP&igf3_uNq%hB|%p?WB&p>Q70fLTM~Xc`Pa4TaOubgrQ;QBXtSI-UWuhQc*!FaR|a zE=P~nP@^@}Ag-a;vG36^WY)34U+%IOKdrT}KsoyLpr#;_cabn$zIPv)l zQ_xMOz-Cq{HDyl)4P#@J(#?20LmGmTLCb>7vLU))1kFYSY&bZ6SwxIPL>q%yzUra0@);1P|$EGv0 zgM?VFGcn2i2k8NO>>H}b?y@+sPGf-|W&M#U=si>5Sr)j*43Ty_V)58NRMS2pJhlPh zF=R84J!Ztkz;G1mv8l{Vaxa;M?lK7;W?^DoeUFi?p$F`--%KnZ)^>=;c7kGT3Nt%M zh~*j+liVMW9BKT7?paI#t5)Xf literal 0 HcmV?d00001 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 new file mode 100644 index 0000000000000000000000000000000000000000..0e4e3c77f0f28915c8e044c2cb95256532e46b6c GIT binary patch literal 2718952 zcmb<-^>JflWMqH=CWbf$5buE?hl2?N14BoJCIbUA1A_^J0s{+!27?TPG+16ifPq1Q z!NDGcUBVd{K$s0=hyVjvo}mE5`EAd@@Y_B`oq=J6IRgWV`~r|XhXVrxhr^yz3=AO5 z3KD|qS14d)P+;J70O9)@j0_+QlLsjq#iJoG8UmvsFd71*Aut*OqaiRF0;3@?8Umvs zFd71*Aut*O)C&Qlkh80iO)E3eGt^Bo$FtF53w@5KGHBU1$HZ#&q$t)_VWGJpI zF3U_Uk1r`oOwP1gvzX#4*@AKHMcF zKE%`4)ju>OK3GQ~EitD!Rg*zKBR@A)KQSk@BDGS#peR2pHMyi%Kef03gmp7h()5$_ za|`nGQu83f#zy+d1*P%DC5c5PddUn7DE20%q-bQO#Nv$jqSO+E%?!DTnRy_$7o`@1L<>?v zff%MMw_Q<08*rjsXF1e-X3` zsu*M!l3K@t0)^y)Qiak2JuYPT1{CFE6?ZHs$jMAjEXmBzQ^?Fq%P-0Wv#q#5VS!|B z03?MdPNRAekMIlbTqZ zs*swOn3R*M0L^l4L9VVrA^ySfp?;pu{z0w^`32B`Rme@vD^1SNOUq10^#?p1B|;)j zM-T)yF3Xb^96dRBS{X%`?1A_dWU4w)DgMt~zDj$mSi;E#<=0VB`Q(;`2)~Qj0)A8V`0Q14D6Hih`o8f?ueQ4>{qJnO9O2pO}-ApRAY6ps1lymZEEy zmXnxXtQO|#?BW{i9Pj26AMD{6fi<9F^A;M{yc_|QqwEUv@;{4L0Yzq~DMEaZeIPSH7^DHj2hlLh0%gGDk@+Aoko%xY!1EX|{UA9I2B`

Bss^!yTqlA_G?^wgr% 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

u_T`uS5NI2)%kcuLB5!#Kd>=Ivl(W!Kz4Xkl4dr z5OEM&Yd5ch&K?L~eGjjLIh38Xm)D_y2n;d<7cM*mF_�ufwZ-ybd5f45RDWuot2h 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%0D2KLj)b)UWKJT3+4`(N@GFragr7+7MI(N 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%0A4NB|tr7Oc%!qfRND_GiVlVT8a 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%0D`dV7XS=U!vvF<5&B&$-vQ^4QXY;5-&j%RENK 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%0AjY5yx^q@^0Zc%YK^1i8tms0RfCz&s=+0TuMKA$j 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

iz!JHHx(4DhlRbWmA59rQWv1%|UhX-`$ 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

SjufsF%{o|Z8&gL;3`M?khMXA%M_kX{KYvQ|Jj z>p+~9P|h`wvQ-ccw}zYnr}!cU2A&J43=DFH;003*JVmh#401+b4kJ%b6a#~tF_^=| zGXU=BNvVkiTH zoF$mU!J`<=z#wM@=5X>H%3xrSvldog#K6GCla$WDAZG)X;pI6L$-p3I3+C|gbb;Jv z2j=ke2!UK+59SE)aECB3$T@&Hf;>|}1~`H_LOk6dWlms@FwYZ^J^`deBFx}806&oKqml*^n(sN(C+}9 z0Pw7ffq|2Oc^BwN0~_WPkoH+q7#J8G1wrXY#vgQ^fisw`8{+8B!00A&kBxyrFWH8H zf$;$wixjWJJ81!FtFfcGa0=Mfk+!z=V+!z@2l_rA36hNk}aAROt0usvt z+4jf;BzDe?f#H}N1A~E-0Rsc$b0Ls9hP^8p7*wTr9hg7_XsH9^582?w3=Br|Rx&WK zxic`ZxHB*qYfJGud|S!DV8R&1%5#9>gFOQSSf`;BuLB2&0PFlI-wV^J;LgAx2hwSd ztWyS|(@Kihfe%E0b^ek)4%2Dn&cI*+(&>P#^9)$0Daf@kAlHHj(3~Qp6(j3^nAQ+? z28JMz))a(RrZNTw2C%+-kXyk7C={(3S%pb7Ew@57P&_ zfom5?-x_TCwoCCkD1r#EK4(T&@ug7zfv#S?0@Al1Nna5xT#ifeI;evP(8Vi^Zj7w{ zFnu4~85lrUz8POY(g!-&!i*mj2dfwul9qzg1fv0inIu%G6e?uMVEh0Sa;qRJycifb z?3`aInX42&y9L45~44+aJf4+aMPd7!Mf3YyW&PfnfjI*40@Fy zPt6lpBF*6dnxA2u^A;2sMLCQNjPs0^fr2N9!Fusz1_s8N{NW%ELNVhU!Q~7LRv=yt z$RL{=?F#!7L z#hk*G3=F!-Y3U4%-a?=QSM1U`85kN@GBB_*pW$(^w|@$9Wvw*m3>l`04)z;Crq-%M zxB>cCKv7pOvWbC#A;yD&0d#7+!?{Te42%t6u?3Drsl^P8O3cgMne92LppMNC9XT99eRO2Lr=050Ix_RyJ z06K<@v7Oau1p|ZY&Xo)d&M-l@V=EaL_IfZd>;`MF%8=xB=vc+TV3jS&>i`Nfvsy`B zhpDR=7>ZYblL{+y2RN>ynK+`rF%I&&31ciPa|Af*nW0(>wO4+9G*$uKc89bjQ# za5wd2U|?RZ1WK;Vpm^~Bo$JKB+#V#r;OSJ%z`(@ID98M8B?E(3fDf2wF_nRV!5g%6 zmWdBCxa9*%b01eSFo4uU>;v(@_6ahufHeDp?#%>Yc{wiMW9AGDAS^hS&$p(UfdPaS zl-PXt_A@Ymu;gJj-~D|I3?M9dg3S*!kq*L=Ga0#jpNKIqfG}S)m#@1j0|N;2JZJS~ z1f}c=3=EQQ*!+T~Fff3yq#z@k@Arue3?Qti&*t0K$G`x>lA8tnZcSuh0Aa~gCN|%n z0t^fwtfa~2_p+UV0fZ&B8QFZ3ix?O{SgL@{_jm^b0|-lXvH9kdGBAL!)HH72x8)2B zAS{*5=9e^qfdPaivl!X^)cP41Kv>d&k=?Jcn}Gp@CH)xL8O{bXFt9MxSu!xNFuJfX zFz_s&%E0iGfq|g{S_ZejVqjomVa?1dVPIAT&0zH2VPIgoA#TgSz`)AF-p|Ouzzk+H zv0Jk2U|_k^$iTpyDR~Mk z#NNutz`(MLg^_`Un-{FR3*;Cc!HXbi7S?Kzju#IY7+7`qUV>x}fW(WyY_?g`7#WyS z8NvQyXJK8&Y|hBQz`@VVz`(kKhXcfJVr5`pT`3F_XW#_6-JOwvfeYj^W(IB!*2SFJ zj0_AsA34_3@kssGcd5OW(H|vVFMYwUivNr0|PG$D+_xU zBLf2;%Opky23AIn0+6RcY?g)03=C{yk|2-qUu9rmkYLm2U}0il;JM4rz`$lG3}Q0~ z#Ah?G8G)^2;du=@h02HpMg|5pBWVyvKp?(?fz6nki;00j zgn^G`6(a)!=R8IR1}P?}mlzoM`Pmp4RM^Zp=7Q|gWny4pv*ZM6X5jGxnPdg#u<$%* zU|?Xg26H%g9)pzGfH^!ouUQxv*lfWZ0iHP^ciDkCB0L~(v)O|=5BY>z0K(uTAkVY^5Ca z%nS@XVd;zvY-NHVHUrN`DFz0%a)>1id@P`Z#2>}Xz@Wf3lj8?71A{<(0R!7CA+TbB z_#y_j*^rnOh%aYgn*(NZ@Pzv_GO*3%Y+ztu;NjT;a@;&Hhfg3rDUE?`zF;`WB%TP6 z9~OZ1NbuZiVq{=jBoxESz#zlG+{(#>|tbJ z5E1nUxvd#uri5reNM9?2CnLIh4kH6w8>1K(Cj*0mSbS~)16v29kN_tGgNo=wkiITP zE=5iT1`W}45U&TKPe=4IC@J+rcm|^JpoB01VxNhq4#=I87=_h285k@?Pk~fUW)#rn zWMHrnoda^&6o^U((YGL1PiN$|<78lP5d|d*w%LrrpoHKdY6;RehfxR=&px8;AXm?4 z6i8-gV7MU~3^HW_BwU_=+DHs+3mL_|I2jmTh=K|OwnY#d-Z1d7{AFff;9tqez>vYV zm18LzG;+5gMecTRXtRJLcL$gajoh8!_=HC8E-(igxx0}gcMn((G;;StBA4eZC=d>F zffBv~Pp3H}1KUyA!=T*E69q~G$7MgUf$n5}2lCe`UNLqC1|6PnZx|TZPIDTtGcXtk z#Fr*9u$=?jV6av+649F(#^9*_W~Qwfm2BtXdvTtzVOv4BDrtmZiz0|Sy8Fc+kk zfsbV-sGf!@$4*@;Q=nkPytsA0Ra#t)KuwsA1q^kzr?m6#pQfg7ZET zgdfHZFFV;Tff9*4qf`=`-UgABO@3LXbWArOZ_bT&wvBZS8$Y8%4H zz~;m#1gcAUL~nppx-zPOsz?C_PLSY#m_wNuL|%i+3APAE4mS=42GReZz zK-$w7!O_bi3OdY$Egiz+5d{S)TLy$DBKjGW4l*Hz$cQ$80w@dO2o=#epp=~rQK=#N z9b{$>gl8b?58~xQcow27K@QA=@Ek;sg5>fcJP!s=P~FPP35_mx2Fb_lpxPHC!p8y% z9Vt+;1CDhDJ{B=fkmL%m5>Wjp1u8LM>BI#rX$&TPI2ahDe}R0xlu-#(luK8FoVyIl z0hz$I9Lnhgd6J76YzNEVS_TGo5us2}o8&et0|UE+a0UYd1M>t<1_qY68U_Y-6_Iw3 zWHM;!wT|#)5WAd>fq~sXWIl*pV#2_{ZXvuH#J<c^Z63^KB2ObiSh z>3pCp!?J{pfq_#(a4p!yOk4~MQoLLY4B$M)!1m?1_thF(k=`Pkb2b%rkI^U_8}hw1NT-wD=r2G*?KMp2JUSTHUl>U1NROHyH=8c zfqN%}{Y;91fqOsLEZHVm1_tf}U^XYn@I?r7nJ0k^bQ5A=;65k~5|_Ow!@$6O2*P#& zIp{E0qihq1eFV$~`{X&2A=g2MX!9^Ia37NfiOY(KF)(mn1}m0*1aj>)nQ8_G2H8lE zFK$5CeVXqTrVBr1_Hb=S(P&i`AOiz;A5>Wy z$bJ1#j;S;Q1NQ_*8Bn}QSAcAs2<6-qXJFu-3^h#>6uMKOoFtIZQ=yz0pdgzDvj)ns0C5&FK>~ga$P0_1oPD6sSqkBRlcgmuG;i=TFl+KMFi4*P zxqbzcG)O}F0LY3}5Dq6O8Z%(ZHN?f>ay=1@bl~A&`W094L@aGC>l}Qjq6QK{*#dGM6A8 zk@g1#t%|VGq0?PRSN;J|?4l^jJYcNAX`~)b~X+k+s{0t1-T2PKSD1fw~99@t@bs!vY zXdU2VV31>A-pa?oAgus0-GEsJBqr?(ib6vu=K;v!Mo`W*P$6Or<=g_f)db4946@1; z%FzJHm_a#*K`t_fa=wE&7Eq2AC^9Xf98f{XZ3X4*0Qt`v%2^LG+6Kz80lCc<%8>y1 z+z!gQ0g6dCi2tM?g6wgJa(qDP(~}ueO6&mn#|z3?3o^h5s_Zw&QeP;C8oa&keTGYiTw0wtf>P|hTf+vY+!T%c&32j%2|96BG$*#ru= z1yD{L$khv>obRA8SOn!P1DUoM>V;g8o+VIDCP>*bsIqcUDq9ZaM1oT03MeNZB^EPq*Ryc%1dV8mC6+L7H$XTn3~V5U z+>I>Ew*(j%m_dp;1q2xw6a>NPOH`17K{^B!Xw58gATenP4h9CE|16NyyI+QZfro(= z5;+?r7#Mh%Ss^mLLJSN%EKnIUDFy}}cBsq*VFm^s4yX*LGy?+@1)xE6B&l2C8Tk@S0cmDng^c2HfH~++&luwoL__(7z8p47z9#8Ksp(C_SP^k2&95JECT7}3<7CjHU|UC#A*fxfpq4h zLJSOwIn6NN3$*f?3o|e%aMgmmtx^H<_PYv@hu2jyFmNaYH!?5?D0DY4FeosvaDj~I zVP+6!VBnw7#K52;Fk4_JC|)D{85soTh=WXG5XenTW)PUmn=iz`z{0b-f`LI`o)lOW zk8BkKgTQ>SzXW&`Y8e;=7JxY-JWTZr3<3*(?3_?i|_Mv(P2BBmKyBDM;1;U8ZqcB;Ufq`8?)BzOkHxw8cI29}`85p<}60H~*xE0=5GcfQd$lEe7@G7j( zV_@J@*lEwez^`!G2NXj_h71gX3JN9+3_=R)oER8{70zigFo-Cuwq{@uRS>pfU=UM? z&|+W^SBNubV31I_rp>@0sbJ^Iz#ygYQX5p8O!WpGeKOGobi~I>Lk0#pg+9jAQ9Do@|hTvK_`%iYC`#p49ZW` z7#T#hpnOojg+)|?wN;FPK{Y^>fkCY-F^54^M+g)=4BRZD2AqB3us}0}XyOuMPzIeq zB5DNTGm0`OgH9k3HHPv<7?eRLkcgT<`N9m!pc6<$O`&`t2IY_t1_n_xC|{648FT`P zs5z7`z@QA;X((y|;j{2CD1%NQ5w(Qy8Mzr$$_p4ot)N^k24&C*B%;<(J|}}R=mZi` z8z`THK^b%ciKs1<&(5F>I)Oyg4$5a^PzIeqB5Duivoa`yP9PC=fbdx%VWiKxQk;Q7 z6%87#Ng6(lCO!sb&(GWf}H-j?h1QO902%m|QK^b%ciD)c@&&I)OyA3d$E`PzIeqB3cdQ3oxjFP9PDjf%5qoltCwuh}J^+d<@E<6G%ks zpnP5iWzY#EqV-Td4}&u31QO8(D4&}_8FT`PXd{%*#h?s2fkd?NB}ogEHs@644GQpP4}! zbOMQJCzQ{`pbR>JM6?UaXJk+Yoj@Ym4dp{3J(smfnt?$T6!VZs?}bPD1kOF6NKXJo z;zWoh4p<~jg7Agd7?eRLkcdu(@If;p>@1@Ftk*$?f=q@OIu&l{3{F8A1_ou&2_&L3 zA(}uL8(iYeg78751?U74(b*6_G*3)t)sbOfPz9L`F?256&;^`fAVWbXkccjXXp-Py zPzLSm7hMG5gO-}Gvxv@TEd&_?G6`bH61XADIcI|m0i8f1x&opJZpcaqA8N=l)@>j| zKqf&9Sq(R2J!gX~1B0>;DEDoEXkwISPzIeqBDxXEmt#-{oj@YG3CfpcPzLQV7TpZt zGf6Wjn}Nc73xv-o#h?s2fkbpGgwHI_pbXm5C%O&7XA)&l2Ax16x*fu27GhAgvu9us z-2vhAGczcIP9PE83E?v`F(`vhAQ9aK~#*|H1_svw_2Jh>O{ z$pf5E5y5Kq7h!%9mnL2Ax16dK}7^WKag3Kq7hq%9mhJ2Ax16dJ@VPXHW*6Kq7hy z$`@l$2Ax16dK$uK5@ApVoj@Xb2Eu3MXHX7EVPFtF3*j^KFermgAQ3$W<#RG9gH9k3 zJrCitfSMjb3=Em!Nzm24&C*B%+t0d`1Rk& zSD<`IAn#{okY`{}1%)&ukgvf5`6lNoc?Je$&x1gHj8I(aMkci%f^5qzmK_`%i z-huLE8I(aMkci%e@?{v5K_`%i-h=Sj#2A!8Cy3SAeMZG zTk?x@C&&`e*&(98A)4T&!ygDA>e8RAS3rhYOgfE0*R;yOhAr719Sq3s3=T8mOu&lNJQ140-zH}G+9Iy8CidW zEC;y&V!0;5averaOJxQI4bTZBqPkFx0s;&g;961-D!{|SpaD98L{uLt0IDZ7SwyuN zS;LeW7*s*#LyR^=7;VDHIR#`i=mZi`Q>aF`(PmHqkkOzMNJPz{0#Kuk8Cf@ij0Twx zG1?Mgv<)NYJ&@6$6G%jDp&H?d+YTxKP2ARutiM4ffsBKgCp2IvG5(P*dusG+OLA{xrb zTA>08A!S(1$096GVC1|3vK({*iD)8JBi!;Nr~t@v&$uI$! z4i*Lt&=DV^6QKg2;tO;FiRdJl026}-=qel0$uI#%1`TinZVF5Q;+kGY)_8RW233%g zAg-B)aLr6c&WCW<%z|nJxdwCsiRf&o03$bp2IvAH(K%27c9`?#LIvQ?n+FqsId48p z0Oq^}Fae13W-zk;133@mMu_tkA)L3Ak<&(lfk6Xw0*UA{m_~U94bTZBqRU|dumrsV zDgaH;OBh)rH9&&^>aYyH3SsnGMovCW1_lk#2_&NHpc+B77wB{g(e*F^IR*{TSrDQd zU;?rX8lbZvL^r|&WEeC+r(1|_f(b}7XoRIQFo-2xMkWY7SeZXvoA zCLqC}0XnZkbQ?@SoIwNJxZe&H0G$P)$s)RjkyTrhfk74IEl6PPMEGbABj*FSkM=?} z!hN(4CIIu%ewYBvM+aa6FdrR+3BY`G2qpmY(P5YX%tuFH0x%yPg$clXbPOs0_0eud z*1sShfxHFr(Fuf)PBU_D(t^d&8K_3MkIupbU_Lqr6M*^XJWK%QqYE$rn2#>P1Ykb8 z1QUSy=rT+I=A$bx0ho`jLIt2cI>pF(UWO*MH}X$+fa>gAKifo zz-%GAs-l7mOJgL>EB?pe={_Osua#CV`BDn6!im z(wK#wKq4wGdDRkn0*RMAxu`Mg|}!kch4YI|p(CiReCdPq-4RQjB z=zDfhHwbb9iRce@PmetQ zh&n@fkP}EmT_8Nj2_&Mf5FX?N5>Yn@4{`#Ds5^uQIe|pfgOSfyh=Boe0*R<6L=JKS ziKrKZ2RVU6)EmNsoIoP#1L2(kA7wA<3*kXdAQAP0@E|9Ui26f#kP}Em10X!e2_&L{ z5FX?N644+C4{`#DXfT8aIe|np1j2)yKq4B)$PQ{_LQWtN&0u5)HTu4QPaqM^XJiMp z!XPJ*h?X(3gPKy16G%jR7}-J1A?OJtqSG1KL6ti61QOB3jO?IV6?y`R=xRoGP%Q>M zfkbo{BRi<(fu2AjdXkYHRBS^}AQ8R6$POy=peK-sK4)YH6&TPHNJL*iTn{~gMD!(u z3q65E^c94w0Xcz0^fiPFJ%L2@4TK9lfkgBzgbO`^MD!hmYXLcdMD#s`3q65E^aF$o zJ%L2@BZLb*fkgBZgbO`^MD#O+3q65E^b3RwJ%L2@D})O@fkgBhgbO`^MD#m^3q65E z^aq3sJ%L2@Cxi<XZi7kUDTC@X|Jg%NxLi6|R{ z3q65ElpVr_ob8#7kUDTr~rfuJ%L125W^aK)7bqE)F0*R;wgbO`^L{t;Pg`Pknss-UfPaqN1hH#-L zkcjF)xX=?wM0Fut=m{jEdJr!31QJnw2p4(+iKqdD3q65E)DXgjoayq7kUDTs0Dt5u zP9PDrhH#-LkciqqxX=?wL~S8l=m{jEb`UP~1QJnu2p4(+iKqjF3q65E)DgmMft)}h z>IC6JPaqL>hH#-LkchfKxX=?wL|q|V=m{jEZV)c?1QJnq2p4(+iKqvJ3q65E)Dyym zor(ZAQAP3aG@uVi26Xd&=W{ReIZ=v2_&L^5H9ot5>bB$7kUDTXaIx@J%L0t z5W<|5M9nBbPL1*oj4-80?GlMI3l_d$^o4?BDxB~;nol{;A{phwE~?uB4#K&hZD5j z40Pg%m=Tx*IdMeH7|em3I3i{O=0Hvy5irk{IdMeH9?XH9I3nf% z=0Hvy5px7{ASaH9Ie|Hl6Gz0H!5k6ri6dezU=HNO5iwUV2Xf+wm>ZY_IdMeH9n688 zI3nf&=0Hvy5%ZMx7G+?7oH!!p#SdD>4L)&1%v)fFHTc94P`HA923mv3#J~&+b3PVO zOtFAY91-(jmbPMGV4i2qz`(i6nt@?IC={S-*IP3%$W9MpU=Z_D0Ex>k;%8tGpCty` z-zqx;#GWmx%D}(?-j4SJrje0B)=PkaL42P03y}VNUIqpU0e%4+&`LqjE)iKvCI$wH zKj0lBvNnPY3=)5NK&Hs97YDJy8%kyGihT2vHY!LV30BpngH75qF2knAY}p`r{J8)$iOfcqJI)dzjY%6 zgY;4vkPv?!Xl<82FRd=j0tC(4FdxM1B+oZ1A~mEXAP#je@3=9GcV6D8i(Dka!3@qClKxeN?UbO-3$B}bmwzg$pP|GYZ zV~}$f0I5^UEHGh^^AG@8&%i&go`FF^&Q&1UmVtrCxsicE&XX0qQ<*2Pi;+Rj8*GaR z1B*i?_}CbbVay=4vfHZ|807pU@J{Hja0~Y_O3=HxiU|lSrOW@?=`M=tN zBKbGW1W7xX2_StCvp~i$u%v-5Ny-ANXJG+dCR5IDXa~}3ZU?nJ9#t>c0I*mpNCIpM z9}CEJd@P_;&*EOqz#!koUk)~<7G}ySkYbQ3u*)UD>s}FDkSSmZ29{MIM@;752G+g@ zru{x#J19p$JOE~abTY6Qg6v$#{~E06BTSQ|Jki3J0r; zbzoo+2kq1>1gQl_D99EDwpSptl^F&8a56Bk34!k3(SexFb_gV63Ne693lu^&P-W?$ zSafIP-vl;#2gqoUKd*s|Mi7Re4f2_w8|L{~KxHbMFUUoqjG`~W+TMe-fuw~T85krG z+Q2NZUXTO>9}9@hR$0TqAfLi0s_F>xwYDPzgE&ZU1Y9qOCjn9lA;4Uaqa?tls3*wh zFmi5oVqg&cB*nlWp9>lMU=R)EWnhrcgYZ~HL0bjn^BF~6+A=V3h%$phx`0s(lqq>c zS2r>+$QLrosoF6x2#7L)!lQ^$EZYvWt@;tjXT^*n;LIa>19Y!n38OS9FUW|RfRbq` zqo}++1A~HSAIOw4Mj6nIu8L?sD7?!VMa=C%+o~sn$(_KbpxYJw*v!%k7zTI@7DT0EeG0~B~J8Za;@ zX!90&Ffgd_G&(adDCqEj4A9^)cVl2s(B<#;0PW4zHfCT@(Bog=!N6d^6VlAUprFqS zvebmf3FJ@%Fvo(&0>m){b8L8c8W|WAjKHQj@Z6DPU{Ejy8{opjB*MU;U;^fN@O-If zU{EmS1G&J5C$WlwLBR~{g#e!UAOp+=_Iofegz&5Y8EqkO&jYkkTN2~~OR!7~&r;BJ zl2%|&0*`eI1A~G!n3KZeR>8oaU?T_$gA5+WS_TFMTX0b2@caWAU$XMrY928I@%k08@r zz@~NZlz?3A$_t9D9-jRmJ#GTiJsB7#@LUHu#~ti~DLl_XyEr@q7I`u-%;1rcVq{S8 z|St2~RmlkB{JMPX>k+JPn|r@&$9&@Pvcx z@#6)>=?0!Dbqov&{$S1)9zKw=0I&;o@Eige5D0eL9v(Z8o?x)D13WCC6cPgF9O01y zc_B=I)r*1Q1dk2KbK$%SUJMLpcy`$^FepTT-FAWJ3n;lnf;m@s3^f@T6ry;oy%-p7 z@W=%)FepTW_1xj92E|Vd*wP0)&Y;+i1#_P8+;wDNP>2(7^I~9l!4m-TX}mzH7X!l^ zo;XmzCkV87F))1Kc@A<;qQGJ=28J&@ULc1i2^{ibVEDna6=Yhnz(X$vhCf1)AkU=; zuz7zzHv@wRqfi9M?O6it-V6*9j6yF!)@2JU1Z~b>6goDOfk7ch0F);b7=_+|GB79<@}BT!V9;O`dM?Jmpil&kDji0lm);Bv3dQ_)y%`t`7=_Y7E-T^x z?hQJ=NvI7JTc!MhJ`4;Nj6w+@Ka_!0+As?7gH)D-c@B(14WK}&0PAyM6gmOYR|(eV z!6>u}p|h!#Ovt8z>vczbODsEngtSk7#Io| zgk!t0uQ|V8%!|pv4BcLDNz2A0IdoH?SBWI zoCd1N`B>CF7#PGs!k|nI(_rMmz#s)G+`s}bUG5;IAYGuM1uO_A82DIXK{6m~L4_NN zo^qHBC|1ET416r0lf1-1%0VR&SP(*hoWa1y0y@hJEDb7~ATl6Z!7K(omZKmeK}td8 z3s?~5j3+P|Q2Bz8fdmN1KA6IPAcY_SP}u`f2ySkHOoeb!SqywE>YfY?U`K&UD2N(d zS{V3PqF|~)2?1tnhbIGrKFC%+mboB#kf%T;6ij{vNDw3sDx4s#W)Kfz8Ms*jauov~ z%U+N{AT}S%GngJw*&+dMv4A8P_*g!Af_6W7!CG}7Q3=paKn6Y*ZZ8G~DNw-zF&g9! zFpGhYMa_$WLH{WDBmqY+sE2dne}om9cc!s89~9;lo`vf?f$0|U7I$H2#;4O0Uuy^z#^Lk!#~iVgVc=sahRJ}+H%Q!oVv&K5rPrH*K_7Gi6d%iSZw3Y_P_c$&JV?I*10TyK zkO3gOKt&tOP3K^Opb`!oZ7`X~Fd0y32NnbqphIh5GN3XGksTQLSj2r87^Fbu48(e9 z0x|S~h7G99fyjV81|k^vSloRW7+88hLo&^WfkAdxH3Ng<0>uL$ z@!uf!Lcxoi3=Fb;(-;_(w7`1^WuvDtFeo1bvsqbKE_5<7NN)!T@iHm>bYfuO7EqDo zRQF|I;EA_nWKfaf1t%Jw#Y_wgD$-yMBaaa~1A~eTn8U;)2a=HmbC`K{FfcHv$bn}f zS$LE{9C;B?hk%3UIx_=7jsCa0!_%bl? zgV;VQ-W;8N3=BL|H5nOH0=Pjj$-uJ}bZSqi;5@dspJYu`hyyxJ{F7& zDusf^{tOHXJfA8V8B|Jng8e}aQNuDu293@Vjijt&nW$OF~j9jFF8 zT_B_D1tQ!@G94rc(g+Giupn4DgaCItL5Y!pk7W%^At+eU6f*F!T=i#QV3B5H zU{IA-WDQ_oVE*FIz#s_{U~yt)U{IBn5er~o;0Li~RINGc0~i>1?5!CYRBhzI@xpVG zoq<8sR#qkulp>{>85mUURh0rkDY6B`aR4V=9-h8((4~ZuAV&%CfO^2H&frWY!gE87 zkwMi3%#mQ=7Eo2=+zYYI~K%{se1A}xgD9q#;MNPpHTmcLWY@e7J7}VSu1wie7wgg571~qRe zho6;!LCqh^kz!$BPz#1~Dw!A<)WR7BYQV-c1u`&*gQ9v`AhaHVI8|Llt%8yBIcNz# zC|uMk88xi~K?hcW0!FQhQPTqy{Gyv=7#Y;688t&e;V&8i;?*!}CV|36bQS3KxjIJ8 z{6Nr1C)*~Fiy9c2K^8HC43;(pxqdpM+82=T{MZ>7)aFAt+#HNfoaR9c3_Ph*85kIy z`9aB!K_Is{oq^Fs5LDf;FtGH3q+FSWgBTc?L25ajgBTbhf}lgG(-@dNf*2SKzk*b` z%YejLnMGtA>^VV$yY(<-tPITgK@1E={Gfvd`k91560FR3cpU7F(?CK?nRr3gfrfWM zm~l>eFav`L*i}oJG(pa~;=#ah!GnRpG^sR=fpIC5DQNVXG1x2%WbslaM^K5!7-F8u zz_@}5TsZyqU|{$PI{Fu6;Obxo2BBaE21~{$reX$5#u%m&1_ld|%=Tag1|z6U5rZXT zG(sMHVD4e497tC*Qwc~fD`>X^gC*#&SC9`Z8RM8hI^&r@rz#ttEoNX~oCfjF6DeK? zT~Ie^4#)uz|4d_22l+?WlYv3ilYs%`;+YT^=Xx?Qq=PCG>&mGN3?Qst!eOmBje!A# z)f3rmx~do%Kv;u|k(J@G9B8QHtqlY0K+o0F85lqZdQJds8DwB!u>H)yz{CMQE0YOw zHYXGGJWkLt%S@2-IGLcQd4e|Vvm`PwFfjQ_fX+&1g`NZoVzYqG=4A4h1f8bM1U(59 z#AX4V)5(-B(Ff9obWSHzrX;AKVgVf>%6vl{tQ2}!C)l_y(0D74;98J27L>y}kAh?l zFfcH%7V&}DY@owBnNu0TW`Gat6b2p82|cXy2?GNI2lTK`kT?S;$YaW&!#Y8BLJ#W% zox%w_tP^BC{IE{Y0iG=I!#Y9QV25??1RvJP1Uak|b~I-q=-^J+(VXW%CxC(vcrz3R zu^IRwM{|NKfFI2X;=qsQ1aaU;bAmVm{E(wLuP}m+<`iHl0Ugbm!N|by1m*z-20qx) zoavxrF`-9uf;7XA<^*xzM{|NW@S{0F93I%woFESTXig9Zel#bD13#J*#DO2p3F06h z%?Uaejt6=)Cy31eJDL;3fgjBY@&V##P7n`tG-o^`1H&HB(VU=&k!Rooox%t@n)4sX zU*K>I69TarU`KO;EQcS>$%1?|C#WjwU=Uyd8OJFCI^2?(fq@HRt^kV^=x9y>7EpNc z!H(wiL^_%i#D*Wu3AThmfCZFn_+UqK9s(WZ2sxS)te78iG$&XsKjdgm5F2`W<6KUA z&|E3(XigA^k3SxAG^Zly$UWH6oFF~W(;F8FsX>nB1f7{F0zaA)BnUs66Qmq*G-n;k z(VQS2;%H6~4{2K`LLro&mkYp2|A|}el#Z!=x9!U=+T@Y zdrbJDM{|PQY{L&dniJ$`_|cp~>_|s*DuIsXSf>ukVVxE1NQZTTIEceKK~^CS>jb4X4h8`hP#P3q0U3-q ztn)O;5ZGazAP(ZNP7n`qSSP5WMI6=%swV{)I6;E9L5FpMiZSHFI+Z}@Yr+oe1Xnch z!#W{u1C_mOv5eqK2ys{^NE;7>01HS5;;_z(Aj4pXb%Np!aaboP!V!mcf_R9-Izc?d zVVxjD5QlYw9Dz8j6QmMxSSN^wIII)ILmbu#;vo*}1o1o=I6=tdB3U~Nn zonQ{^uud=sc33AUv9csHFfg#|fEvCGEYLGJvq0?==oy@#gOXXGXK;cJsF#5rz6lCg z7Eqr6T$1EW44 zcr1-)1?Z{@12Bg}7Idni0DodpIs>CAHz@Oo@N~>%U|_V74isi!kYHd@nZdxoZ7m?h z1@f~3=(ta9&~cw2r3`ZHETDwN?a1fA#lRphIs?@5WvQCZz`*Ur3{u7|!0pf31#&^D zJOcxFfC$Jn3}EZH1Hsm@@G#9{VBijt0-3Wk9Eg@*IM& zT|ft^9R_QZ0i7Poa|F!h1f38Zf@FvbHv@wV==4yYW6~gT8PMsWJeR?WWk9Eg@?4Vv z^$TP`r-$;~fUrRuV|eb!fE*+PIz5!&cfv`cRhw}Ufn*%;Ql!t*4!U3Hg%EQD6)(t*AlqZ@Ibm$2K`1DYo zKBzL#>7hLRP>w0+=(!1uG9cfAPY>mp2<3oI59OH*H4SunD9;oq2XuNU&r~P}bb2Vy zG$>~RHv@>1==4yY*-#GX^iZBTP!8zyP@cI^ z4(Rkyo_SCX==4yY`A`n%^iZA!P!8zyP@Y9l4(Rkyp2dvdU<02X%Ci*eZP4kVJj7hI;p&ZcZp**Xg98f;vSq%*x(CMK(YoHv^>7hIenIHiVIz5zUF_Z&3 zJ(OoDgab~N%Rr}hf|5Hw1M@V{>7Ag{LwQy(NrNQ7r-$;af^axNiRmg#xjX~&QIK-b z>7hJpnPfl`;L}5SHb6LF(^>eSiJpsr`3p!n==4yY%}mlD3C>i|Z~#mNGXt|2=-5oq z>7hK^n1s|o9MI{ZJSUkTi3W6fD9pcrhw?mwazLkt^6)VWf`SNqdMJ+slmqG-^GHKE zpwmNnG?*bF4mv%QM-$2cogT`g1?7NF59QH@a&$q5BM>o%hDc zz`$d`ECUh)pB~C%2<3oI59Kj}azLkt@)$!opwmNnOrRXl>7hKPP!8zyP#!ZV2XuNU zk2#bBIz5!f0?GlM9?D}0<$z8P<*|ZtK&OZDSVK9W(?fY|pd8TYp**%w4(Rky9y=%p zbb2U{8^nL$(?faOp&ZcZp*)_^JCqNna=jbb2VyG$;pj zdMM9yCCdhf9EgfoC3+13EpF zXFikzIz5zU0h9weJ(Oo5lmj|FlxGo?13EpFXED?ZpwmNnmOwe6(?fZdL6w0{59L`7 z<$z8PPY>m3WMOs}WME(hDdwydWMJq8ogm7<+ypy4l&6_R4kQLXJ(Tx93ncaKmtkPw zWnhIw4(RkyUS?K^4CwSwUKXef==4xtcBsq*VFm_X4yX+1^iW=Is0`@zP+lIW4CwSw zUVf+y==4xt0jLb9<-;osl>wa|$}0ku@#bV;;1!3;fKCtPm4M2CP7mdkhRT3W59O7C z$bhR#&@3Lfb*9e13_9yl26SXNU!N369NNg>SLQn`#K0gw9kk(9zKfrMfl>YjF9QRU zJeLFm1G9XP6axc``~*=3237`^(Af+O0%ek*RwT<3aRvr~T47Mgb8`rEa{dRUGm9Pu z27#%N=-~Oxz`!6d3(R3*V2StxI#`qWHt5JrRXzp=!8`#_Q-fs=4+Dcx1cd#KkAXqh zUtC-mbo3{qAuFh@!~tsJFd9jKnm8QmL2W2wA&{jE+#HNHtfio%J>Lt0T2`!}RvH7( zWRMbw1Pg-z3rJ8Ad_|wP2&nnP_jx901kR6R5lE*zNT(kMND%{r665qg|4LfkAl=$Td3{xmSR41jtPA zcxJOG1A{s%$k-i>3Lp-T7Xt%}7ibY}2?OH+h_PN?3=E(}C#qZ^Ums@VS;)Y^kmJR` zkl_V7{UV%^f$<7NkZEFoswBvwtBl;B_H(Zn14FkL1A}HkelY{%9f%;)#1Ivb15g~O z1rm8D%fO%}%D|uvx;0LlF`Bc4!BC}`K}ngB0j>kAuv3(Q!5^ZKshB|re%bUXV7m)S@B=#&|}4P|R=lVqnYUs}SzSj)(0Bg5;U zR+L)8z?jd-3Ch1`ycifxd4VnxlHqj#>DLmH;dOA8V_?`J1`aVs2W`e^Mgs;deHmVd zAUOtx9}sa?<_priAURfM8AS(sZN?a8E(QT@##lxJZN@l8H*LmvR%TFE(Pk=S0O_}o z;dO|YV_@JH2b;^v+#$o^z@XwG!|MR{T#O8_1K4why0Q!mjNy#pmf{QyTckN0gu$MJ z-bAMB0SY>AMsbjKP*^a|nJdn~paCI)Ctli_g4mSbS( z0^1J0FHL2k42MGnC|sAwa5%Jp%+kFCO7c#Oydb~nf~^geU|=u;8}7s?2QnPAh~d5$ z1A{T>GP6_(P#K}2=wNShS(?{D9n^{|0$qjY%E$`}-XEY;)8q!=d7|KRXq(E2LP>o8A_fx!hV8^y|eMFA9~(achn}ICM0ZTJm73C(Y{sx+p10l7T@LTu|#Xf=lXs-V6+TKt_Q>(14L26oQw%85k~lGcaiR zNb@>?GN!yFC{Ut6*+i>Cn%ALUih;oxA*RwN&FcViy4hrDUI(UP27e^EY0|t7;G$)w zG%ut`Rgr=T$wGxxPD=AStOCXK8K_ANx}QM_gpW}?M~1@zbkrB)9Iz=xG8_)uw) z&*BGY9`2S5D6@mqf-vJ8Q21Gb)!(uKDd+cLVBq$FmLyI&ue4&91E=fUw46^zk!ccHs1d2{j z4F#Hbw9y7-(tb3vkHF3DcLbUJ&zFJWoi77}Wg=L0AZVni$d7>`%a4J<3S8jN1DE%E z{1_N^`C)TIlMFcMF};5alr2Cmg)>kBWEYw~NPvieoKb`3=yX|FfYjK69DU!9f#JL# z1B2y%Q1I3Gf*cK6l;Q0Ub95Kj(R2M77-oYOwt!rL5^(0SI2?`Q#8@;{5GQ7W(se3Y zD!B%7BC9kb17oT+h<(DJfnkF`1B2~6kQ37k?tp5ZU~7hEMh3<_a5B#dU|>iKKnhWC z41!uNuvQBbhXQEqZW1V!SMf10fUwXSW;T1{84L^{ zEL6qHZ-0Q7fdPaC0~vYkOr|q1fUt-Pw|(*q1_lro`oh9vcO`&<0fa^Wv)L~SU|;}Y zfoY6v_8u|}3?MAj#mr*|y4w06Qp}L3evGGN8?G zgMt=qej79~2cF+%_LT?+O)x{}w?S<1{5G?{B=~M`==?UA4Vlx1&Y^?HgIRQhL8T>l zJeb8m1T;j<3>y3eUq;Ew%?maTG{4Qt1HR0g32A zkjp4J^f^H5+rXDmau^DO*bD;k*$f;;U@IXr-W*2UAp0RR-W*0EAP!{4o5M&N!~tJM z$zjZWA3WpD$5IcP@h)a$V0aJn66`Wc4s(to(9AGs#+$>E6Qmh3M1cj5p{Sx8tB0Z%|ahE~DfK<=_NOMuTR& zIl_cMY{-l^M>reElaLv2jtEZB3J1t#lpK)?YS7ClLB?^)Gcz!NF!-)p&}EdWpc!vI z7EpLWE~Dfq;0=kTnqf8LQhRk?#ltV0GfNay_2hVtO%;Y!=nx~F0VBnY~1Xc{X zjFMwEBxXVP6>`i0vmukB9CJBA3uhqr6>`i2b0GH>a?BUh0ht7z@#a_n)&rRo5SaM@ELE8*^I)VgaDcG=9t4M1d3j5o&uNVq^|yg3#!ip#@iyg3#@ zYye$Gc?qKI6@CT=qD8#+&05?`t;Dh9}TvlpLoySwS=2 z0-zahj&oppAeT{coCmuZav3GZ1+b-%8E=lug52;KZ;mU1(x4e{@MV-7*TDurX1qCW zf%QOUyg6=jfz}j3E~Dgl#Nz|MjFRICAE*?C%y@G=1(yRU4C0`a1@eFdD4j}x{3QWO zUf}wJfsX|gvS2lPK$lS>)PT7ly$pOTd7#TEK>~a%^FVXg7a15BKt4w@5+npO@+?RV zNGm8n5Nbf{_CdG#f$BAoPr-Sg2~r(sgQkr^WejwFn?s&a${aqw&7sW50lG66d>JK& zDx)BX1DW6EP=lmp$ow{kIwWm@E~5mcI6fAT!I1fF4tqw9Be3~x4hKdd5C<~9&EW{) zLFTtPoEU{b6)j|bo5Ph+1vE)2zyMx3aRug3*!(s}1S5wuXi6G1zs(WN2&q=U^V=LT zFt>r`w>e@Va*+9LjyOgUkT%d|l%R?TGQZ7{#K>_9WEg0EneF$6Nd&5;Fh1Y~}jBO9U;GQZ7{1K~mDw>felJjnbuM;?R+ zncwEfhwwZYI6-ymEe-|-aP&dvxA|B=B77{M(2)WaJK$Jn;A45s0a}q-3%-mJR6k0A zN(@*!kp#^gvv7b(Mc8GO97`FMKt(xtew$+%lmnXI=2#BpfabS3xR}9qfaj|@)A>M2 z8a!dkHBA~cA;Squ=#89kXM!hexwi5Zf^L`uP1tg6gRnspwp=?PY|w-)*G>ozWK`c^7!Xmg@$D4Vtj!x+4Q} z5O~6t>pg@Gny}^i08s;)u;uyzVS^@Yxqd>}pb1;9-?E?;8{i3Bu0Ig=I$;I|uK!?j zz!SDy42%#CXu_6@i4m+DJYmZf%_syK(g9D{a`i!#fhKIZ`k@@qge}(uMj4QA!4tMz z6QLZ?ge})(sA-@HTdpZk4rs!bYbuljny}@X2IYVzY`LaGIiLw!t{G4cXu_6jCX@r3 zu;rQs<$xw^xn@H-pb1;9IZzI0!j@|;lmnWu<(dcOfF^9Y=0iE430tlOP!4FqmTM7| z1DdeqTFeLzHt>Wk*HWmrK@+xI%b^_5ge}(!ClBm&ny}@%1n~%X!j|hYlmnWu z<$4I^fF^9Y9zi*v30tnmP!4Fqmg@JrNImdanOVC<$xw^xh$X@(1b0QC6oi2u;sFXazGQdT-HzyXu_7u2FkIK1uck&awI?t zO6;H<(1b0Q8^nL$30p3AC!j@|;lmnWu<(dcOfF^9Y z=0iE430tlOP!4FqmTMuD1DdeqS_I{QCTzJDL%jf+u;p3;<$xw^xt2kdfhKIZmP0w9 z30tleP!4FqmTM)H1DdeqS_S2RCTzJ@LpYELTdrCb0V@H>b&p*2EZm?@I0I0qAv)T+J+UATjWSE%$#GNa_Vm*m5(lLLvt= zVav_T3XuU#*mAQ#Wk3_Q-0V;p(1a~F2UG?$Vav@8l>trIa`QlCKohpy{7@OtBons) zR0cF*%PkC*0ZrI)i$G;S6SmyqP#MsKEw=%q<|QRi%c8=?Wx z1Ty5Z1_OhDCWH?)M2&Se$Pkc85JR-#hUjsE?v{jjM<1dIWJviW1_l8G2p?*QF6#r3 zAs~|=h8V#OG3DeEhJ}e4L=(smuy@QMe5fHNtg4`kD?uhf46%e8V#DbVH^dgA31kS^ zJ9ZF0)DUadERZ1}lOTpTzzuQcoB}t*1)>RL2;4 zT!2i17!nFMB!UyvD1yXJBt#RR5Q9=?9)my>gbOtzoV6BY2FM_Y88L7(;yItg9g+ai z#3aWczXO!k5+Qs>Sq6E~brJ$e5I&0}gM7Ig1A{;^gwHI-ATR07$RLmc;WLUd$Sc@` z?kt7yML`QqSp?!(nLu}Ef?NV|L^|9NS)4VZ3=Hy1oER7cvLTvSr5WT`g7`U5z8Hi2 zaWe)6fm|qGkU{<+NInnB=V6dP2IA*K`RokxpzE6j3Ltz&HU{}+#taMsg%Cby6A?R$ zKql*SkfT5@gE*=f?x=Fkiy%jVb72KUlN=L+yoenGgFq#O&&bFi|JId(L7)oChxoLN z^$o~SkjW53Yv6{~bGC`Y;=KW)iA9D%z5^7TjSxPgG=uyLa|Q;1CMaKuK|aBgfkB`d z%9mu2zX8g{Ef7AFID`BRkRw_ld`2+_`H!HGYJ>7c8RXSK`rDy=5eE4!ApIQ>K9dlG zyc$S3Z#DmgwMpmAb-uBfk9v*gwM#%AioyGp9JNzG05kE z_>-Z0Rt9-p5Pu4k&%z*o7?fP6Lix-L@{yo};ip0QObqhRK>X=YJ|lztT2%%Hff-Of zB+}|w7m98;^@~5;J7z7qT`8*8r z^FWST2<3A#$me@8FbFJy@R>Lnb{ z5)2FqAfH20>KeGG*K;;V!aThJqKQk4L7od_=tc-1l+mAp9I*+?7h#ZB0XbqblrPL6 zzX_y%3zRR!Am0S?)K(~8kU`!b6e!yud?tPd`F4>0?GQdAAA|flkfV1%`MeBDDWIE( zcS86atPDy;rKt=8yC8f<76zrFlvDaoIaEKGsRfUwWhas96M$?}9D(qeWEtdJK{0<6%9m!4PX>AF z7=+I##UKwlw@ctSlrPC3@1VxOAaDZ8mtc@*17-Jc5+K>X7X zKBEYOygVq7&OrIX4Du477OzaHu zJ|Is%hVoe%E%piYAo`FH&DU{F1Aioe4sLvpLX!g0!dKKgdkV_zrcma3B zYtHvFFh{(BXyOrJkgo*A)LRIjQJ6sch{4(CGlb8`!=O}AkisDF1z{nZ`G6-avI=BVR$_O`!gORgQmVp6c z5+_t6+$1ij0MsOQM%H;ClR(BnOyWV9#Lvk27H*ONRHHa2gUUo(1_l8^r~oSqgUVr0 zr6vRwU}9oWk#S*Q5D+3;D1a=4*d>avOM;Qp9JI^;bU})MBvhje z3xmo9PzIEO3V<$1QDYGhXJiclnFKNpVv-EhB>n<@28J^N;*#?~Nf@-GO+bzv)GuM+ z`2;GNRM|oO3l^RWAdU_@sGq>W18&nBvxD0EJUp{OdBKVu)NU8x0iBa6;K&YYe~a*d z+sYp7pmwwbj}oX{@n;9Mhh=!)f$HQic2K)kfky@8;8=E0`&31s0MsJQU|%c`I)}pq z)YK?p2Q~N#ctGd(2$b@HIzA;l!JtM%Ejy^yRl)NNlUg3!(^s28vr6o1gpETo(hlwbuFV+wEOp$$qwcxP77mQzQG zfkFPd3Il^6wDT$;z#z{B;@d+l;b)KsT^J|m0O5n~i(_XIv|)8uVqj1JnG7yG1)U&8 z9yg1iD`z9fP>__M8$=VRztVP}fkDt6!Uwsuz>a}I&;!Z`H-H3PSm%HY1(^&n)C+E? zALlWUp-vVI41)d;O(2(ou9XxFfbt=R__96(83Hm1Vn`6&kWkLq%Fwz{Fbtwegoi=i z&zgZjFdV{X3=D#?5I(4VENRTZAQ%VbGcm}EnlLa3#zXmx4Dvx)j0}R%J}@*6 zLs+*dGcYKCd2-7K9JF>5`pAFojiHg@Hi+a{H(#iAPDW~f-LzD%E!=-F36I-pg4kdbU~J|fbtczqYJg9p4Cg0fk6Re6U34> zxFwyOQ$Ut5f?Njey>dt}$bax*U=W1%UO5C9K_LU{lCm(!hk+8xOi1v8QZML2TESURJ`;m{mp%i7;A|+LkwME~zks z{2W&X20>VtRER;|4kQoll0wFs1Q)Qr1X&8Q8Di-QxTUK(jnx?#S}323LH-)ZQR^UlP`+;hrHSp$P#d7 zhxIe%p_v`p&t#Nikgo)#W>`N{mO(z_J%oDJFrZj^**b}gRCd?Di zekLQ#6R>_J%oDJFCd?DiekRlthgd;lQ3@cRKs<3C?ukpBO`0%IKs%3cPry2lu$X{# z9$}t>ybgvZ1kl$f~4Iu~^AEXXGi zPuzoh;vuKI7R(dS&Li9t(9R<~CZL^1(0D00IYB#*@Z<#RJW4ajgFW#a;t0?P0XR9m zfbwCUcnRghJn;(3hsDHe2p<{~4_K457#I{lK7n}RE!-1dIOl*o0j@Tnoj*|1;54Y3 zfOY;D8RTz+8l}+AAG8Ae%(@+9D9B`pp+Dh<{^9%xH}o&WB_Kn6L5-My5I(5AF~^gE zLGVA64=I;^v+`;)Ferdb26tQp8KE5)WfnmeM$S5IXva;E724yG;9yYU2W40`r~o57 zgUWkQ6O0`uz{a2w2gFacHumBXOQ1=jgvWMNPd09DSg&L5;3CCJRkIveB~kdq*; zL3I8E`58HH!d(OF{K+yis5pay4%Yc&WMWWR1uE|0oj-72Pmqt1^&7}&kogd!MGzhp zXXI4Yfq7H{>S{4A29*?$(Xh@R7sMnnMpg$M1_lL?aS)TF5hlqoa^~p5Op=G1#3I9> zvKmydDnJF8q!?6wgX#=Lr~soRgUWJ{3MH6;1cS;nP!dpv35YYOID;D2Dlh>t1{Ez( z<*Eu35M@wl1!+-(35YPLlz=j*I#hsJkU`}sjCMINK>drQEmp66QJIK8B~Cgi$P^3sIoVQ z32-u~yayHc7BB%01{G~keP9U_U}sQi1~v4opaM*+3@Rod0c)55GlR-gP&35_Ccwy` zk^@Rpwon03hE!t_G-hP=(qmvy0Qmyq0egf8oESOp!ad*&)du0g94Hm;fV#$|jIN6ifi(ML$N?yZQ_a3Lt+%ycmPfoFM~)N(ZRr zlmOEx&!Dp0mw`br5hftVpppY>#3#W7WEoUq0~iG?1L0R|OCP!1}9 z3Gg$h$b!6I2ovCAP+1PjQbjNUUIvw)Ac10-01tyo3nDq)};UkVlAhQv-B zBWpG2Mgve3L1L#I5j$0koJq#81XvB#$SljCA_8g%*FXgrWf)YVKmxTe0ci#m7f{&O z!33ljRC+-I^)LZR29^JyJk|gckYG@;19_kkCLqqB!T~A*nqUHA3@UCQfo7P1D1%Bf zD80471Vk8A_JagkVFJPoDo;R7@HUu$5QB<2C=l9V0)h-Gn>`p91Up~?0t_l{puwe1 zm;gV6%6w2N>4FLHF{mVg5=A#mfR{mK52$$PfeG+1sAz(^E4?rQSlIVL1(-P)RPsQz zZ$DH3RAE=rFDMUBgbA=Rs6>IhKM5wl!k`ibO3#yF0?Z65dLTomzyz2W zR7^k#Ybs2DkwFD?w6@?hm;fXVR5G&GgRY(cB?L$sn1M(Gvl%&EOkrtY4pbwk5b6X~ zIdh=`phD;nC{*Ub1jHFsKwG8-=fecV7*zg%YRd&M0Z|5(_n?|%AxuDoK}8ajnHIqW zgc($6M3@R3&YJ3e$fRjN5bP~Sc zT9^O_gGvFY=3fUBU}sQK0|~5$39vD!w1S+z0Vcr8pi%=Wem24cSQu1lK()#ym;f__ z$~sUxZ!=7Qi9ux{DCcc~2{1CK`~jubtuO&d49{X@O*Ca-Pyj_UB!;&mVt5xLXQUY{ zhId0Xf@1g}Xas5xQ~(siM?vo03lk7$P&o)HmG;2|#28ezfzsQ4n1CpQ3O{HR>Ht)L zS%^X9CCG~hVFLUNDziX_9)b!m@-e7v1VzSSm;f(>N;#;iIsz47=3-DO0tp<239vJ$ z+>B941$-T0#K7KFtQ#1nFKNpV$xNFNjDie|G`bV1=R>@B)ZY^ z6xny60?-!O4MtXJa|Q+lkogd!?;(tS$jBLK4vV=*P>muy3@VR7LHHOdz{bX)q6*4+ zPhbL&MDc);wG3o5$b5*=&k#nxXXHF$!N8zm1S(KJKs7STGpMwILiQs}K#oC00TjcZ zU;?rXDu+S!-)ESB41>xqP@4S$6Od+5aR+6{uP^~A29*X-I{F3^kYrHd0TqVdVFD5i zD&IiEZ$DrH;tVRF!bHoq6gcwwOK;!iPU;=^+Dz+eN|HA|X7*uY8{KCKl?XdAPsMvtCFv0}*7*w)AH4YP0 zfDaPX?-*GhS}-sufWjLR)GSPpo}w~~AUhMMyd?vJ$}CXL!~xYP#K)jw3d-7?Pyt3> z1{D)famfW0;Ds2?#>8r42^xg8U|@h4&4VzSpNTUQWOOu0qX1MR$Y`)51)%~^NAfYT zwt-9n83!>*7-5na6Q`sVEUAgZGzu}O1cO3I0xG~L$e_{$stYAy0s;&wMxY!o1r^|8 zV^EO;72(oQ0Z{Au5vX94feJ7)fpTjigP<%_fRT|wH6^u#K~N4R0P(pf6RVjO1A_v{ z(Gd44Al$3T#F-3oFKEI_Pz$ONHdiR94HbZPay6J(8$c$3jDwh@3pI(q9dz=7pt$52 z(B*&qp!(K|9W+J7z%v_^$E?AVb1XcGpmNWd9W-yj!IKTj*xu}*`34>yTae#;z{&)8 zoI#vmcF?4O2v6c9Py?17H25#UlL|5*mmM@{F2nN^M54Q4CwFoT+cb?l%)XcZnV z5T~6TG)Abwvm8`jOkf8M>gw<`f&z6uJ81CLfF~T(A6Ur_8pJf=2?god#10x-%ctf(ZJK`@q)9n@c{5uF86S;5E->RL32R)T8#nT+h9rfiGoD^Q-_ z!N?A3)O3hSfowR<$PTIidqmYhyfchoFH8_M0`bm5cvD2}K)iDh-V9MM5br#MH%Ig| zs7|=X$PTJ87KnZVHEgd#w_qUNAB(_0Adh$thd<-*Fu4l2D* zh!%p{ki1OnpaSNMD7Y99VPXfB2^U2DLGDy!Vh82xE27gtgAPheV87oGWdW6H$`IZi z(IgO01;TqES_|T-LU>O^J3%}(2=9fcHOQUn5Z)W`Y_Xso6FVp;eqhjOuwr0fn+8gn z`b^BA3?(fC>IfMyiC?s3VBlsElI0Y&V}L9N7J|;+f+i^16d4$VptH9U;4v~G8CC;3 z1_p)Kw$Rx_Aw@`W%FQCA!WjiO1Ue-PHv~E*3pGTUwG?Cs$RzOSosb6H5N*!+a6_Q; ztZ+l1^Q=%qv{-k63;~%0F+?A3h!N)#I|c?N(CQ2!=;SHf5a{G7)DT0~{~$v^CP54_ zgBxPQsc8=j6X?obxFOKVQK%u-tS+Fd06``}41urg6>{dxgBt=}*$X!Wy0RB)h!blk z$Pkc85JTWAdxg9>H^U8quIz;y0$te)HN=zk9LNxmNf1NeD|>|kIe&l*5q4%^5Q47k zh0T}>L09$)K%zK+RoH=nK>=hE#1Qz(UZF@%TL)N}L_w-zxJ#fjo=}%WuttCk0ht6b zBo-d9$(&6fL*A-0FbF}H=E4n0g%}DoB#Ct{$Pkc85JTWgbA_@vkHZatF3p7-0$rL5 zH6)Yu5y%jbNf1Nw;4UfTPym?(F$6vrD7281%NaVM zDFmGh1T9GcEddvT&IN*|G(bzhg`jhRuqEI^(78a^5^y2tTp(yk$<|s11|jJ3R3>2t zc~HeH1YMrW%EurNYM}{1m#2anXzVOP3s_a185k5mE`>O9HQcA`IO9Q%Tw}_>AOxKY z1T9AuwP#=uf-X-LWrVC}6M`*Ig=Dj}tW_XGK_){C-3&K$8|M*_p`aVrgrIYQpoIzE z4h#%J(78Y^CI4v zL2U*Gp#zX~3z}*@?8?9(bP&P^&An;bFfa%mg7RUR<1mB|jl+GcE-nlV3Lu*xmK=p! za)NUn+!E*nA82~LN`Zkv2sXhd#vnh@kbyx6Ho+&#AYTTOhfVN_Fvx>0R~3Rz@PRH2 zV`mXM&bkw1DadAsrO*jJ!K=Ou3>R31#3hfpF);8{f=U?)aOKJ%09tY;BnjrQfR~&J zNr5>W;3a25(qIk`&t{PAO6;I2QGn-w5(9&fCOfEV6XD4L$r!MMswfGb2_PABc2HF# z174;kWC1on0lZ92$P&y^0WVV%vI287c)o(7(2*Tfv*_@wwqRfo@?Zzm5C%M_H5eF# z{MkVzy$R3!MGOo=VeFt1+d?2Sk3lFLtlvf;GtZDgD2^Re3Oj(;ya~mFWn6ebYu8}9innSoCx<82n1Mm42Fxko5d?Xs znH^L#mhiBFBB6^NRK!*Ayt8Fs5SqviDynLD&Vvk?!44{N8h9dg7#M`+vxAC`7VzRc zp*8HFDVYwTEm{l=LR;8DSxtjcXd5Wt_p*cXhz_IB7Apn@p=0c~-M|-4rh&}3!2TM< zV`b0)r4ev30+I%=i&JL+r+bhBF#kUTIEnstgRYZPXJC1y$G{+Tkr|YJWTHSB`;st7 zniG8TpF3O~v#>h@gUnQS1_ognab*x2)bS9O1GBj;MASI{gO(l^rKU58sDp!rK_IuZ zfB*hK>LR20f4*NS8h% z=r}ul@Wn(744^am7{2&I?heui9UTX9KSVWy9|HqIh(W7-HUk4=Gm;~=!5z`;4snFG zjw~YsV{<|p=-AR=xRXG`P`Y^xjGbU7tqovcSPifq^j( zDFk-F9g*h_aRej;^3X#7bO0$R1WLe8dK$pM@E9comJqbuPzdDLOm5KDX-F7=LP5iu zfx*ZF6fv1jpeXngz`*b$fPumII_Ly=&~<`vwb?x4pv!7ueA5@c3=Hyt3=FcM`@tYF z4l)fAIt&bkj9Cl}j1ge_cw~7UqQK|xfv%8**cagivd=D%fx!rb!4V&k42t-ffeZ{2 z0~r`}BxHFVKg%cyzWhFfclS?b{&3>ktVJj~j6NoV-Bxc?K~s*n(~*1BZtbI6RgFF)+*tVqnnO zBg5-p&A`C0)&~+E9^mkJ62!o8FNlFb?~M#*c!0Ek!sCb!a$eN?i>cJC59Dh-wi+2; z2au;2=j8e_Fqkg{r40iv&<0x2g=Kuf3=HNs#26SD4Z#JXaWDgeVK4)O1?Y?xBVUNS zjQBuD#&`uYFt`OXK*O$HhSz}^M1WF1qoF{uF9U-Kj1LaG>|h3lOptm8%XKom4m^Gg z3=C%5K#o!t*dfE=pbZW%P`U)A1y!*1O~DKdb#N!CfyEXFGcYU+W?--aDcvo@;lKn84UzD|ZAlFl+-`$zXjrkb!~ef)Z$DJ2NQ6Y%)_Am@a~=00vvwVQ_r^*=#`v z#DOs1KQ`MVvl$pbSTv7~VXXw{{S%)|;#h49waRF`(_x(2LT*Y{*4vtf0%$n0+NcCb5DpL}T`s z1e*joB#s4g(HblCo-?p2&^d4{Jc1xEvOvy(V}0>}fq_+r4|MezE9e|J)*>()d=4C2 zDx)~aMDRUlzd?7KfldKqUBLsorw4ov9P3J9kT?S;$X(o^L(@R&LFd4+F6PvSodd_Z zlpSO}4o5X&iFvrudqNaJL6}GW&{N& zM*-+!9uS*#Au|I5yO^XOBWMc~0|SEuyFSNRkX@id%-9WuL2L%W_-qDtBe1=Y!{FGB zxIvD990td3Bm&|<4ufMik_K@E1mi0h*p0a_GlH%^<7WY#q6R)8=P}G*3=9I`>(AKD zInqD}v4IYQW48of?gu#xj@=5(fgA?MZVl!@4ufO20dpXS!Li$dIgrEP*zLd^$YF5o z_F#?#j{_3}1G@v5133(i-4V=DU=RW&WDZ7lFOJn9H-HXI1R#} zgO%9*xIkz8Ffa-qWM^Pt4+Qf-hrxkDcsJ-UI8c1aGYEjMKVuK&_zN-<9FAc^AU5PM zIQDQhPzXT|gJX~2WM&3kh^Y*Uhe!p`1!o-${45~jIE6uHzk#klgP6~egA#&=m?cQx97Z8fJo|{TgIqnIQ9uWD7@QdBt}gZkkZ^e- z1}f{=7cz>24v2ao1}f3m7eQ=z!@$pS3=|9C!{FGra)8=Gg7F0m?AwqccRM(=S-_FI z1I&g-?oM!gLJost-v#DCBX>7)ZCW4^r&)Cm{-E1QWy8ev)0@zZ> zVQ}o11^=@#Fu3q^f=s(22s#4HT@ZBr8T)mx0UqG%&)9E)^*|1TW53O{1%CY*`y(D} z_+fDDPxwGZDdaFX_NU--AcX;3?t?ra2}-AuAb&}Mk{9@ z0j+F^N)55^ATx6yJOeR*5HAeh3h!{9*C#m*r0 zn4N)vp9Lhs&jJb^X;85Pj&%lp7SLIh{4Ag<%gaDXn)Nm-0|TdoFsQ@B z3OeDIQ%4wdE(~iqDA^f^RD-%Hpwr-3m#{G~a7hTJaxyTmUYpIpz%3y#A9N;NAJ|1p zIT;wFH*hjAfO89jEc8+^(CML^p!{=&lYs%8c-a|bAM!CU@NDJV1G*9(bjBRdHV7MZ z#vIQM2pe?99M4V&8+67T&wgo;S+dYe!9Z;Aft4ztaBVab?HZ}%^Oe8}hL54st1p|r8LN5ga*(eLW6buwjvd~Mx zz--VNb3Ausz-pkEf`QqfGv;_c$bi*=&Y0u*0bzsAnB(~gVebdso%37Pg@J)V7J4Zd zm<>8(j^{tvOqnho(8bt{5Dw^!InbqGAX8;@L>L%Amx6)nA(?rgbA0-s%0Oq#fi49D zIYb7uC6s3ZqYTKmG8G^jCqg-(Gv+{-f`Lr~oiPWx6b#G(ZC3?d3I^tY&X@yT3I^s( zfL;m)=77$a08FQdZ!N45Q8FQdZ!N45Q8FQdZ!N45Q8FQdZ z!N45Q8FQdZ!N44LkbmYwjRu`D2f7ptECV`Y4ssz z%z-Wi1BU_Vj5*MyU|p zoFF}~V9Mngm~VlUgU*-(T?z)0keMRIzyP`w48#GOE(y9r3}iYN12ZQt1A`3cj5*My zU?2(bxzW}z70e9G+8`C6Gv;`E(HVY0i7`ix)cn|0i7`ix)cn| z0i7`ix)cn|0i7|&qr(h#H8`}K_!t=E7?{oZ7#L(gXUy>!Fw20%WPD{A7(kbTfjOWv z=0KN%fjOWv=0KN%fjOWv=0KN%fjOWv=0KN%fjOWv=0KN%fjOWv=0KN%fjOWv=0KN% zfjOWv=0KN%fjOWv=0KN%fjOWv=0KN%fjOWv=6GzNZUdb$$72iSfX)9OzOouopmQ%z-Wi z19L!U%z-Wi11kfaF$cO749o$YF$cO749o$YF$cO749o$YF~_qCY7gj)InbqGAQ@2) zQBaqwmPMddfPq0gv6umLDHy2EV-Qa)VE|nU2I4@^nB!?=VU7WvF$Yr2IZ1$lVUYkh zeN7i&V2}v`W%FhhIgpr)1P22H=u$9{B{HBh=0KN%f!z-}V-9pF7+3~$#vJHUFt7~h zj5*MyU|^XE&`ZIXQ<=!`kgrC?wg&>3@} zOToZ;mWeSifG!0C%Ye?916>LRmI0kH2f7ptECV`Y4s)9OzOokPNu0oB}#y z4wN_58JJrH85m@tmx6)BSwS~^@t1*{Dy*P0=J?AMKuTFbw|()~3WGwC6?A)-K%M}o zO~4Aey-P3x!Uo;mCFC!DRgi&!^Q0gH!(W(1j12OOa~K#HrA6Ngg2v{1Kx6X{1sNFR zg`iCeMh5w0kO~G85tOQkd)Pclzjt@-6=|d#95hBG=AGFu(NqsQ475ih)%YWVI^uVj%_wuq@{(AqIx~NJgFq8TlKeN?idY&dMC4@!MW$el`OG zV;^@DXrm{nTLB)WOA=;aPJL85q>TGYsnB83uL67^V^ib;ejmLk0#VHc)_dg6*0i$Ljz(r;Kq9NDIWS zPDPMiUxFDJKEUnjv_Q72(*l5C#T_?@~h`Hmc-<&C37KAq)&!C9=E@ViF7tTD7vg z4$2@#gDkIu0f^BLWoR#y<#n)?U|?7v0t(M)rZNTw?X9xB4qg%r4ErErj0T{<<@^r{ zTmuH}gHRopAhKW`?`3%%!X+3O-b2K|IzU7$qXC2Vf2eW1psUwFH)$aor^Y1*(W(xW zfoWsV(E)iWoL51P*P#>~s1;%i4DvsPK-bQ3f!ItF19U-GP|Xkn<&+(Y4)%J=a=Z=& z3=9nVnGB3ke4sukdnf|~b0`CYo~9hH1L%%Xeems6@!}v!txyIAwNM5IZ8JGu2T=L2 z8|=m?rilR{_t>k0Zk}4A=wPo7xx!4_T8`JDP=bNs97G+XA%nJ`9Ir#21Ovlsm=H)O zD99L%8MNb|k{n{7;EiH5M3$_P<8|nkU|{fqNU}0Nk>PLvC1;TBpv%NKAl9lg#xZ)R zGsbfiGcbcn3?+4@LI%)1Hfnuxybd!Yz(%t&CxG1<&BT!ib~Y$H)ZrIqfv(5`_1rqd zpal&d11G3k4+=YQUxtT)86>CE0}6F*agb9MfJ6O>I4p^3tAUefkS2J}L06=flYzl2 zl!3t`lz{;p5nseX5wS+m!QOyTmcyZ$fq|i2oPj|ToaikiK#4v+lz|~Olz~AXoTV-K zK_-@jGB6Z@VnJM%1Dx>8#X(+*1|$?LoQe%3Ut+-S|e03Jm3u=#xWTE6lY*~F2mu#0wO@8rHp#4J3tqy!T82p5)2HT zp$rV|p`ap14df@x(AEQoHptW9&~{ODuxEgTEhsp^Vavh53<^aP=+ptIKwt)COjF3z z0f^6FW;B<90fYs1bMTmPOENHku)s_XJ~M^63=AMF(8tVcc6|;50|*P8XJ#`4U0MUe zf?do!X4}LW7(iGsm5Ij;bej$c3v)5DnrR9#Fo3XN1uMUq{~QJe5Ei_^Dqse>GzWwQ z0vUPDLATz3u!ts``RqRo3?R(m$;L3t12kbV(H%6t4!+4IXD(#I0yI7X3Yq7UjKtn# z1D)0Y-9-bQj9~JY1Xa#V&?ycu8!|Bgy}bt9d1p2NU&_K<%fP_E2I`KpOp^v(Y0kci zfq?;pIY1iO88}(kKpk?Ht$edUDnT7`mTeF=s6)=O1HuM%$XRwm*q{zM%YLwFY@iM~ z%KU1L z0IG4J&SSO&O%bppfQHjR(-KUKkm-s@Mg|5pP(PjJm^4T^8>pYoav5v}8>pYoat(Zh zFB_GN3@<2KCcfCPF!&emV>EEO>5EKb-}77CbkopUwh33!WR) zPiKLi1E zEO>5EKb-}77CbkopUwh33!WR)PiKLi16SynJfgCw{?{dAU95Dq)& zVgb-B0XSXCGcaESDF^k_S=KVifF!s<{dATM5DwUM0Tu=ZuyQU2W(F1p25wM4onZh}8V-f;MaD)2kEGL;Di3Ze9XE_Dsfcohy(6ivVLH%?V z=vnaGpnf_F^elL8P(PgodKNr4sGrUPJqw;2)K6!Do(0bh>Zh|n&w}R$_0w6PXTkG; zXVh8vm<2&$#0~1Gvq(TWppH6=G?WACsIx#1gXacy)LEd1!E=K;>MYR1;JHB^br$Gh z@Z6w|It%nLcyMr8v4ZYRX4YqAVBiLI)L9IeWk6!wzOoDqEQU}HsH4te1m%D_>MX`k z4ydEfVgluWI_fN@P!6c0&SD1TfI8|d=1>l(qt0Rh<$yZsES69XsH4te1?7M`>MYh! z4ydEfVgu!XI_fO8P!6c0&SD4UfI8|d(8J)lK^=7#=wa~OppH6=Co`m&0Cm(^yr3LV zN1X+F7(6$qqs{_744xa*QD=c32G0%ZsIx#1gXacy)LCXg&P(S8b<|m)hrx4$I_fOY z!{E6=9d#DyVes6bjyenUFnDfIN1X+F7(6$qqs{_744xa*QD=c32G0%ZsIx#1gXacy z)LEd1!E=K;>MV<)UI2B}S(ZRKppH5V^e}jCP)D6*In<$`jyenUFnDfIN1X+F7(6$q zqs{_744xa*QD=c32G0lXsI%0v2-Jec&l8IoSn650LG>F0e_{y(O9O<%!XN-r$kNEd z9Kz1PzzkB%-o?(qFpC|WzCe?L+@Ov+OEZfcNQ@iQQD=o72G0%ZsIxM#LLvv$QD=o7 z2G0%ZsI#&_Wk4NuR_I~y+@Ov+D+g2t)KO=J9tO`1>Zr5wKxIH3bynzM@Z6w|I;#Lw z2Gmh!g&qda4eF?~ia=#R9d%adVes6bjykIZR0h;hXN4XH&kbsbv&ukZ!0Qs&xOu@1 z2GF_$HXgwm4hGQrh-%PU0MNPwb{)Pc91INLbqVZ6V79=lX^adUsf^;Fye`PXzKr=1 z2Lpo;Xk7yP3ZBg%b`xl-WTh}joPixQVEBmxTEa0i2y?J6<`m;(U=RV_PshF#w6c$Z zL1Z>)CS(=s0S-`mh!wOhfqgYINE>)v0{eRD4zSDEyTH{vs8$CrLf{mW)Z=7e5WNao zgutoKu@Gc1Xex`-P#DB!5R1=d;4}hT!Xok-G>Kuv4e~ID$dO5m44g(HAP$enM$ol$ zM$#aTfLMG51E(?fa*$CBTrBRK3=HhnoD2-xIia3lU=Rf_Lf|y#u;KzOd1PW>;I!lf zX=V`d0-0n5=CFu72lWlC!5j{e#~@`kU=EMSYZe9uPFpZXKx7WcU3OrOhzRJ0KTdlv zM?wU&2!Yc9%#jh{2kCJHa}*fFLCtCoMoupdP*Y398z~LAs1Y$FYh-fh| zaE7yiJjo(*0_3j<&g&qZBA`VGoRJD|xfmEa7`RwK#<4%=VqgGaaJ44Sz{PTmg@J*K z1r%JO;57)Gr5w`S3=AS+>5L4VWr83!gUClI1_sV@h#d@EETEJl3SNW2Ig?`wHv@xM zd;tUJEFrLBvG^he&e@QN6^k!t;G6?ybBKidGcs^OFQgOM!OXzG3B8a`473J;bH3nb z&}Et;5g;!t0PB$ux!1(Vz`0212WU*4fmxB8fq@Ua27$ALkpm&>95JW{8;*lAz*-vlYUVkp!(l;A~?Qn=Qb=puiuWTfo5C!6>v)fPq0p64Z#` z>|*5FB*4I+AqiT8z}W-Qry~hkgTUDj;TcGR)*x_BfY@gu2?|cmNsPif1Q-}BBtdHs zI43g->=R&Mu#p695JIgCP} zX!el=twG?N&nWPPkAdNaBxnr+=K@H$JOSMl&%n8mQT(<51H%hR&1Fb>eybdO&f8qGIT#p1L{`3JVBmbj zqr}O;5FruA)xi;xI^p79MaqLU?SFpoIsV zuv_RPK^<#OS4I`kMPC98?4YaZCh$WY%EZ72UUpg9&pA&BtZ)gICCL93rWzz1I|1M&p{Hj@PIQP!t-EY2i2$31fZe7&L9I?c)-O1 z65(P2g^nz!tO3V50~gD30Z>tH$qynyb)qb&n1H1dP>+#| zpz@m=wD5p)8I%KBc)+Q!Ur9rD9FMs!3tWtEUzdC+EkyI!@w;o1X9i*%)+g}IRS2nB199P z5Q7}(0upW|2p?*QJnL%EtO3X*1<(oE+$wNG)Hy-(4su|ZXh1Z93;|t0!mSD6Lk&@5 z{QxoqWD>*>ZMY$NoKivz3=l)~A(}vjfR2*pHh}P`4Vo33q%vh5YUm=+^!Hl)DS0D7SJ6qAd?`5xWf(c;?xs{g^4#r6UY#-cYGjx zs3D%Lo*+X&CP57GgBudaSqwKM2%-sO2-rKp5I)q90MWI|{;uni0-=31kMyAcz?;a5LgLZA4(cNq}f#l4Fnq?G5Bkgzy<<8RS5F z1G$qRd=^OtInebm+{q9=vlxRM=z19L6bPSDltB)3Jq&j$gfGg#z#z!N9mg6Dx`+nk z5{M(x;f~1Sya;jx=z19LY=|aSX$Cpa^)TEyP`((09O!x&?p!EekUeHy}rWTn2GeG2Bt*oNA)5 zkg0%Zl4D|!16>cpT?yecGBU`4u7}~Sg7P6gEn{^AT`U7K8DeM++|YW?+hQ<78z7ok zWEkW?*TZl(Limi*4053BVYr*1d?^Mw(Dg9f%}~B1gB<7}OYRm3pGllS4s<;XcPoU? zD8?WMx*mqR4ayf~kON&0!`%+$i!jK6u7~07fbf}w800|L!*F*(_>6)Ka`Q|X7`VHj zd;tczR~`%u+}%(dKm7F5I!iQKlNo`;NAq~i!jK6u7}~?4CM3B+DQNx*mr6D3mYFAP2f0hWi+V z&nU$p2f7}H`#6*@$sh;19)|k_lrO;`2f7}H`y`Yv&L9W69)|lAgwG_(AP2f0hWj*x z&nUtmCvOKD)`jwg8RS6M!*HL4@`V`WK-a@?pM&xR8RS6M!*HL6@IiqLx*mr60)!6= zWNlD(zX;{?GRT3hhvB{iTJR%HopzC3{-$M9|!VGfY?DG!F7lLM=_fWndH2Zvj@&%yT z=OdKQ56wQGAbe0k49-5EA$&$22E~ek6b9}uP(C+<9O!x&?ypcj7lRz=dKm6+P(CL# zdwqxSnPFAt4+x(Tmfe0r`LOKv3(9APX0P86J`*D}`~89Np@H^_HC~2+K^_!xkU;wf z2{a`ZZbnAV9vKD(WpJaFi4mernw3EXbN~rAGgJU{sf#KLHv=QpbtxS#@1lh_$qKZ8sH83!?m2VoLFBd3!r%uNDNjpCdP$`e5+z6e4E zSXmg9LD$1@3qb{#m>860To@R*g<%2=3=FC)+cpox%P?4m4T;x*mqRgdNo2D-Z!)55rx`2kQ8gh=8t#;jU!|wYn-qK-a@?&t?a; zmTE*m*TZnHWe3&54I-fHVYm;lbI3C=w1|MNhvB}*4l1R4L_pWWaKB^+<^BmGpzC3{ z|FcVgu7{BXT@S;}#>fszU3(-!*TZo0GO~kG$N@>v^)TFGjO?ITJ|YPYdRazxP&}Mq zPzQxDJE(;WvJO08AjrTDsu)4$g87UL?4X>kArI}5axw^ju7}~4V`K&eKR4)l7;bq+ zQIG;*79L4X9YqEPIbm}K1|Db!5!BuWT@S+p?I1GAFvx+fhvAWdWB^cuaJwY~1CK0} zFU24ST3E^>2jxpL$bqhh;gN^(B^cyD*Te8AK>6Yfa-i#Bc%XerPy-QkJq!=DFA1u~ zLD$3ZC_~kYFvx+fhv89y@`V}XK-a_Ys6zQd4053BVR+P_d_e{|(Dg7p>QKG_gB<93 z7#?W1laZf64s<;X5476}s&PQq!|-T9)$=mQfv$()(T4JQ800|L!|>=p`P>Y0&FTyc zJi1Um7lRz=dKex(D4&x-4s<;X54490YD3xs-B%e4s<;XPYi_5%)%fCx*mon7QzR$k3p9$@Wes+Obl|M%NBUz zp?pRLInebmJkUNcG!8>pxj`4(fP4n=R1(}%shp|G3=DFh>tT4(poYjZ$bqhh;Yo+^ zS)~}{K-a_YWI*^FLJV@C>tT2@A$%?l20766Fg#fhKInQFK^C4A)&`KJAe$kU=D;n@ z=iCLd6daP!jxE0+gB<937#?WHmXm`)4s<;XPZ5ftd8}7KhJs9n7+L~1w4763g@Hj1 zbUh3Yw4=)@&L9W69)<_n(PbB4kON&0!vpQ;a%btmmo_(*Te8Yd#@Z44053BVR)duR}KLNInebmJkZ`N$P&=?Fg(!S zE7Xz>Ru<4jGa#EFmh{6dnZ&tH722}nfp$qj%}dbrFg&m>DX0ys#=yV>>yolF$bqhh z;emBY*%;(N*Te9@x}>ZOa-i#Bcwk*p76v)c^)Ng$A;Akuy`bx1cxFNQObl|M>tT3i zL-~vha-i#Bc;-O)kSsZo^(4p>AfG@yF%RyEg`CQ23=DFh>tT4HT~anF20766Fg(yM zDVqp`9O!x&9$1%Dm_criD+2=$tV=4yAZKUKz`z6Tk_tgAUBGGwx_Aa;GsMyra7$Nn zc7QAe9sS6&2I5j~Q3koQb_@(WYoUBD20766Fg)uZd{DjzT@S;v9>NE$8Wv>XS;e{- zWC_S7h$S20mTcklRcBz317~(vKT{r>*`fVRMmYvK(Dg7puzsd2gB<8S4<1-QQ-(nf zbUh3Yw4Vv8fI&B_@WA?+QVepS`#gAH{Y*&)InebmJg|PI1cMytdKeyPKa)|MK@N01 z49`A@CqVak2(s{OX3YRyWCQXE#1jYLo;b`Yqyh5;w4Vv;cY;eSXg?F~30OZ9<_TCo z6Xpq6KU11P4(th7KNIE&Xg`w?<_TCo6XuCC5J$s30qti(J#mOt7j%&g$R`j_oQHej z66bZeC!n22xF=wpM_5e2I*%|pa3d0qZ=%JOS-I z!aZ>Z;wh*nF0y_Cc>?4Uh$rsBJ@JrpjwUQ7pq)p!C!n22cuYV$kD&2VaB_ln9vNYt zfOQ_F8RWp8cn)y{XoLWqoL)frFi*UM@?oBM1?9t%(`yJH>WK%e+d;SSfP4b+#9O#0 zzHoj7c>-K*Ks$e+rUB@B7#>*XkC8zRbUh3YwDSk806(+xfbM_+nG7-XC*06KoNijM za_}$2B_KmV*TeAqgYZG^4bb&4JpZA5ND=WHe36Yj$YgNGg@+N^aZzI7VPWLFtOf0E z@vuUBJQ5rX%Ao6Ec-WutT3coj*n<24&Fo zFg)9%}sH?@e7?e{$=k&rlf1vAOR9Se$ z7+I%+Oad7PF-aO>k{l!FK^>SQ<)J3A$S^2_u7}}KfC?~4F(`wshv89#3NT7CD1)wt z;ZcGKNH8dau7}}Kh6#u>D1)wt;ZcDJh%qRGu7}}Kg$alc z*Te8w!UWhEl$%``7jeV_26<2vL1L#I5j$0koZF3H39uTfky(~O8FW1i zPYqOnQHDVobUh4DElfa~K^b&C3{M?QK#D;bbUh4DJxoB7K^b&C3{L}0K!QOTbUh4D zBTPV?K^b&C3{MkGK#V~dbUh4DGfY5~K^b&C3{MM8K!iaVbUh4DD@;I`K^b&C3{M+O zK!`yZbUh4DJ4`^3K^b&C3{MA4K!8CRbUh4DCrp5!K^b&C3{MwKfR8~LbUh4DH%x$+ zK^b&C3{MYCfQLaDbUh4DFH8Uy_I*$RW)22r(Dg7p{ZIi=g$=qMhGzmyfQ>;JbUh5u zM3?|8gEHuP7@kQm0Tu>j(Dg7plVJkP49cMEVR)v%1eh3 zGU$33o|P~G9tLI5^)NiEU;^9>%Ao6Ecviy%xEPc{*Te9vfeCOjD1)wt;aLk4;9yWL z01aZUg9)%RD1)wt;aLw8U}I1QT@S;v0Vcr8pbWYmhG!#8fQ3OBbUh5uCYS&-gEHuP z7@o~A0VW1z(Dg7pTVMi=49cMEVR*K}1Ryayi;;Dk2?K*XD4HQLyd4q4yBImwnZjat zH&i1ihC$cE@a%yKfMOVQJq*uYn1DEgGU$33o_#O@F$QJO^)Nj9VFIEI%Ao6Ecn&}X zn1vXWLD$3Z9E1t*Gbn?uhv7K{6=39JPzGHO!*duWz{{Wvx*mq-2vmTXi$NK5Jq*uL zm;gJ2GU$33o?|cp76#=EWd;VG<1hh629?x22A&g8KD4c{lackbDFcH%C}bdkataYB z7a2K!zyswHRHHm2gEHuP7@o^e0jNnA7+FQl7#QS1#z9QFiZJOWBWJJ~EO>80HG&$+ zpzC3HZbJn?Ei%x#oIH1+0?-!O4Mx@ikkKIXAx7Ur82ylua~<61M^KF-JPgX9>tT2v zLj~B_7?eTR!|*(T2|yCX14h=`kYP{;T@SD zXoroTK^b&C3=bnrfR8~LbgnlK6I1|nu(v7;&pSp|GYe1xF@tq=SePI^MI{y`23-%s!vz%pT@Rzm!o$YIIuT?v$b3jF@*s@n zXX4xkG8%L*1djkzBgkm5BL$%XP)G7HvEBxm1Tqd{k}$#~F(%GDOIRuvhiMdIP!0x# zkOWkKQIJ6ybUh4@BuqenLD|RzG?@bx;9_G?23-%sBMlV*wXQ+e!|=#J1(=yYxiyi2 zM;0o;$jG1qx*mo{4kiFezoJa6-Ifdt@*qb;+^c|auO<`c4v>366IMK0P>ry;LLP0X z0JM{|Yh)KFolSIMS!|;epD%vtIh=8t#;jv-|O;It3fUbw(u?A1hv50`K zhv9K%2hCe>h=8t#;qhh%%{TCffUbw(@c}Cn5CL5e!xPL7nlum*Nu0#Mz>~}l8vK_K z0bLKnlgpl}%)lTc0=gcCr<5Hun5`fJx*mq7jvX`zts(;2D9h8%-lD?5pdkXf9)@QE zJ7`c>M+9^|49|Ra(BP|q2c^2MtQOh}b4GFz~!%pQFjZ;2{FK9){;V*b6=)pzC3HK7cs^ zBB1MGcs_zTAtIpbVR$})IT0eD>tT3)v4aLyVkAM=!|*UMvV%rM5+p&_!|?DjvV#UP zQY1mw!|;eQvV#T^G9*FQ!|=#3vV;2mIg*0<3=BL*jO?KPdx0eAdKexDMs`pqv_ukg zJq(X8BRi-^SHTau9)>5DksZ`us*wa;55rTz$PVgSG)RK3hvAvY$PQ}Cwn&1mhvC`5 z$PQ}MbV!1(hv7NR$PTIidn7^E!|xedKjL! z5Z)0<&?($JtW4~n())xY=z16)UM6->0dqzYTnvaXv4hHl3zDGgVR#go*g^UFiX`ZI z7#<}iu@8@50(4IXFLd@6bQORg3$F}ot1SbAyn`)t_K;T*Qk)92@TzdGhZ_Q&l7$-rosxwb zqRe^`9T-SfJ}lIq7OI3h||)Jfk6?p zI)fKFc?vfKI(Z5;#E=!#zLW=<1Tn-6Zio$MogFMppeuXfhCnArp@vwq&IGvxWD>*> z_{v^hXU@ZLL!c{r;f6q0_CgJDV!a141Y{D#5ctYoUN24#dzee0D|_LFKv(uc4e?}E z2HgPzG6`Y`d}S|hAg3?L5YY87ywH`suo+Wc=*nKu^)P}gyaB8kAVWYVK@5Sf?B$K* zoCGoiv}~LgI^zj<33SF2>XHc7wID-4CP55|g$Hah=XH=Fpi5bJp-Xe&hCr9*LJdh` z{RA=uWD>*>_|jb7EKV5*1_n8>A<(6{a6_O=bD@T0vVwY^@*tBShUCFrQplMIHv~2< zDZwBIPWHu+mIl<20@fPPZ8RX0AcmB}4XNW?1~LS6p9*h1L=)U4(519cLuy$Mf(!wf z1TmxuZb&QVYq%lM^|5e6pzC9yhP1GAnGQE(7UwRwA<(%% zxFOKFK&T-zS+9az0x}6=2z)M(cOhrI6LcV-7djURT9N`<0?rGa3j|GRfR=#sLgxZu zOTc-dbAhlW;JnbeK+uvB(Dg99(B-L2!VGetikTO>Je8G?K@QYHU^)S2#An6t~)e5>EhW8+Z51M-eT@S;12+D_L z4(OUwXdLcioe8o8WD~@aqi{=3aDIkc0-fLkO|OHlhv7X1HB^j24s<;XFKmKOltB)3 zJq#~wf=`4&4s<;XFLZ(rw9QA5h4(lsAL!y4kj)TF&qFK~hg=WCD=sPR#=sx~x*mpC z0$jN=fR~){N`g5o;3a3gQeX}Tc*z;BG?>F90=gcCSBV`|B?^cfP-0-<)no@%Z6YE$ z3JeUq2JE0JN*5CL5e!|TruD(Ou`<}YGk;00p=u#fUbw(tpsyYL=wFj7dE>4|+9hB}t3c&pT4D6sJ8sG+9 zC#TN93c4PK_aZYW{jh43cK=WME*ZK&WHRaARO#16>cpCnF9LX9Hai!zTx3 z3tRB3afY}vFo+eUrZe!XgM)=Z40JsVzXq7YA_6*hh+h-T;SkGAW#HEWvw1{7*Te8@ zgE;~spzC4yb-)}E5zzH8{JLO{gb3(*7=Ar4M@9s6Jq*7-n4=&9T3ya>0OqKOfEuR! zhG33{NR&DQ1HTcNqay;k9){l-%rOuFZJ^{g0dI*kVPFMa55sTDJk^bXff?it_5^nZ zhEjKEAPF)sr@AvRuz{|J;kTCoiG$DBmXe#i` zoq=JB9ESs_Y-OAS;%TNN7cnqefUTYv%D^xulz~AD6l{!;4dFZr0t^gHj7$eu7#Or~ zHZU+S>I)ReaX2V~4}g;PU|`SzpV6kT1lnB57z94-N!tT-KyLyg0|ST!j%r>8W{_g- z6eR`*Mil`GISvQV1rLmK;^0Q8s2~}U2R8!50vo~4zzkBX_oIk`fl*YTMV7;1GT0Rm z7l>lGfFYp;v>V^U3v@cs=4A{FJX{MPrxSrrLI9mk6rl`1oroE9RRW8)1n3ArCdgF@ zEMPX|sstv;~Bn@Ui4Dg3<{1z#=f48Faq_r}Z2~AZx&zWetTvYz6_y(FPzZA@?hA8gYX-koy%ljlkzRLGD-JG?E6%2naxq zHh2O$1D}D9rG=4!fwO{20q$g z56BJBqYXf81|I0q1|Uv@5cFsRkPjFbg`h_pfOw$$6=E3~7|ww1R{%woJOe*y8+#9D zCH}~%h6#b#koy%l!`VO~1i4>=sbNB?HXB!xTOyYr_Z2;0E!2>*vkhuM_bZ6P&Ncw?I7DG*8-RE`qOh|KK>7qkVP_kp zfzp;J>}&&&oP;RsYy%KaMih3o!4uH^3SzLc4M0bmtB5`Xo!8LC$n_g^zk(?2Yy*%! z9Z}fX1|Xh+DC}$lkbNeipn?H(wgDq21A~Pq>}&(jiRd<>u(J(7Djh^&XB$X>?pFYx zcL6%v0F)3sL}6zefa2Ll6n3_OE$Ds)QP|lAAiqBWZNCJcZJ@%*!0da(96_(8%2_h!nYd zzvUB10D{vl{Jp;dAf%6pa2l)L8oToXt*cliM z1fXXdfb205fSzptayHv0muLk@cjy$ zx4;gC+^@iSo9h((eg)1)Jc0206*!;pfl5)x{R*5R()<6vNrh8=SND$1o{#~gq;uwxFu9M~}jpu{QzJ>~!uP@Kov7#ONJ zp*I++Gq7ZFGBC)14o&9nlLCp$vV)sNJZXGSIT;w_zUnbBFvw~9GB7a8rTQ>1Fv-pE zV_;yBd!Ww1z#-S8!@wXQ_tc$%K|#(&m4U%QE@UfJ|oKX5p3OwBZ6RzOrCo;FS^u zHOUxwR^~A>@JfqmO&}OiGhJv1cAp3Qod=UnvSD>z^E|f3Kpri$o*Mstf7?d_X zWnkddhw=p(l$=5SF@W*~7?h$w>J6cMeg>rvApaXd`FspYi!>P+c#WZaUIr!5+#at9 zgb$k9V`t%&XFbEsz@PvMX-FWO!2{WnQ;ZiD$W{<g6awwD!3*;~;9~Q{rP(Cb>BcOa(AV)&^ut1K2@?n7-4dufEIR?sy1#&Eu z4-4ctC?6Kc@lZZ2kQ1PMSRf}t`LIAvg7RU3oDAi|0yzcBhXryfln)E!GzcFW$bqcW z_!t-zKp_nY5(ut3g-@?n8o0Oi91xe&^S1#%IT z4-4dCC?6KcB~U&rkV~O_SRj`{`LIAPhw@>8Tmj|70=W{(hXryKln)E!YA7ET$Td(t zERbuVd{`jYLHV#iu7~iUftf8iC_&hwwqWt=L(3n^^-u=azv?h8WrjH?)UyrT_zja%vs}Z!bg- zDB}JoGBEJ=LHO(v3`$c$W0n07K8FB<5@>H6?*s@RG}FV*!rRTd1!M=vB8VN6;C4*q ztP^BlP>KZ=p3@+jI3yU9y7U+rc&9`7EFug_;DOm05I&6!-v1MhAqpOZm}!G(c=cMp`$!JsrDfPsN`FO<*DpcJ&6fq{1)l+VVXlmc?^ekh-n zLFq3jw;X`-VTs@%gb!Lc!p_3Glr>M7fk6QjvyezV43E@foIgO3dc=x>f%iB>6T2jX zk{)QZ{se^2D8Zm~(UgIK_aubRF36zd35xVn5I&;-gVIfq`qL0TJ12wE36P`CK=_Ot z3`#peIpZvZ&(6r8G~I`Rf%hDQ4_ckZ&cb_?Rak_9K>_4ah$An+9eJ74R)m2;Dax0D zf%ghT6R2DO&+uG@@Oc;*Kn=c2tPvnXKqf&9xehnv7H1ROklPSVa6|4u_)tS`vd#q= z0x}6=$UV3r4>^y63}FI!{}DtJml%T*cmnG&gb%t2k)4J20qY}>As~|=hCGEE@`5u) zlz~A>6qMUvLNtMjq(>nBD=1%%LFqWCY55w;mt|1;2}(F`pnMqyrK6yx<69_SnnCFe zs0e!p37+Sy<)RD>3Luw39Q6_Is4tugL5{Kp<(97yO>m!mgYcm~ z`^>rrWC+M4h#^1VhWzGa6JuadI_b>7!21WH2~-XWfRgNAC|`g<=`5&``wzg{=?H{P^&dLbU$0f#~<`~V$ zz{>^`;9*b;0_9D1r~n5GgBrMmA5O(o0aw>>3Fld0P z4?d_qMtKG`(0)H&ewct9gW3U5!&(3)Aj_a;5302UVFEG?YW1M_6@m#!GpOl&cZ9n$O^jAK>=hO#3VU{Ns5e|TRpbtl%WDp zlN1(9uV zEXBZ}0CpY76%f}&AzT;B$hij)UrEmSs?51{Fl{FaaqBHE0c0G+ zq)dcKIgFg3OBd9@Cgnmk!cEG93P4TDW@HTlnFKNpVp0LrBz`$P28IS+aY+HtrE=M+ zj10VT?4VH+1|HD5N?vpJjob_jEIgofmAnD$p#C}s&w>mF2Hs3|P`{Fg$2OUPfwzer z)c+CS@n6Njz}v+RYNw0v`~hXV$?Tx^wFD11(JWyHHH2k&-b`X(;61_)YA`DBd;@VV zvV$5LDm+>K3=F(C*g+M#2G2QA+wML)sAAUPsRt$KXY8N~)_|uJR9Jpu2UV0NJY}Fk zj-TwH3d%zCnmPjmFB2m>n-~Lwjc6*U669uN2UQ3TqT!${Ai>BEDzaTft3dfso{=3? zB6^4}1=SX6jO?IN%}4YWsDYx($POx*0z}Oc85wv@8QDRlONgins19^zWCs-p5u$pa zjOWM54$2uZqE9^;7W)N<&46jvJ4E;Z$ZIS0p)xKaVjAk=olNH7@w9L1B2Wf(Cr{{=Pf{EY<-rX zF*Yk}1_oxig&Lrdwlqx!23EOAS_}+qa+9?g7}(`R9YAAmHxw8cIOQxX85p?a60H~* zxaHnhGcfST$%Fb8ax3&082IFN+A}cl%U$*XjsF=LGB60rDVQ)Y2+6H;Vqg%KJEzIO zAR@Qgnt?%7PS}cpK};?}i-AF0F3y~RK|=1DHUopCoSiEJgOuD$Z3YHuxvAa^3^H;P zZ5SA27RTQD#vF))90WMJU4V)g`G!2t3jHxIuU z=VUns1|Ahl1_pj{VbG2D3_K-P3=I4dU=AbCd|L(ven~KgiRYC*0|UPln8PfPSyaft zFAe6f@YF~#GVseto5?XSa4;}0a${iNmu0q=V_;wbna??2j)7r|9CYNAiGgK_90P;Q zab*SuetAWZI5g}9g81Hm!afQ#^DftA1Pc2cH&ECo88R?1GcZd#GB5~)Gar>>fDMTX zMDj_>Gcd?`Yl0L{a0V$h(giDir^Ub^5X%fYehFrNJf9m#afms1{8Ry?I2W`6fq|LL zmw`bbg;`Y|VR9N@E=aMW4@mJD69xt*2If+21_psl<{%_x*?gcwapV)!85kN=+;n7^cY!f%HDqQUOf{9%5wB>QZ4~U}#}x(7JB~nzm+V(7FdwFTlsZz-*_< zz#veN+C@S32r%$LCi!20%;{j(Q$Pe|JOLqH#oc+}g zhAXixkOy`VMWMJSqs>i?}FhdL!q6|F0+!+`I zW{QE51Pjk86$S=@Sz@3l;ot%Fs0C(=fg+QK$0UuBL12y;C>aRw{0?Pg5SS|l3O5lR zZ%`haCkAr71kYC|1_puoV2&iuEL{c$fdyjq3JeS~JkOLF7z7rHfgEkX6Y9*sAh1{r zG^b(0z+7&}z#y=M`G^9jK!$)!f*7I=H$;!K3~mT? z5FBI(=#(@;=pZ=MCAzE=L56@#f*4{1H^h{4H{1|2h|M5Fz}_*3@S%p7uwDZh0x}6= zh$Y+*8%_pgn0KHf+aN>0-hqy6Lk+QJl~!h8Pym?(F~k9Gh%=`v+z{w+HOLT9%_|5U zu7(=o#F_vy1Y{D#5O=sCUYuQUL!e{OAVa|3fsR2#4e?}M3Ni#_62uTcxFLa@=i!C~ zLBarJ2-rK&F=(hE0j#e;hJZ|h7!nFMB!W{|1r{dIfn`1+2Ib5=20`e!GSrN4Ry`F4 z1_h8o5Hn)nX2f&OfSUmwEM}5pPy#J`6@(2I%Q7f|mc0r>2a8!G8I(XL9}7YUiUwot;H6j&(E05g?a99FY!pL>8y6Dg%QO=;UL;Y)ELZ zN;4>dPCgcd4i>YDF(`pfJ{E)y7PAU6D1lBs7K9EKv+^(~flfXagbo(7vNI@wPCgcd z4HmO8D1lBs7K9EKgBGl?vj}FgdZ;omD1clBaa1wfQRSRXAV-0-GIYdOj)_4Dbn>wv zY{Zw5K?!v7u^?>3mjN`0B3Q;c7i1{NWQd_Pa6{`k&DCL1)&TJ-iwuJj=;UL;MhKr# znn4M4^08nOlrP1g1UmUxuo=piWKaT~d@R@k;WLRdD1lBs7KD!YGKw)MflfXagpT+! ziZUpvc``5vLPvZVMHrMoCm#!TK=lhTD1lBs7VL!Z83h@XKqnsyc0u_93`(y&7#IY* zp?rP@CD6&of;|vE6EA}j=;UKT*yu11gA(ZEV?pTXFe5jE66oY(LFni(BNu~`l?DTY zAarz?iGx82bn>y_M2LBe>n2!k`2?`B)G(IxNhf1UmUx5H>n2#GnK^ z`B)G(IxNVb1UmUx5IQ={#Lu7vI=WR5Hag75paeSkSP(Wk%*&t*I{8=-Iy%h3%AgE7 z`B)G(I?TeL3_AH(5H>o@%%B8Xn<}^m8c0kG%Ak{v1)-zEOpusg$LgcWz@PvM2}RIQ znc#kSAROX+rUeUx!%#!y8I(XL9}6CV@R?*8lv=eJ7zB?(`O*wZpp%aUk3sm1QVdF< zlaB?Vqr;#fd(g?pf=Hvopp%aUp`*i$;tWcllaB?Vqr*(13`(Grj|HKl!=UU7I{8=- zHaaZKpaeSkSP(io%qYa51UmUx5H>mt8lnef-}4anfC3qG^0D9r2%nLUK?!v7vEW50 zpO--ibn>y_B`BYVK?!v7vEXG0pNWe>33T$YAao#^k&{6Qbn>wvbRZd&l0hdQ3toe$ z2W4l_$;X1%A$%rQ1|`tR$AUK?d`1=qCD6&of;XXjW(FnD$;X1XpnN62Q zd@T3`qMnJFK?!v7vEWlEpOHZcbn>y_GYB7=eeScifgAyH3B(aE;Es6Bxj+Zz2pMg}GaIzZ`~l&Ew(x?p z+fOJTmfe0q`OMJl^&7%xVuWTt=twp+&|b0b)?r{!0EHYR(EdRJO_fEEk&*L-4s;+( zkO?|MBhAX70oq$9$P5(#omZ^RBFMnV%Bsu2pa3!rJY*xt3LUahWfA0Hb7x>aWpwZBEcqf~+( z?4WkE1P|!sV?lp*PXh(+PCgc_We2soDtJIA9}CWA2ep=Jct9r~3$A4c)xr%t zpp%aU53r}`GcdI9fKEOZyvGhIrF(clCm##GWC!K`2|S>aj|Km;m*_JvOc71BU|?8QDQ8Ky4 zf(+n_5o9iy&&UAI=`H%u@eED|Hqgn(f^v+^px~DVoqQ}P&nOB~z|A5g$=LzAlO1&O zu@JO_2x@PGPCgcbb`U|6zMzwjg=8T42-F}1oqQ}L3*}2OD1lBs7LtSVB^i`JCm##R zL-`U6N}!XEg%qHCaRw#O$;U#_z9guD2s--=qfH4uya85o3M%d|uolt3pR3&ECY z2{R~xPCgb=g_wfY?+n-gA(ZEVvGCm##JmT7S_D1lBs7J@C);$lz&oqQ|=Tc*Xy zpaeSkSP0rf1=T>HlaGady2-=y2lygE7tcwj97!>B|LmQMr z@XoA|E$3ZOBDk)?z#s(eyb1^~D1lBs7J@Cy;%86-oqQ|=U6utp`IwzW$cFU?$WV~U z;KEbL2~v1+vk19z8W}-r93kjhD^Pz0bn>wfY^@a|gHnMV1A`E3trfTdB;>;CYsA2y z05Tb3s2AK&KhAQHp-vVI3_|`8?}JA1H$JJ zVo(B|d@Pg+;d5~?D1lBs7RrL~LGv%{EJ7))cR-ecY=&5x1GhAvQ_KVwlF*JVzaWDW z=;UJ|Xvdb5gF)$zEdzrPbQKiT&^%T{69xtakjW53OW=l2 zKqnsyK|8wa0t`x^laGa<9bHa#1|`tR$3oDhO`!9F*;$0jSf_z30oeqxq!w;T1Lp&f zC7_d!g`gc>kR|`s85o419bJ$mpp%bs3rBRzd@FOY=T(Q2DhY> z)76xLK?!v7u@JQP3YtFu;KRTm1ns?o)+T|5_Jp9lSCA#3laGawftV_zmpaeSkSO~VZiJ3tObn>wfY;6-0gA(ZEVPKwf ztV=4)paeSkSP0f76=G1bvu9usf_6zEV@*N}SZ9GO1=$R-bOqef)tpa2mV!<`7J@EV z;ud940-by;1YNMi4O-yi#K0f~Td>5*paeSkSO~gci4#)TtYQT%dR7401hHfz+>$Mv zE6o|8nH|>8l!s<^Xg`xtjzI}@^05%CpDD|rly1hrAO!1Y$}lK_PCgcb_A@~hFzC== zAy_|Cia`lX(8&0qbYNJOS%xiZdvIJpt`!LOpSawbO!uK>_3wh$qg&J#mTC z*b){K(9R>=6R^%BEGA%`N0=vIoky4_pq)ohOn?pz7J_viVKD*gJi=lE)_H_^0@`_m z$HW~-AV58Fk=4(Vfk6S}6No3^3zmc)a{hpO0@`_mdji^dgvSK5^T-JE1hn(W2=fH2 z^C-=r1op&ph$G-J@dC<+c>=b!3FZmd+9p^`K-V@wJ@J4QG(o5U@(IKfZ{acVh11sx zR%Agtf1suT=;UJ|Sm%$CK?!v7vCwy@BOn>=Gi!zw1A_v{WQd_Z;fDUAz0^+k%d7Gbn>wftn&xy zMhP)9viewq)(}`hyHP@j&YuuJBWD-fHL%W~EHi@|=;UJ|Sm%$Ci9ro?^05%S^T)uz zpw1%1$H=-IWHiWph(|@BJv3DoA#p~|D{!MFpj|sLE(SHw$;U#l&L8OHV|5lGF-F#p zAd^7GK}?cHm?X!@DQgQ0GI^*;EHVsgpp%b<6rci3QVeRKlaGZIp#qGO3~Hd0kA;+A z0ul^rpp%bg z2PVMEpawemSV$Ktz{Jd;20HmzNDnFiiW1Pt$3ps00Z8{-NS2Y+3UrtdC^R7fX^03& z6GqN^@PIUhY82&WPy?NOEMx{1VB}&@n`y|vAY={`;ABt(oqQ|=U-rbopawemSO~uC ziJd_Wbn>x~6;uloD}$Pe3j>1?Y}pgY1E73zgj*P6JWT*ggG{n6= z2>1Fkau(Xd+#3KjiCvOG4RrFc5Nz2KqXdH*=;UJ|*s>>PQ3f^8$;U#$P%X?t3~Hd0 zkA*^@0vucnYM_&kgxKGE6{*K@D{Bu}}(3K$<~~*O-ApC>16k z#h?Z{`B(_HY6_IWK_?#z!B$Oy0uprcu}}s~i#UTC=;ULeOqhTegBs}MW1%dVfGC3+ z=;ULeY?y!ugBs}MW1$?FfG~p^=;UJ|*b*y7AqF+j$;U#lC02}r3~Hd0kA?DKS_Bx> zKqnsy6~F}e8Pq^09}5-21o#-#Kqnsy6~P2}8Pq^09}5-31b7(KTJ#tggi2rn+ze`A z4h#%JrBDIT$;av}LUD|&I*y>_p7yZvy&MrcRg9dVBdWl|ghJI&ji7~Wpp%bXjVhn1alaGa(VFIEIYM_&kg<4<&A`EK#L4BE4n1C>Y8tCL>p*EO+5Q7@% z)F`2Ln1CRI+GY<12B8j^fB=IU=;ULePM82cgBs}MW1%jX03U-I=;ULeZkPZsgBs}M zW1$|H01ty2=;ULeUYGzZ?E9bs%p44App%b<`k?}#3LA9tvCssV02_lE=;ULei7)|H z1~t&h$3l}}0xS$_pp%b#L1jHEB{%A8W2rYmKh%%^wPCgb|2on%tP?OYRU=Uga6A)%l1D$*y#GME5AgBs}MW1;0R0X_yb(8ilM`AE6X0S{1D$*=D@*_q!?PG!gj!%;oVS; zpcp=A&A=eE2Py!HVbICPLVIBX;tXn_laGb=!34w@)IcX63+;yqh%%^wPCgbo02KgL zM4*$8g$}|5_!-ndCm#zPf(kJ5F{pt~J{CF*6X0b~1D$*j8bA;=_bO$N`ZIRtzWIY2i8e~4i=z9pGA2M=sxx-@a5mX~+4KL{AW1+`T0X8-UHPFe& zLQh}y#SD1hlgBs}MW1(*_0Z9fm(81n}I=yfeG3R1A_u6ydgo&!UX9ls_|bV0MwCuOswXf3=9e&;~*vpBTN!w;yeX1>60P@gOE5(qY#4{=;UJ| z38(<5Edx6FSV$5kAi$soI{8>g3M#=hO#3Ws)N&MiGkA=h~YeDDhgHApcvSJ5KQ8Dm&0BErfKEOZ@@5CkH}LR)PCgd$0V@;W0iAp-6wD5qG!WrQoW#H&l*|qq{FmSX zoqQ~m%MKbem*D}Od@NMT4jRl>-~pX{EL6u18iZEi0iAp-)XokXEY{!woqQ}bfgLoc ztHT32`B-Q^J81CLfCqH)vCv9(&>*G>59s7$p-t?d!9@%3(tDwU?4UtF8}JH!p$qJw z!88Z(3Vosb?4Us@7x1Edp?B<{!5t4C(8gl#v}Y zkdPq?I{8>ghLIiA_sGO~kubQNNt zlaGaB8QDSor5aJt$;Uz!jO?JUMT02lO!97jO?IBO^2wIJ_Cc$ zX-0NX1=u4BI{8@W3}kWq1X0k*$3kZzyeXoflaGbYL3lGnK_?#zormz|h=NW&7P`jB z4yrL0h=NW&7P=0RTOtZN`B>;aBRi-LSRo2J`B>;VBRi-$MCAt2DWHbv zO9*d^DCp#4p;r*z4pGp_$3m|mygj0zlaGboKzIj4K_?#zy@l|Oh=LB76Jljz2bJC@ zL_sGX3-L0sg9?~4qTpgcgozzgCR`8&oqQ~$$ixoH*H=VACm#zbF@dA+hA8OdVAKb2AzB?WWXfe1iB!eMOc>em@fllIj}Hv_7*fj(Wc12APk+o1)Xxq z&LS+s`p}nwL1B(BboNkK5mKCTvk0qja{IvyflkT74S`O{LJd)7Rr6zDPym?(9=#LR zfE%LC82~o~I?oC>1Uk(#bY(ASKOH-ZZ~*HOkRc$GAcnwK_6kRGz5^KoS~e~Wo$-Xb z1Ulmhbx8y(X8>sY-5-`tV&Soq%xN6Jz@P*=v{)FrG#73NbZIWskR(<=kRc$GATEI~ z%@xk#1noC~7y@0I3pWJ1G#6?}ChKI7As~|=hUCFrQpmX%?h@Fvqy&Q!IN3uFXMh?~ zzNuGK85op6=M4)(Peg#b1iF+KYDg`sY#;-J0>~tYAx&^YS~=a} zhCtWH!VQ70kA)i2!kPp!1Y{D#5cr7*!abZla6_QehHyimi(a9Ibh9o883Hm1V#oxz zOD1z(gc|~#HiR1joi>CTGKuvK$Pkc85JRTJ4VlF$76c0u=v*M&5a?VW)R391hCvJr z3LujphQQ|ng%@(}1{nfs_y|Mi0zpesKuf@dp>u(tDGksPaAD|NAZ!V^Fmx^uwgg-l zIu{69QUW^pSQxrIl}VUE3A86p7`i-_m5)IQ)It-6E>8tD(AZgo7qDIfITGYjh$C0S zeY%cQAeezc33T$YFmx^uv>X+*!B-f%JXMsDK?$^;O&GR3l>xLGTX-$2b}(o^KoBg4 zY=#@Ujk6SFDCp#4Vdz{SXkh|qtD!J-E|80fK?!v7u`p~dkdZ-2$eMvc7&aFOv1BXj z1dt^ln;rdmNK9}7c|834__flfXaJ_K!c!!ieS%_%ev z_pyEjSpu>NV#!gsB_}xjLl_v8z?MKK_(0R^pp%bhRfz&Tpp%b$^SlFB$RMp6Um#GO`fDKRpFH;k?1anlt%hZIez#I)8(8SFyH~5d@StG4l3zQct9r~3x~0TN^A>(%sd9+aIk(G0no|E!g1`NQrH2!=1n*r zEaL)R^Cp}C=6HbDya^|QIX*m~laGZn*g=JE0MBYi1_t4Lc2MCN!UH<_Sh$QGR0u}! zfKEOZE(hz0;Q^g|EL;KRB=CSvJ{GP7b5eLfCm#z}fjJpGpp%b*fB2H_eo zr+^1^^09C;JE&+Z;Q^g|EZoHoD&i`5KqnsyPhzAUUpC((P0zMdZM2ZVOR0&JE!V3<97d zd_~p4!NMQ_I{8>s1I%IJ0iAp-stM+B2xO)*h-!h^JUpP2k43e?904BC$;YBPV2%h6 z=;UKjT`)(22XykWs2-Rj!vi|`SX3X(QQ!fsE*CWbb5wXh4O3A=Fh_$2bn>yN5tyUH zW3SG@AZiTe81R5jJ{C0rADC#uzzjP1Sk#pHV;BPi3&7bG|2r8N#KM{LBN!O?-}N#u z2#Cc9Jc$5Z^qIrJAQmeD(#^o5GlhXcEDjt@ECMN+Wej4FOvk}P{c^Q;$ECFrUg%s=@tPDyUmoqSkLmT^`#qS>%GBAk4 zmTE#5`iMi9YBGas7jX&JcaaPX3Z9YBGFV(0R`83fb4o-pFen{c&A=cIU2h3$ZtejY z3SDmrX>N+Eu^LA)Ferdb0@ohm@NItLdYru=LtcXnfi9v18B)4{fk7O)h!W&8&y@@e z;?PBuOgs!qD?vVkE~4aso}42N?FWDc9@tsLby-({ECtyNvD6gqatltSXa)wQR*<2V zkliw4{{XrfH}~b6pLjH4B~zePcTa`C@F&Y(Djm_H75?BGy`2P30i*Z4>B(h zq8`*%GMvM}AP(&o)yOFj$H1WE268!cJtWA|6p*FR z^^hP-&x7Iwx*if_DJLknU>pA!8I-`5LOV8~v3qtF@dj4yI0gm+OYv`FX8}YDcEj4K?bFCP-=wk<^vsOl?jSd z=x#pHF>4<{o`CJ^Qu9#V@r_k%2{0;OJP9|%-JE&=hOeIU>>_Y_b_!TLaa3`#;E zpF{gVjJym=B_KYu55&XBpd0E@nxDYHpa60i#8KPfA+w8fCdg4dsf-Nb(DjfYN0osb0bLIXt$=p2ZUGqrG6`bH zKDZ$VIq!iCSkVz0j;C&$R6P(S73=B%QL8%ei z2Lg2w*Ue>M5Qp`FL>ZL$KxH$m436EsA7kP`UzgBy3S68-p5XXSz58bQTV>HC_BW>yu3Il@z z$QR%_CvgFU2ZR|pds7)0)Y3pE!B1?HVNf##*#$eXjZvCGtsEpE2D3|wLCp}9HN;^8 zk_>8pKz@d;pajk0mxBz2t)K)gVq^woaoF}bMllApkDziJcDx&-D1+J^P*#B*@5Us| zpmrRjMHXrclOTgyGbl>sU;_LMYU@BD3tMi<1f9GThb^~+OkRo$F|w{oWnfSMg#;uJ zln{Yn&B%Ej6bLn-D1j~fgH7Ry!xsL5iePmXaVtjFFCddZ#z9PiE&LO7nFqQQMqFI- zYX$=Yj}Rz0RMZ9n_33%P;oLt^ed=*5M*QrW!gES z(?B*UGqQtnzyeVTkbx?Y*{vm_w=5YL#8n}@6{3d?85qRXAiOoAbw&&f;_49I22nO^ zP?rzF+ajtC;%P#7J4EM$cv=wN9?}0Go;HMcK(thafk9jc!aE`=Ys0`Gt_$Iv5dCGs zz#y&%;hhl`QDvd)8G8l>2AN2Z zFK$5CecgJ%nuxa=-_Ont34h4+y&!VXqTrV37C^Hb=S(}l=)gCL35+tJ3l^j+KsHW>nkESf-6>E`63FPOP|gfckWGVfCV(Pp zI+XJUWWWq4=PJnPnNUsvCj*1TEGWkU6m+wpoR=Vb=0G`((hLj|bDpToc) zeFo(E6-?3~3F!kMD^@``oS?*%2U9N3z!C>i{te{TwM;S~3F#@I)UpA>0h>M-rksm` zr5B|90m$^tOwu3;@L=YCm1R+*6e#%l zm<2(%Vn~~V5{(3u^8u7-q@f&UP*T@mhJ^SDP^!~}a-#Sd7$mfy9C1(pX+t@>AcyKe zIN;Damdn7P&A_rdmw`cA0c5%XvkXW~+7}dshEUD}ki(6joNJ&$#2CuC1#+tilyezm zl_`{?0g^F;at?!BWDezg2XQQ*94k;{T0%Kqpb)l#a(00HXAR}72N`Vx<=BASW((y= zfP8KT<=g%GrKuTEPB}+%E)QSA|9d)3>*@*ECQSbph56r28ntWZqV&33}T5T3=$0x4hsVt zNTEa{3-g0~1_l<8VotFF1_rePaQc!iU|^6A0R>t!iyTNy8gxIPfJBHz#z%M z3W=Nz5)2HI%&ZWZULghsNfxM#nG^$qBs)}Qf-nPvBnMQ6Q<{N6k{c@1EyBPc$pe)U z0CD)CGDV^c43Yv+84V5w21#M4%rY?s21ya9j5j9(gQPfArc#`NK~e%LvxSR+K~fqj zlLB(63`7PxB_O5DXI;p^AU7SfM^3JbA2cO!gBLV0!6gBj(Fl?P9p5=Yl!1YjL1*(~ z1_s7l9?)5Ttjtq1e%tGYIJz@1=8J$XqteTt$H2gNjfo2s);lI~IDk%SWSq00kbyxz zaVY}>;|<7~pv|ES3>!lk7!1-m85lMcGB6lkT+YD2cpD-5srkTwQ4DUl37+!~hZhHh<2T~2TPMm=SWUi6h5(Wmw6HK6f8b}cXsC(&3+scXjl{wj7=*$Y7|cMkYK*5Kt~U!~U@!qq_<{Vk80H3$5umwZ5Y51N4(bN) zFa`$CFpwD74ItHEH%KtBfGpE%>tkSG+{YvcvMi^c!vS=M5#t=aVg?5NbWms!sV)*&V?&SC}z)1}P}3{7DS3=JS_P0E@X7^e1f zIIw^SkXIRxGVz$UH#0Cy4`X1M3Q_}!4Unl|r-?GKfb2J#yMTd#aU*i@^b|8NSb)|u zFm7aW0dW|EEJ0p7Q^~*pW~?b^V6Xy-@Rl+#STja36)}J=q52TPz+jXFnuw}mV&j;= z;Q*T1WSsM3=Co6&~(XB z%D`a5z`?+ zx4kuE3@h^%)!+6EmPr#h9KJL&FfdpePvCG^QN+MtnF`Ze4AuJrhu$)nUOw;?AUKhM zyakR)X$F=bB@7Hkjol0kjEPKaF_SnPVn9h{&XrPFOeQkfLt;`NobHpEL_tXrbP*$0 z1OtOUIP6j&VW$|uz#t!i6n2(LlOXQ3EuX~U07?Z-;CPQ_G-R->n#AG2(89oA*)WO2 z!3vZ@CPEci&YHyGkW<0HU^y42W&zY7%cYYz92~0{7%W#!;&1>ZC(CVF01r0ehvbjDf)z9Ph?VdY~f0B?43`z>=0RlRr3V1w&GiDa0$A zA{ZDpfcyteZ)TA6c07WC;V4LOQV=5pqd7$7y$A+|TOdITP-$TS5oC*GVE6+P1c#Xw zM9?pifx#^js4y6Hf{IcGd?qG(v);WrS!4@P4_B#tiWl;+bc;M6DvhKW(oEDBCu zpezbbnji)!X}Xs~lja`OqzRG-Cru-+3I+zo?~H6A6FD4&!2u779Y}`z$q1gt-x|fh zuo+}e)I>-C*v3zUB#W6~>E%Op>F_6)5jnq5NXj23@OnJ3=DRvs~8v< zw=(jwOyY0=UE<0(XL}_yDvnn&Fxc`=f`s5=h{G5y7_6cuLBiUaF^ZK(VRIvB*a6fm z0I3HTUt$a_AVZ9ff-1trjBIBna5#XLDKO3fl@P|Vpk~2hMrBa?=!j-uXozNDum{%) ziy6U*=0r3D!y#CL0M)#ii>4PM}s%l91A*CN{ za1wN8uuXxgnTM&y60D|$!FFCBhl5%R1H(p$8b)IVTZVp!(N`ft$SD_M^kD{D0jQdv zm}($KmoV5GLe+@ZU^vl;!PWsPYmF&u402o<1B0zUR82gl8dH!OQ2iX#&*8vW%fMin z)DQ6qgPs&9yp0(JLCa}C#U=qy7zZkn<5^1?IQ~l^G?Zg%03|p^bGU|L zR1GUIHCTXbKximIXaLm>r!h5v5*wo>#1SAR@3AWZRYq{1Db!>53{*FODjTTJ%24ff z#?%0=lk5@prejya#DS!y3%eRde~2-lygnDAgwYVvL$Ghba49GULV^@@69Kp>3yNoO zT_DWB0!mb_S3tS!Ik*W3i+;vAf9j#B8dP;KxIO^46wuTtG(goDG{7nv5DRR$5CaQH z+JO<&F1x_i&;x6S^foXsIJSVY+XY!rI*y5FV2FrkU~u%+W?*2vpbHXfjAvk|jfWaO zw}FAd>P-(kzcO(cF+jRkAQ`Y_f($GmV_oloYPHj7t~>^FCCK9p4*j6!%^IYPmDR++ z;MfS#xkeR~9hSv2Ff4*u4k}_m_j7;)#>~0Hr-<(9nVx=%i>SWfPD9gQx6b1_ma1h%9J;0wOC9 zl~q~Fz`!Ia0`em>s9z0{l>~R%7(6>v85o$olt2bCgSygQpdlA#FDsA$gLk_b0|N+4 z%W-)>5o2HgVX0^?Z+BG&1`y_c&gwn;4+8@Tb9u7)ge_!X0AaCHjBGxY{R|8s%sq*b z&3n-@1_lt8QDE~a(q&)(VeSq_Ht$bM7#KiUMv=|?<#GlF5SEeW^mbg#zyQLszuCME zRx>bwuxu$C!vk;7GTw$;oaZLDk{gV#%gB9)hgiG{t35i~&L&j=2p0GBYr6 zh)FszGBEI8Wnf^C;Lztd2(kur89j%gFo?|{5TDJ!VFb34h37RZ0|SQo6}dF!1xUF)*lb zm~%uiF);AxGBGf4Sb}e%XW;PynPdg#u<$$wg^e|s!@=_yq|64);o*7B!oa{`3+4#$ z%mKN}4$KkZxeL-`59UblIDqsxfH^We{2)D!V2%QVAgILWVC3-Pm=AJ;7CQq2hc_39 z&A_9>#=yYg!wKRv2o-{4{J20qU|-0J$-O6LeKQ2ahr+9wHU^m>C#482DH~#&NPU zGcbTKI0?uz@UieRGcXAAv4Fyhe;vqq9HksK%nS@XVd;zv9A$zaHUrN`DFz0Pa)>1i zd@P`Z#2>}Xz@We}lVdA01A{<(0RzV@A+TbB_#y_5*^rnOh%aa0m;+{W@Pzv_GH}f0 zv|wOh;NjT;a@;&Hhfg3rDUE?+zMu%mB+%#;1IGfe9toa%O^gg2i-aUu85m?3n4Opz z7)0vMFfe@JC}HFP35wd@VPN2>U<4~?5M}0IVBn}_w{A-WM1 z!nKTYARdpX7bpVj896}VCLsD8lsFn0IXyvXOVl6awq}T#5~BSeeXS6ljOgw;j0_xY zjAF+*7#I}9;&TfaI64@G&T=p?sE9rU>FZ+Ty2ru5pdp$L;`KoE>4-iCC8d4{&pd0WXb|axI6*fWx~L*kWrkS zlY!xdD5xUiSOl@*4Fey`E@lP>{*{aj3>h3-Ig;3*k-H5ka<_v+n*|)XJHTvcYL!EUw@h%YT- z;J5&`)Pd&<$bid&pV=4~TzEP`oGXIN>??N26*t8-e+LoxCPb|z+-N} z$iQ)%Yb^rlOYzz$II~f=lKt4xO4ibVH zxfP@aq!kn(2sI3REH~L0AjLn(r{KKL1mO#_L(3Qj2DVF}L?X{9CC|#hAaZjGBLfeI zG9yPMI|G9#xWrLq6a;Y?L`6WUR}GSuSwuxa>0BL>wm2C0SU@R`j|F6~NCYFO^tWf^ zSOYTT5-4~a7==I_2GQ9dZH^Ego2YFFBLjyMqY$V<v1?xO!e$s?K(Qmu$qgFF!fbK4qFeu;(1afnU?SsBMD0@B9Az{dir zh(wmLGB5;iBr$Sq;$UD9Y5J#wpf`&yovLPxpM8Rcq4uoeQ>JPFZ7s9g;T?ukv9)#y0dK4s= z58-(*aDwXDLmbfPVrP(i%nqu3K_YxCpwN*56+7TqXW(PG%mI>21uFs7k5Zr#1C~x0 zIYE*iz)Cnd7#O5~f&8+RQ3+I(OM`~%IhH{=D?l>Kp`1>TC%KrxcF349F)(nZ^MR5y zHw%{}XE`SWgDhzOEtixSs7=GdC&VBN+WgHW4dFx1*5#65oy5t&Am_`;z#tE5e{#tR zfs`|Fvv4VJ?tvSk2+;&G1avDEmlA{zHAJ5EI>-=^Nf1L+;D)GkGIGIOq5;taGUT!b z0|S>Pgby`Dja7z=fk6&r62uT~xFLF+Zg4~NA(}vjfJQ~Q3?O`{A-b%IAVWYVK@2g1 z8)C}Y4L8ILq6uUO*gNJBKGYBs)@2|=Kqf&9v4k69!wFg<0tr}Kh$fIBVDH#L_)tTv zSzm(;0ht6b!~t%IGp8swEKFP=nm~qt?hNB{h47(7_qvY`EsF2Cf_^UyMQaxETWjS1yz< z$RG>4GmI+_%I9H_1>G6Ol@H~!GsuGO4C5+*@EO?{WI-#lxe6hCQ0tVPg)5U)f|r3o z4&*Y3ql)2Fa*^_=YdFhd(4npk8QWI=a^aWz8tjM5CUpgY63nxK3s23gRZVO-5nz9fU}4Nxv_ zf$*8c8Dwv`GB9wpLimhg46>j*!?@a@d{G8j(4Api?NGi5gDmLIFs=>=pGk;8Rt==T z6T)W{WRL~j8OGHGW1?98Dv3shH>>k_)NSEvYrm46>j*!?+ee`8*7= zpgY637DD;l46>j*!?+ef_)MG(vY17zvYj101%JHxnELHQ6* z&tVl8U|^5~`5fZuHE>U_=VTOwrPK`&OGmL8!lrO>{3%WCm zYcrHD%peQ8^oVN4GmL8+gwMp!APc(mh-*89&&bCh3%WCm zYX_9i%b)-n7UJ3o;d8JuD1a_8;@Sn_GqNx!6s4pxaP5ZjnHgk3ySlmdK>17z3ZOf~ zxb{N$kbNv%>sVz385rb1Apr@5{qR6I#JNof76^wSni%C7WI=a^aUFs1nPeGcL3f66 z9fk6x8Dv3shH)K(@EN5TWI=a^aUF;9B^hKvcZPADfbu06WI=a^ah-(n#TjHlcZPAD zg7BF{8Dv3shH;&S@EJuIWaaG`7`Vj*!?-R%`8*7=pgY63E<^ZCTnw_HJHxoH zK=_QD46>j*!?>j*!?>j*!?v;VL3f66J%RF>8Dv3shH*WG@);Rq7lH!y8H5kn z-^X>IHB6X+K@Q{+h$CLW9r2p8Km_K9HxNxcA`G&iJHxo%Limir46@+t^A5@vf@Yuh zP`)5E`+R`%1)$mIBb3h%%|4$Xd{99Q&OV%uTVZ0 zgDmKb6|QekJ|{GLeTVRwVO8c22%iy_-F`y(uDtN}zK9xg?<)K^tH%7&9<%NkIibn}}3cxWpM*uYybh83!>*25J)I&M+=< zNqKSTonc&Z?4W)L0Z!?^s}LG5A4onc&I?4Win2|K94R{*{kUPV;{SUx+~#bY~d18k8@{APc%P zj9VSb7hsSD-5JIW?RGNqGsuGO4C97&J3%#0q$2|Zw-!`AFM}-T&MG6Otq0|EGRT7N4C99OP(f`e(4Ar2&>kwNK?%AujN1^Z zo{d2kbY~d15tPr$APc%PjN2H>XJL>9-5JJh0_8I^$b#++<2HrznHXe2cZP98JF}o( z0O-yzZfIu~QqFNpuog>#?rRr^cJR63omp;M&b6RK0J<}b8`^ml5MYo6-5JJh54D7! zK^Amp7`Fq254kgp+lKW7$WV~U;KGyJ2~y;7vv9j|GD$&e9Bwy=CQyH+?LGqow>yLn zaw+J}Fm4YhAKVJ$c43v3VqlO1nG7-13vQ?%r#r|{(4Ar2{t!(dmxAsL;|_rGA%^&} zCV>nAnFKK;2yRFyr;IerWnmCaB0LPTpgY63!y$Y|ZU$MG6OoeAM{aWKe&?hND3g76_nnsBGEt^rvJvKeA& z4&2gw&SxM?LBmVj(2gy?AcHKMDFXvHv}4Q3!5|B|GmN_k#n3!fMi~YMIgrT^LrdU> zmUDW`Ffho1?hNCGc62$#8Dv3shH*nXy6gfBvYiC7?UQxS<_gkR_ly!?>XxU63W9JHxo49bJ$mECvh=+|Z6L z)RKDE(;!PgHbE?DgIm(cDJsjrAPc%Pj2qf}<&a>I1>G6O4eh;h2r$Tk?hNCG_Fh4j zfbI%d23gRZVcatz!3#>g^$rXS+_Rv3 zCI(s1onhRwp?pRLSp>j5TpDV9kWfuYtIfTa-Z-bY~d%S}323LG~KRQR^UlP`(G<8OFUH!UxSt zv$JroVm%MC1Y{G$l8tanws2O;Gcd@4GdrxGDG$x;(0(SP9D^+A&M{s2!ypT~GmIPB&jeM#HD(M9+^~M86oV}2x-D*4KU0!H7IfVfH>{s2!5|B|GmIPB z&tw#5kOf`0#k~*W3D5=>b{6it{+c$bvlq>u16|0qtip!aM=%XTm%I>u16|0qti(J#mONQh|X% z4&)PvC(gq?afy>z5#|YK=MnA+SmzNI6R^%B%oDKABg_-f&Lb!$K-X~xPuZC7g^;L85rb1K7n}R9^4ZTIZwbn@d%;`?g?n;5grrJ&Le2N z6r7x(okvEPCt#gNX$D!aC!RyigL&cwln?X7ODG@aiC0iQEGAw<_|TYm!1@^E36M`9 zo_GuQ#1~FkC0GRv?fik72B15`xM7_?Mh02XonhS2&L6Y_{LBivIzkR)GQ`lIa6|ua z7Qqeu3vmg^P|%%W-2WhaPr+?$2;iGFm64l04Pd8cZPB6Lj^#?Mk*}avW%=;stgQrpwNT_q#+_8 zO&B@Xslo!%6sl2_n?VV5XBf8`Q~-3v@KhzINu9&lph1YK1M9zWrBhH3<59?+d(+%8Z7CN>5o(4Ar2u22EcIbEPT!?@jG z0xS$lpgY63-C+XE3`(Fo!?-|U;>al;K;~Ytp;jI zsWLD?-0OpIuRkNFqdF|W1E3n&B^i`JcZP8XLIoHl7?ePFhH(c$1(-z{lt6ceaRqHfjb)}Ai|&ox-*PB2PPoQpai-zj5`-5AjF^qx-*PB4<;bUp!5LLj?ae)2rwvt z?hNBDfC=z3D1q(_<1T~=@G&TX?hNBDf(h_4D1q(_<1U5?@GvNW?hNBDfeCOkD1q(_ z<1U2?fbI-aVd0KrWc{PTz#s>TB1r6%BVwnDk@K+@ECE(SH8RUGD1q(_(-5JK+2on%zPy*c< z#@z%H5MxjR-5JK+3=9!UXsklt6cead*K4_!yKxcZP9y!vuI4l=kQ_FmU(4 z1b7&fKzD|5_re5VVc!Q8VCG;@0^J$L-47K2RoI|A!?-8F1lSmqKzD|5PlO4uGAM!W z4C9^z6JTLbit=M%;GPTn2y|x{_dJ+@ID-=C&M@xz zFaa?JCD5H=+zVg=q6|u)JHxma!URMZlt6ceaW8@i2s0>w?hNBz3=TW=ITgN5t?hM$TKhuo&JA)d-4V z(4Ar2d!PcK7zW)L#=RFNAkLr!x-*P>A51`uK?!tc825gdfGC3!=*}?i15g2GAqFMT zonhPuVFLUNN}xN#xDP=E82K2KKzD|5ABG9=GAMzXb=*gw0?b?tN}xN#xR1gF*cp^S zcZP8vg9)%OD1q(_<30`(U}R8E&12v`0p&y63OgBDzw0tE$bmuz5-6t-fpU?NQ$-IJ zD3_obA9 z3V>Q12+>?0JL31g@yYaBWscYD1qp~nt3ctke;F<3pYCx=K@ergYFFD=74Gx z;$u((-5JKs2^9dHsS3I?jGGH806KP0g@v1qiFGf?Xps4kSmZ$%&CkU73S>0svLJ2& zs78>{pc^T;1)%~^NAfYTvKulm$bpQ5m?VraNsNhemLV)Zh{H4rF(?ItLP!ECz$nO| z1iCYfTM{N9z@P-WGmKjbD!|3Ypai-zj9VHi0BT)>?hNCWfeJ7)fpTji1Gg+xfRT|w z8FXhDw;W6Wl72;*Shs`R3vx8Xy$T5TYBF&?0l616SIDge)d-s_1)cszyrE7jN6JGG(`ouGmP6BJUIusGmP7r9W-wNxigI0 zn;kUY0J$@a+Xt)+a%UKKFgs|{0CHy-cQQL@@LvLaXBc-bJ7~}xa%UKKDLZH|8**nD zcO5%u5E^o47++!@9#!^plwnSlXvXBf8;BRi=74!JXo+kufC)Cq;$8OH6)$PVh!LGBFWj%8#A z^_L)bhH+OgvV*!7kUPV;XEL&bnzE2P!?<@avV$5m9pF2|xKA^(gDODConhQ(7{OkE z+!@Aw7Q%zv8OD7M!h_ry#(f^bgWMU$eT|VFRAWHy4CB5Ik%QbB#(kfW9aIOb0N)wL z{hW~Z{fxigGg z8N#~*zB7zl1;T^e8OE&&;X&>U<5q+4Aa{mwt3!B@JHxp3nAkx%@dJYzD35{f4CB^k zVg_X>Y0#Zv+y+eIL7*8L79Ls7X{HR2<-k19*;~*A1?ci59_Z{XUjYknuoN}}9sBqqf8v>n@g&P8$l7$+g%=!&v2*@OeAsTQ)v^f>bU@n2qv%(F5 z&a*-d(PFhWV_=X2nFKLJA8v>dXQ~+kg97NzFdpdSDclg~tt5vKMX$bY(Bp5GPhHa|Q-E zkVz0j;46E1yf{tFVPOJY*$X!Wy0RB)h$pK*$Pkc85JTWAdwBvmD?x^U?hNCBuIz=) znDPWeYE{rSc6Jt?0M;oWLqH}$41urg<%#6n2Qmb-Y@7!=;|X^ObjB0vk_gtDAVWYV zK@5q72W&DYvjqc#Ea=WK9_Z3sxFOJ`xllurSmi7j800`EK@5Q}&E?7B^ne=zU78Cw z1iCaAYDgw)GRP2+Nf1Nw;4UfT?1dWwo0gPdkOe3EVn~=k4Jlw<0Wt(+62y>FxFL0% zmq3Pq?hNCphiHPk1iF+KYDg{XTaY0jlOTpP!3}BU6t`qxkOdn8T^|cK1iC&JYDf#K zktG9z9LOYyA)RnTdN^a?hCrtc;f6pLy+RG?W-SL90x}6=$OO0{lQ|c{4S`M@!VQ5= z8$u14#JUG$2*@OeA=BZ8%;E&CY=w9SIu{5x1UeT8HDo3$qZI>#9LOYyA@I3Co`sy< zR?yi29_U;kXh{la2{;dQE)X=O0a^mi1Dy+mEdl3&&IQ7jfb&4-0zpekKxb_6K$oX7 z2{Xuo?hNCBE>C6UV~_>4(0HKBQ$YTp+}ft*i;w3=DE0n;@3#fm^bla}~%E z&~;us2O#MdG}Q{aGmPgTgb$i~1KkXj3cZTu6Cip}cWVP)X7?}OTS*>h9<)t-r84J&Oh^5dw!+69c-R&44cZTsufGbzXonbtZU=HNYFdiu|2Xbc^ zk2IJAxigGMi5*lWLhcOX(PRfzZIC;|cnsJSfZQ3zP4C85L z2NjJa;5);3y4XQQ9OTY0o{8+Bq6%_n7|#rLP>}<wc4rvR z7IsipgWeg&vzHx|N1%6x@f>51v4h_k#&dx^2gGA#Py?kAa4`as2Cs`#X8@;rkODCO zKLa?4)_|5SgZ5pkGq8g04CA@T3`#%XJHvP`34^3LL1&;WL8xP%Vh6o5j8{e+Bo4ka zj8_iK=C+8OEmr z=0NTY47h4s1RI zQ=rbkya}WLbY~c!yAViRgkv%T0}H<=lYoZ<1A`K10TRC#q`}Gpx;Y}doq>Vh8zvyY zprqc#z`*YV6X0M_x;B}Cf!`M@02;YH*v-Je?*|iLV^9j7$iTqw4-)|GtrrF931DKr zY|p?T(!U1ef?OtnQy>>yTEf7CPy(&i<}Zc`h%+#-S%8$3FfoTZFff3R0T-AioyEWa*+c%> z0UDyvW55Nr@;wHr104e{unocn9Rn_~1HuL!11_)=!Ui1!F0dbL7Wf!&fdgPRC&+Mb zN4UAn){YDeGN5C?1rADs#KFga3mk&5LC1g#90qFy9|JCM1kC1K#m2w@TKovkBkT;! z4Io26$AAkQlLm={j{z6B3|0(223+8pj4|lQ?npic27wz8Hs}~|fjcrF2Z4_P7kCe0 zgN^|g_yAD@ItEH6%P!8xAaDkan4(J$g zfmu)v=ooN;*-#GX7;u3(P!8xAaDll{4(J$gfq764yC4IDz0e2_|bPTwFCo`m!0Ijqa@Pcwc$AAm? zK$ZO#Wnd8Sg>tw-xpx|rBQ3+gATS-u0UZM_Fayc~9Rn^f6UqS{11>NN$^jh%E-)L) z0UZM_Fc-=J9Rn^f56S@@11>Nh%Gm_U*9)K=&@tcw3!xm)G2jA=pd8RK-~x-GUH}~f zF0cg30UZM_unejUbPTw_awrFM47k7wCq_zy+CEAu^z2zy(>LGN5C?1=*o8pku%VIiND2 zW55Nup)#O7H-bD+8PGA{g8Wb!&@teG0#F&yG2nv2P?=?73=D!IP#MrM;DX{%8PGA{ zf)Y>}&@teG(oh-DG2ntS5E+dnptDqaKpS_#hl4TB`Ru{Kpb6?`GWHmOS{kPk7#L0@ zFfeG9CFU?N_JP}5FB2FT?j|rWXoJqVX7&WN2f(LEctT4&F$QLkF*>_JhNp;ui~*Yt zK8_GHIjPIg%*eo)CIyo5N@QR#Nn~Kqy#!L74z}QYA_K$eL?jDz^+1wEV9Ae(3=D5U z8XkbeTESw1Nem49Nem1O8n-4gFfdB8g;aAmxG;lG=Un2=z@V3$md?N^DFbS}X(cf* zs3bwn-r~)`puf|bfkB{#!=V*Sf)6jg7xWe%6mce2Zd`^mQgN zFtmg8StIEyhS}#L1!}MKGVqmxm(wBoxUvUkG!%7Aa3D#%KY3>aT zmybyd4DUhusGFv5=Hf*#g|dg2$_ zVPBAQzF7Pj7#P6kd@=b;f==#Xf}HKedZ&?rfhki`6(kKh;EUNn1a!JCOBG1qULyko zvyDg|hz&aIi-nsPY!2wKFBTrb>1c<2vFh-x2Pp*|_QhHRX0w3~`(jIF6bISK&ceEk z`7h|i9MEB3tSflVf!LtKzF1cZgTxs)K}Wgsf=b5_0o$O7#NTa`vRTl!okDUdawBV*VNg+XlaVPEV#}< z&|zQf-drFy1Ng8nb{|d<2XfdKyB`sn?}6xp9QMWD58*)$`(mE}u@7?C7yBee;kWR^zSt)-3Veni_QgI0 zq7ri07yEQZZWd11VPEXC8HGU!!2^8Q7yBGWAy7O+4*O!C&nTb?KkSQr0VG@?hkdax zWE2M-YzR5*i+vHq2GC(&hvA2Pv2W$bh936Cz6~jIw}V5Q1su6Mz-(yb?gYmt*bW{IDCt3Iph100xi;BtYp@ z0^~0VQ1X%hr8ovY7Es87)vRS>U_ep>=0erPGcqu+fCTth`auVI9b#Z$0QnqAIY(tscK#jecAkpw!Y z3tZx;G75q?ki)*%)gWmZa@ZHUIwWm@4*LS7I6fAT!H~ng*zFlPwt@@+9rnfUz$gUb zKo0w2cZBdDhkda-F$#fBt%e--#qP?eq6#{FlYtW?cocNl7pTyJ9rnc@!N|b_I-d)4 z*cW>=BcxgZANIu_19KbburKylh#Uv_urKyFMiG!U&|zPoib!M`=&&#LBu0+iAj3e1 zeX*xPG6UqWFZMJ>aP&eB`(jUr@F0hMv1dSdki)*%Ga-gR4*O!yf;a+l*cW>?L?z^~ zFZLV=4|3QSdoF|rIqZu)55j{S_QjqL;dwA{g6h`Opu@gEp#VSZ3naqF0ty`|P_YA! zbp}3`JK&SN^1z3Ef$B#oP>BIcCtTpezJ7w02*D2fVqeOr1S-nGhkdaxgK|KJeX%cx zazKZDv2!tl?EoM4#gWbjO46L0*%%noIH9$QIs;1>Cj*0wsx$)wXP*>E9DEwsLij;m zQevP65b|kYU_NBm9G3(uXiL5vXp_D?sQ1DpD+H2;oCfv`Ziphn5b$|ZN)SHO5P4S6 zR(?5IfM^2#Do8wy=-{m-pwqvyA%-BG1_m~SRSbR_7=({F4Gh9ZoCXHrBTfSY^N~&i z1M@+H3gFYgoInS6fm{Z0R59F9<(xGjM}b4P0^%spZZ{FoG*u;p58CYpJq-+OC}{00 zI}2AC>vWKzAd?}6*1!#|=QM;LEY$!p1nD#|h#`p6z#x3YXiWM>-7*!bhA22H_)40|WCxhtNPz0|WDsP6LDR5vPGc z_=wZMzsU`p`O6Nf$4e2y6h#|c2)4(8n#A#p-7*%m?ikZvv&v6%h9^B2EK?$RkbzgYY4qp2O-0It>iu zbBL$cz&*X5Qyb|tFt8@j@(bu`U|>Edql1q#+61)}aT*vz9&s8NgpW8448lj81_tJX z4ypnlXS5w^9^y1GuskE;G%zq9=`=7fAL%qO2p@487=({F4Ghc&tw(2P;abP)209H4 z6cUg?*bfhcL!1wgP6GpL0__Eco(2ZyBb^2Y;Ui811M`ti1B37pr-4EEh||Cze8g#B zU_R1mU|>GdX-7*%m?k)hn@xo;e$>>08K_+gGM6aG%&C{(rI8|KGJDm5I*8GFbE%U8W@-ljkJTT zzd@&gfnp94X?Nj~_JA`L=`=8~CeU#W(9^)ce5BLBAbiAWU=TjyG%yGsaT*wy4=w2L zvo?TE0|U7P;)oY;N4(~og>)JiSQFA|U|>GdXa06mpP2`v(a$$Z24YM4&73L8pO%wZYHuVrGQc0~$kxoCfwE zWDv+S@CtV>Rz|o<9E_Yg@H4zPp&H>PaX|&3Cb2WJdVmr`7|(y0CoLhKSn*d@Wp`3PheXoWxMG%&D6*b0Bp zX<%Rh$O?bZX<+|BCV`BDm?Q%=34R)wCupuMzqEvbOO74XFM*#12I^nHPXhz>6X2(T zf!h1<)4)LOb^+LFV4(Il{4_97I~sl(7^poAKMf4ju7#fl25O(ePXqHqJ`D`i;46Tg z1_tsL{4_97s|$V_7^t;W!}A7Io~&gD)xz-8z~Yck0|S-P@YBFRxgUNSSRTr0V4&26 zI1LPxLJ+5cfnxax{4_97Je*)q1BEcSg$%L|Jc1y|0InE8=7RZ*4B(tz2RaQ5)MZ6F z4Ga|g@YBFR3b;Y1fi-~+f`Xm~2J$!ysJ#t64Gh9ZoCXHwGfFeaLQeyO@DZnhLHLsJ z)4(8n#A#pOgfGe<3q1`C!WV&`1_t3HP6LDR5vPGc_=wZMAbiAW zU=TjyG%yICk3klC8W@C+I1LQKN1O%*;Ui81gYXfjfkF6))4(8n4hC81X2F1+-!udKws*4?02(dKws*4?hj;6Ub1I$>741+X+(SflmX| z0Ug{0>aTFSK|&7HUxA(m1~vrLUnu|`5#a%mhm^?NF07#4J8~eCA%=Rv4fW$J1Q`lF z4Ge4u$feNJz#x2xcYRrVK&OF$OoA8^1UDp<(+z%xRT#u((4t#EYX%1Ha0nk%H$hJW z0~^YSI1LQK=VXwDo(2Ztb1=w4PXmMS5vPHH`OJvZz`%S^`&bgRgD?(iAL2AHh&7?=;T1bP}6m=Cq2p7krp5|B+0OWNR;baL8* z4(fuQ1_ssyS{(lYbj(IKB)E`H0|U#0EP0pfl9i#=a31Ue<+>%M0ETA*3 zz;Q4cVkoG22|W!AYzU|~2inBNJryDk>e50_1B1vTP6LDR5vPGc_=wZMAbe&9S?FnC z5I*8GFbE%U8W@BRNxc(UF|chLmOx9cI6g66Nmr-A(hSpu>NV#!9hC0jTb%frr~+6vJG>au|k(%J^)!_J_B z^)q2-Q0;)q!;Wv-3FX5M(%J>(!;Wv-4dug*Z`uRp!;Wv-3+2O(Z`udpLyvFT%(@SB z8W_kY5KkO{d*U!>2GVI@kdS~KX?7H12>cAHV^BWK6UU)^m?us^`7lqMgz{mYI0fay zJaHPzhk4=*ln?X7SqLBMi9@W-pwqxWK7n}RJlqqPICbF%XWPc29*Uql0TiG+9=Pwp zJ@Jqel+huF%RPc34GpFm>bE!-1dINjj~cYTFu0yPbwr-4C|7veN92p>{}d}d7o z845BPV(3q}p?^5%zzzM2Fcf+k7{m}p23hE7U=TjU(BG^(K!$=$26tRQr-6aw86c;D zX~GZ5Vug0MKnEJZP6GoeWC1Nvhn)rn5kNW(3?hJZ8W==?g+U2+8W>mr(v1S02IdAj zXba>dh-(m?KhSAlEpXSsI)AcAr-6Y@0v&V!I}Hph02-rEVF8^6wh&}A$b5*=BG4Y1 zA`7=TBj-7|(GpOPBA*5ZHVJVW*lUnUAmbn=Nh3^>W8@TvA7UjBH3|7NFtAC;r-6Y5 zkWT}H2q2vX1`$9y4GbcHbQ%~$0O>R^hyc=QU|<2{)4;$2i~ z0f~GX7}zA_)4(7CNT-281dvVxg9sp<1_l;DJ`D^afOHxdL;&eDFt7lqtqwU2>?_Cv zAYVW{V2|*C6C-Db8g%>wbQ%~~BPjF0P6GoAAfE;X766@B06Pr~B7k%n7(@W+G%$z& z(rI820i@HwAOhg=4sJ(A)}^4+z(9_MxYq~aUVlc;Y~<6xz#2ivw7^aS0}FtTX@Q*v z1{Od*4GbcHbQ%~~0Qod9umJLDU=RVM)4;$2$ftop1dvVxg9sp<1_lv;c+roMwF7h- z7|5RxFUBCe7|+PbsflzN7(^q|XgWfOHxdM1UW0 z8W= zoCXF_!OoxrI}HpXz=k*t3?jhF06z^3B7k%n7(@W+G%$z&(rI820i@HwAOesaTFJ<& z1v(83ln@|kUI8L;=0bf0DuiICfq_*pBAo^X5kNW(3?hJZ z8W=ggfP5MlL;&eDFt7mfXGI~iFOL8oDXLIx5jrx1a1k&)969w?Wffr5M*7_vzh7+JGHCV`BDm~<6k(oIIr zm2i`8K}`ZRl3}NTK}=#|P=cKX1{Q#}$ZjyQ9s?N-G9O~}J%rH@897<>Vde89sL{x$ zfq_jzJ`D^a07(=N7+Dqd85rb1=0l8rhA{d)BWFJ794XjoU|@~Nr-4BPkWK@G2*@H% z1A_=4odyOGKspT!B7k%n7(@W+G%$#O1mZL>hyc=QU=RVM)4(7CNT-281dvVxg9sp< z1_lv8It>gWfOHxdL;&eDFo*!sX@+a20P<;IU;)HwV9!BDgUp8*&4VzSpNUfhbS4(;G%&D6kkO#C zCb$KeApKIPBl(zE4MC@CfsBKgB#bagjEVCI$RtpApIaQJ5$QBAu+hk;fk6b2P6GoA zAfE;X767%bVW)wC1&~hz0}CLZ1_lv;q+d}c)`uYXf*cKTuL8oonoOL0Mhpx}pt(ZO zX<%TDu(?9eX<%RhXeU>LiB%hP8W_kph)KFoli;U;l_Q-72AZORp9TgthbIwqoU1cC zXx;*T8W?E40e%`7NE!SzFwmp{{4_Ao;6MB{Fwmem{4_AoU^e_TFwh`0{4_AoU@`nO zFwmeb{4_Ao;4AzzFwh_-{4_Ao;3E7qFwh_%{4_AoU>f{1FwmeB{4_97Y{O3j19<^{ z8W@NJKMf4Tfu9Bj;=oS>0}ZSoP6Gpth#*b_0}W&#P6GoCBp^-$1NHq8r-6a`?}*dD zK%G#;X<(op9pW@FP=5(=8W^Z+fjA8e)RaY>1_o->AWj1VRe*@oz(8I=oCXHsAx;AW z@erqhfq011z(6$y;xsUj9O5)EP#u6c4GdIlBTfSYsYILx2I3)30|W68r-6ZZh||D8 zJj7{WARgj0Fi`1@I1LO`z#vWo1CI{B4GhFXoCXHUi60o$KzR&)8W<=;!A}FLft?0+0Dh2{9HeXlO;CW3MUsc`p(nq{ zu!7D-kprES0v>qdQG^ty;M2fZ;U{0ILNvh*QG@WIhA6Xw&Qp;CnFKLJ18#^mrx)B1 z9f&5lA-WJg)DSIJ&^at}Ad?`5=)(;$;_OE{4Ga_{pz|gmr#zXU7-Gl@I+#TcWD>*> zGq@o(oLAs3fv)U@y9Bzj7wQsgR?vYiav+l+hQL?$@;Gx!!jI2_uIz;y;)>!DCsxow zFmfQ1AcnwK_VRdf#=#ANuIz;y0$te)b%`e{=l~fxkVz0j;46E10y!6h41t~o1`ZS0 zj42OvWiR|RFwkK$av+l+hQL?$@FxFL0%e?W$S5Av#qXo4F8 zT}lfzq?Q$Q9*!KyB#0qRa6?)-9W4>3fuV*;JH$|^AuX(+b9CfDCP578gd5Vs*#cykVz0jCcq7u%y}Aa$P|bsxFOJKL#QE>SV8CZ$bn3P7&0Ah z$Sh6)&>30aFqw^J$Q%eCYRF7hZP1xmAd?`5z~=&a7IJO{83L*bc@{x5ftI8|PXhyo z5o`%K&k~3{Yza6IbS@CK1e|9XL>{y<6tqp7XE}tAbQ&1gJfzdWzo~bUXKF!D0|RRUEk}i(1_tIModyQxgL*;iEIeyjRY7NHflP)Nx*2Zh zHqLyIq0rO7z?wh{6QHMof%!0q{4_8S2YwnDhyy}gNE*B@PMraq?m-H`{QnH#B)SZ=NFB6J4sjY7DE+`r0|QBO zwlOd;oI|K%*@tu*7)Ts;8W@NTJ`HRY(rI9zV1b_o2I9a^0|Rkjr-6ak@YBFR9QbKq zAP)RAFc1fR8W@NJKMf4Tfu9Bj;;6t*0|Rm3r-6Yu@YBFR9QbKqpbd;@h7RpZLQz-KQ566XwKU|@IyQ=rbkatEXUdKwr=T%DZ- zq?O;6PsM?OLBo3z=->&aeg*~&jh0>p1}P1eUIqpU2G&W-7#R4SnE%={Fu=5=@dbjk zwDo|re4oI;z^D<{&cMLL!1@Su*jE;_fdfKu6<-}lv41y6u|XF|@ivHJ?zIdI{B_K+ zp!@4s1f+OH9HF}>1f-=vVZZ_|xm6e#1Y{t5P;~)1GhaX!$`@gf1s$0$AP40OGssQ~ zVq_4IhwufM8DwRw85jfY|><45Ksdbu`E2GliCE-!5j`A&>A`c zNL!kRCmZAuO|Xmr&p(hJEigxfXQes=g8*bRodnNU5Jv|rBg3N)a;z?xqrkw;B4EIo z?gR@XL$IU3+Xg{b4+t1R_@He$pqmE-j3InxJ_cFP#RCG+hBh-dgDf}WsJT!^3I zSW{gX800`6gZK%)98n;jvmfp!=yF6*(`K~^1A{;z#1JWnA$hE;K!$)!f*1ndXD3j{ z$>hqwpipAKAOLOFGs-h4lo&DyKwI^UatsRPDJ2X7jSwRlWf^3b7&0&jG(q_?46;&6 z3=9Iz5WWn=%34-gR|W<-ki8HqTj8mygR>N7WhX=r%*rk(7iJ}N)gau;9;iIbN@(*R zYGpg?1dx>=dm&cBR}BhG;(P(K61r#*W+k-o5BDXs@ej9h8k&{UA$+Kn6Iq$v7#QS0 z_Cl zU7QQtKzCh(@;G#HoD2(tEa)|Ft2*hy%H|zp<>_8lMFeik^3&imNb0T=cKpamnCx+*A z2LpqE7nqa4^9kf@Z!jl?Cm2*Bg|UN5uMD0DP^}Ql4k|@*cy>54FbL$bgGz$}o<$%% zCG4PVRKoMlkAXp;6l_2R&kRugRtDzO@bG9eFbI@`ISo7XB z@WgpAFbGtEIXyfZjTjgNs==HIJUdlEr$~W0Q+PnOl4^2Xi*?uz_5? z0?gUMqYmP%1ao%q%m;B+fjN74{)0HH!JGp;rJy2h4VZI;N7jacL0~PIbAsm=s32Jf z=A7XX0ac*u!JG>`_dv=vfH_xqCYdrY2y6s%ZtxV@GB5~i0(0*0EC+EmgE&M`$3$oV9pC3Z9C9eg<#Gbo_-K#JDBrx3`;s-URZtyZNFllf}FfcG{1W7S4uxLyWWnf@s&d+KYifmobXbkU_5mDg@y& zaDoos0I3Bx(xn+#KnCa+tz}?f?B@bC?RGS9I0S%=ZiN{=6?Dp02?OIaK9Bfw2p0GUC*=yIu?oh9^OGc4>i(j80}?2nU^v zwW0^4+8)$sY)@ujXa=3$Xw(T(*o0<;ls5x|;U=&Q*oZaB3=Auh85oSgMl^wqU<_d} zss}YxE4V-=W;Aes_AN6o&ba{6tOL?qp#o~u-biL(xB{}@1T1C-QvElXf#GK|1B1!x z$qWpPRidEAwL%I5gIo#&gXvz7x@vH6n1C9pj5T1kX$k{_F-X21Bwq^_GXXoO4xFU? zQy3V0Qy3V`@)|fCF8eYt=v6jwIQaX3Ba5ksL6$!{!j3r=qbfz#cw5KpI=z$Ce z8LP_}g=D>X2uPc@AjrTObsP?$qp29@Z1iPdfLO0>0kwHK*f;r3MhQQc}0YQ1r)fJMY;?OAk5jp$Y#~n$G`x>{F?=>ehM%!fUuAz zo7EFB1_lrojOMa(S7l%TVb15Q48L6%7+4tggu>5&yT1-{1{~;+Tu?kKmM}8lJ@qXS zbTpfj*nCFfcGf&xVTxo$m(fl`=!mh65#WX6V^)U>l%k!+{QhV`5>gW@cbue(`{TfmMg^ zILI96*>E5>{A@UoYrtp2i83-Ua6r$7dxms297vpj6I3#*f(}vxsfV5o2RgHe2YNOf z$a?tMaGyawXJG#Eoq>UMH8V&XGaEAl1M7O}-Kb~7fzD`yo(;zeVlyvfW?*0!lT2o0 zK%5Qth>?MT2YkYip)iQeAP}F;z;472vJ!qa9Ebxy8xF*QpA84%z|Mwy0Xn~nfsdsF zbT(WKBLl+^n3s^whN}jhp$0u04x|}=HXMipKN}9jfu9Wr;=s>_199MI!+|*Pv*AD- z_}OqE4*YC55C{2exC0oDB!!fzF0YWMp8t06H5E6jexP z!wG?oZ3Bm6m=K5!KN}8YIs9xm3FNck^r2_NfsEtSU}j(dVJ?Wdd@Op9v*AGD1wR`u z7Gz0SIwJ#nnIMP_KN}8g2?HNwhy`{w+%?dNZjiI#z>1+~!-3U;j}Myzj%DcaVROMJ zFhh?In+N7Vj}MzKXbLh3b~YSHKlJ#pMM75Kv*B2iQOKpAA=yayA@@ zhd3J!#6z472hxW)8!ii!w%}*Of#eWp!-05+v*8}2oDKI9KH>v*8etyB!>%u(RPnK7vN> zPH=oeBX<{=1C89>$dS7TtREV=`yr7FI~xv^@Zo2}Ekr&W?lkh*aPN`NhT~*MIvWm@ zh~Q_#f!qu~8xG`9_}OrvL%>{kI@uW**slo6BcBZiGQfk!^gaUv`z^3T;b+5vPTLIO zS^1KIf&CFrDDv5Gpi&fmHXO*F6b5k+1@eFdD4j}x{3QVjVsMqhz{dg#S+JU;ptIo+ zYQS8OUIspvaz+LQK9=R6Bj0W@Fff2Tjbs`~2xi(vkQ$IKP*@<;Fz~T_Wn+Mp{2)() zvpo}puMawH4O9#u9Si4xax7da=tMVgVWY|@2;v})g#%fII2I0+tU$-Yff5@Z3&>!^ zv2Z6qhQN-6191??!hv{*W8uI@*NNT$#fU4T3aA>038b_4?4*W zb}SsYMu8s-2XPzhSU8Xz;#fG4HqfzfAW_7zaOXgVfl>tMSU6B5A&!Lu#Vq1jI1mqU zEF6f3I2I0M2;x{ckRuSs!huvGj)ep95XZuSc!*=+Ks>~;a3G!s11G3jy$3oL4isJR zW8pv|d@P{Qkph)C;8lAM!a2exraiGi9n;Ne@)WnP@p5I$sgB&P)HI!*=# zxlB&zPBTtfA&_zgZWc}j&Kqz;6d{^GM}mRQ72{Nb@S%ptvwj8{0x}6a?!l=7H$fcIIOAC7gB$^J z3B(cUa7ScuN`ekp1D*QDnGMkdJN1n-2g-+@`o@_H%1_sVb2p_Zr z;H@hI17{VK4<2vkEMx5i845BPVrUKA(0Wc~*r{)v4G>MRQ{OlnA$-swAE4Q0&L$`y zdg>czGn5ZK^^LOy!iSyu#@PztgXRW6r@nEvLHW>A-#FW$eCVlfoE;E8?9?~TP6!_~ zy)@61fq}CN%7>o%#@P+!Lr;ChYf*7PdIxaeAuaPoPAI}^wc-bekdP$>Ko?- z2p@Lp8|Op_AGAdtbm|-DBq$$x>Ko@|C?9(28|M@#AA0H==Ts;kdg>eJG$>Ko^D zC?9(28|Mrt9};PGtahMN-#{@3iL_bpNSn(k0Xy}La~?z!?9?~T`4B!M^wc-b1yDZp z)HlwBP(Jk3H_k;6KJ3&t&czTu=$ru1sc)Q1pnT}5Z=6e^eCVlfoXa45*r{)v%OQNw zsTQD9-#Ax5`Os6}I9EdX&{N+yS3&s@PtRdB2A%o_@;SuQYv7(<&nXK#^^J1_L=$MT z7If+x=SB!0l+i(_zHx4X@ zY!&Br2p@DH**Z@K2F@K&KJ?T#&YciG?9?~TT@XI()HlxEP(Jk3H_km!KJ?T#&b<&m zXx{-l3+Fmk3(%==ppbwB!hU!l9OAqLJN1q8FhmohJcBIg)Hlu}5I*eGH_oF_KJ?T# z&SMZh?9?~T<4`{I)Hlu(P(Jk3H_nq#KJ?T#&QlOR?9?~T(-1yrYEK>%$Y-E@=&5g< zXQ6!Psc)R;pnT}5Z=B~Ld{7{RPJQFN0O5lI8FcC!=S3(Vdg>eJB`6Ko@}2p@Lp z8|M`WA2gc`I`xh7DwGdB^^Nlyln*`ijq^H$51L*6q|d;>c>}_So%+Uk6Uv94`o?(+ z%7>o%#(5jUhep~#*0-Qj-#{@3iL|@$NPEBux-v!<9rI`Lr;CKo^KC?9(28|McoAA0H==SL_Xdg>eJCkP)@ z5QDSNX9%AWdg>eJ7bu^bK^AoC8|POjAA0H==Qk)Hdg>eJcL*PL>Ko?|2p@Lp8|P0b zAA0H==PxK9dg>eJZwMcD>Ko@D2p<|~uUMCZ4r>F293;^GK>|&Yg_Dty^9tPaX|&3Cb2WJ zT7%9{0~rS~i3ed4KO<)s+#~_0MsZFCrHQr-44i^c0obW;oI+3m*r{)v!Y~2wP7Y2! zM%LvZyFeB~>=H%TCBevf1!Na!CkLk_R3mIB2d5NN05or^!on%e$odgv6394+NitBA zAg8`@ic4C;)HlxA?4Z^XVlm5#>vab4oV@AQ{Onn z7}-Iw3_10UQ5&9-?&tveCVlfTxw80^wc*lbtoTt>Khld+X*_rY?C?z0~fU0394~Gr@nD% zLDfS~edE%G@}Z}`ap^$$&{N;IbfJ9csc&3*P(Jk3H!f%o71Wjjo%+TF?V*Ail%P}J zxD27{p{Kra8A18bQ{T9Zp?nqw**aSW1}+mQAA0H=mnoDFJ@t(X+L;CQ0zjv}aX~w? zkaCVog0)`~w8ji}>KhllGs|Vmc@mTeK&QTOK|8OY1yP_=-?;3dmhdykf=+$oa)9t5 zr@nF7us#793Njg7cyc*Giac%>E>})D&;f0r5|7Ibq6ySr0iF8BKm6oL=(uRpi|$t0-$_|A-=42AVWYVK@16k z8xqQC0XiTJ?6NS3CeY$)(5Y`+;SfIT)HkjOC?9(28yB=+3ucj41^Cm^^GeQ!UwgFL8rcP#XmP5L7oDg`o@(8H3WL<8&^7n4?FdZD+9uZo%+U=3E^{bFvw_c9x1^KP5O(St7qs^Z+DQRA^^FVKdxf3)#s%%Yf-C`@`o;zAy+SSNVD$l= z`UbKIVo5*Tl1ZH3K$d{x0NN!5H7`M@zH!02q@Xsi8Uq6ttV_zyAPYM6jSJQ#g`WDx z1?!SRPkrNpbxEP8zH!Zj1TQG{f=+$ong!)UPkrN>4dp{medC$~r2*=Qi2 zKs+%I?umt**`Nd1K&QTOLA#`&^?IOF-?*S%Qa0$RZ(Oi0sW5{q=+rkZSeF!f>Khld zO9~ll;#$Dk2C@`nGsMyra7$NnUI1ANI`xff4aB9eQ{TAOLix~B-?-L6_@I0bI`xff zJ%kTA^^I#4>uZoDAe$hTY=m2~g>x$G)Hg0zKNEUj8W*&m2|F;23)ats9@E7I>t{lb z>EeR+GeH$_jTr+27p$KNJ*JBb*3X0<)5QhrXF`wZ;)3=wL8~`?l^7Vf_CY)WTH3?T z!nK)o1L)K@kWV0>zc1l>dLZOOpE1?y+RJOS%xLeCoGg7!0^o;bu>3Oe--Khld^9c6@tn&yxFpUe=d4zca)_H_^0@`^5#l$*LNWwagFi*fbkFc14bsk}! zfOa0?F>wbaCN8pCflhq``2^yLdvH%YUw1ged#s%&Cftm)OQ{T8?oj>TQZ(PvMAG8Ae%o+kZpbca)#L%B`L;rC0!43Tj zaS6y!(5Y`+{~&x&djoXp8`pm*A5t#;W?cm`6l5~E(f3nb1-?(6%KhP0lpi|$t;GI8kUk`M`_hgXKAoC$ciy%BI z&d7NHZnOl{)v#0FKu3OqIz=pyQ{TA67+LRvOad7PF-aO>k{lx^rz-Sl3@&-7Nw8Dj zxD=oQuv6c-6rlpJQ{T9hU;@xn-?)@v0?p#rc|-?(&O0?NuC;{#6;L?W*fQF4!Sh!>vS=B&?rh!5e5|D<7fHYy`JOvL(Q>aGRsc&3nPyyJf zZ(Qau0qCi3Toy0^=&5g9mM{V6sc&3XPyyJfZ(P++a)${pGbmjEt!MRs2|!PM++@`4FK@_-{F>vYhmZy-lQ-0OpIuRkMa zEbP=bt^lY;&~ZGVQ{T7(p#q=-mq4e!aRosIV5h!u1;YfOr@nE8Km}l@zHx;@1z@MX zafQJIpr^iZg+m1xnHiL(8!#|%MZg50r@nDT!UUkFzHvpt1R!4YV`QxYo%#myC&Y^} z2rtGna{ktUp8Cd>0MiIP^^GeLCICJ4jVlQz06q1MD;XvLJ@t(%1ttJJ^^GePCICJ4 zjVlc%06q1MD;*{PJ@t(%1111H^^GeNCICJ4jVlW#APPD4jVl`_06q1MD+eY3J@t(% z7bXBb^^GeJCICJ4jVm7}06q1Ms{kedJ@t*N5GDXU^^L0tCICJ4jjI?Y06q1Ms{|$h zJ$a0)6e<8Y^^GfzkyQe8>KiDEAhA=9h@C1%&i`7lqO%&R5q9buR}EBv5qjzyS1n8c zdg>cj9ZW!qL8;f6fq|M~z`)fF z6M&xj#?=E8fS&rs)e94Vg?%4XfEjw~8&^M6090XvPJQE=025$?ochK!5hegV^^I#1 zOaOZ78`or*0QA&1t|>49=&5g9Q(*$oQ{T9z!2}>Vw33lk26XBhC?P=7zzjqhn9a!f z5O(St*Bq!uP$2|5^^I#TQ~*>6flhtnngKoTem;m(DH?CDM0qCi3T&rOM&{N;I*1!Zf8I;^T7#O(L!UUkFzHzOC2|!PM<5~|B zfS&rswE-poJ@t)iBTN8#>KoT4m;m(DH?GYv0qCi3Tw7oQ&{N;Iw!#D;F+7Wr^`8y{ zgB&QDAu+ri5yQI}Ilt+`a`|qkMoKoS)r~vHLH?E^F0qCi3T*qJn z&{N;Ij>7~Xr@nEWfbyYjg`JG7!k`1yKp_JOlv9X6xyZ=r06VLV>k?EW?9?}|%TNKR zNf#JdV?ic?jDwhT6=Bj%M$XxAlWsvZf*Q%7Q{T95Lj^!BGSI1STz8-X&=%PZM%Eo5 zqe13FjJ}63`XM9dH@MM{pc-MPzHvQ<3cyZ%<9Y%UfFz0sjI6@?3=DE0^C3n*Lm2&@ zkrQ;1l@jRGH?9v*jj&VSxIV%Jpr^iZeS!%px5Ydg>b&0~55v20itSixDOOJ@t)?2`T_OuS11}>m4I& z9q4E_P=0l9;K^V=?#K{Ias||GO8NOaOZ78mPyuKs zSA&UF7If+x$T)~ex=@oKr@nECOJ>4OedDrX2Tf5yPJQFD22akhfKPqna%Kn3TR={I z0D}$W+#udyCnlyl%`o@*a4jTN2ochL<%f42cfdO*r8&@eiXfRuW zhuM&Ufvb)kGzbkj^^L2Y9W+=BIrWWe0y}6>7jo(w*L-%+;49?RH?EcJpg~N?sc&4H z*g=DfkW=5d4zhy=0U@Wpaa~{s4W>a(edD^%4jPnl;Q{Sa<9f#q8r*@L`o{Gh>;=fF zZ(JY19LT9}Tpz(4$f<8!pTHc*sc&4r*g*p;kW=5dm>AhXBO;Jf-?(@g*`<{k7$B#< zafvdrg9Z{Hr@nE?FtUUC{*Y7OxQrOtLH&2gsc&2kjO?IJDCE>PE?-7=P>&9B>Kj)q zBRiQL| z0_4;;uCovxKm656WH&NQ{T9h zA-p@_Q{T8$AUw#aZ(OPn9^}+FE;R@ba_SqGI)n!~^^Hr9i5-*^KQO3)@)-EkH!gi9 zW>AI#pZdmSz$BgrKJ|@TmU9#A)HiPE>@8@50(9ydH+1$Ea>5U{4C`4_&{@@{(B;A0 zijd-zn}u72^E=!S=#(tn5a^UF)DUG>Au|RBIgm-<(K~JpxFOn{Hn6kSxS{i`a6_Q; ztWZO=Si?bvfJ}lIq7OI3h_exP>Kiw7@)T|ebn+Bxh#~77kRc$GAcmO14YA=o26qW` zWiQ+i=;SEW5NpLc)%ue z%3Cln$bwFNH=&J?&I(51O>L!e7@p@w9# z)`JWInFKK;5AKpe&XsUOVAGP&gRQuWAuSE4AqA{QK!$)!f*4W?H>8g99mo*S31{5( z5KVBGK$p@&4XI`2v}9nA1DOOdqzP_FE2lB+tTk@v`dGLj(DkuULt0q8KN0&WO&+7NCCbkQr+kZ#t=AVWYVK@6DyH)JyBUbrF9X+yXn&}l=cA(L2dfD8ed z1Tkbf+>lwEOjZmGvfwa*&IQ5^fzAa&4VlR*3p!8@WD>*>_*@|OLeAwNLqH85Zs=Sf zXh{m_)HiPETp(yl1GEI38#)&VTLR7voeP950q2I!1%j58fKJfihAvNqo%+TNU7iX% z^^F_4JQdVHV`t%Bzu(-Q{T8@bAgNu zvY=DnxM6dF5KFeQ)_^Pl*#xm<58RUdoX0?xfKGkmJ^)F#ps7~Ssc+l|A$-u>8|c(G z?n6*MEOS8DoI>MpAL~PqB_Nw1mK=p!a)Q$ucIq29bb=2wy$(9{jT<(>C&nNPI`xek zHo*ry^^F@g!3RC{jT<__Cj#-=an>-Kk_@m;*WWjk^lWft>orT@B_y zPJQF90dpXyzHv9RgNjDTsc+m}?4TkJa_SrRM0QY71v&MNdj>nG$bp>t#yy`MRCGX2 zedAuko&i7gje83_D62tFedFHC4$33YQ{T9cu~&f3d4rt##(jak1H@xxPy?kAa4`as z2Cs`#X8@;rkODCOKLa?4&H$a}23jYl&cOUikAZ>vA~PucfKPqnz9bBi=A6gCz;FPe zj&%d<)Hfa(agaFp)HfbEFq_+gSB-OyJp+S4QEEB^uR1tbAg8|ZYJfSAQ{Q+s!5r|Z zZ@gMyHssVdUTrW3a_Sqe4wwTu^^I2-%#q;H31DF0)dO=Nr@ry(gE^2>-*^qc92M}X zZ@h+J4&>A~UL!CEa_SqeF_;56^^Mnr6SODJgn{{v9RmZeDf3-B1_oA;H#k?=GcfG6 zXJ7yanjiz~TF{|xpi|#??PWmXoFNPh4EJCP)EQXMffOX0Ffj1C3xUL$m#{G~@JR@Q zjyq6iX90yZza5_v=!CWhC7=`9T+2X*iiDIgFfeI^6f-a|GcYHwV_@KSX8sL10S>Ii zjV~IcWp^1!OHUC7@aIo?+u(CKZFlZK)GcYi=alf}`U^vpu;ZO+HpX$iKpdAT1oTSYO z2D0E2SVk8VEj!Z~7?!3nFles@Sy18)3iqIN1_rxys0G*H7Jyh_3j`ThLB?oq2Wg21 zTL3!A0fZUn*f}vUXoD??*9TefI-P;xdO8DxPBB=u3rLk;I{kd zfNVdI!N9O417^FA1IReWVBOOo+XKP2yJs>mxMo6aKLfJevWde1Y&+OqkPz5j0R~o( z=?2F;7#J8G*jSo49JIhes^HAPp!-vqk%7^P3l#q`nG6h3FcS@&85s1qnm8PGxG*s2 z2{&;#%m6WTnm8PiK|TcA0a66EgNK0?WSYSq69xuGJ+_Eu4u>qT9Z%qP7=Z04%w%B5 zhuQH3WJg>x)Qxsk}TVXMh*wi zN>#==%`i=q;hI1!uqGh}R*?Y7b3oC^|;tbp%Cpm!*DFL~FnSqyseKBVmX!||rY!vpT>>%qI_-2F7Us%N|zz7Oo zCeYa^?5mkU+L%CRqp+`+z5#X_dl%^J6P9k!*$s>w1)wt&Kx`(^$tWCRl68y>41!k~ z7#Jit^f~^5ECFq@=P(oou^EKovl%#yz!tLby=G-#;4tC_+0MatWD+9-hmi<~!^5`` zbkvKHG>9W06kox>Va(0U#K0iJz|XRnk%57GIwJ#vFz5slkcSu;1o=T{DR7u`Ok-kT z-~*kE!ePk?(#*i;1v1GB%wges4vJoDFo%QhF%ts=hYgs+!}pqnfq}yo%n{(519F!g zm?Oe>7o^7?%#q-80O@f6b7c7VL3$j)90dkp&<0cvMh-8I+aNc9PDbJI<^r)9_;lD9 z7&v@5L7WDWLUslQ4nHoC4;UCl4uW`rU>*x212-sLzJ~croreElPr8EKyHlSGzOiF!lw)(BNe>BC!_GQfQ;jIW@cajVIEL; z$usb?crr6Ei1M?5!b@-+$ax&492Fo-KqsSclnH{^416D@7#KLpA(k-kvw)J3Aoyey zj+q=EnHd;_;tLo!W(k263&j^PaLk6ptWbP81IHXNn}aXhpOJxMF6U|n1_mC!9U#Ze z19SL<;*-)CIOYomfQ~)jivamy0a%X&-@PVA298BSq2QBI1nQU>7{uz%Ffe@JC}HFP z35wg^VPN2>U<4~?5NGCKVBn}_k&1MzrJNKb&+XCe+dv4~?5 zqp$+#WE64G$tWC?83oipC!>giPDbIF0#WH84mufyV>%hlfie*#zKeh z+ZzT3j?wKn7eE1RdYu z!UsATh2x5#J?LZ_$ z#=wB22F!)3nZ(GzAOI5JXF0^iz##dZfq?>nL!@$oX%FX~O z{6Rhi=Y1v!-=Cd<0nBG$;J5@zB=U?>(X0#%VmGHSGVpLHGjdF2XJ8NqmpH17f*=lq zxCkiqszK5+i?}E#ovTCA76$`A3n<0$vw#d1i(mwm{`QOdj0_x3j6$HQk4GGI+6RX#qsmbR1_l8JZjj&)m_wNu#K6a+a6~Y2*mE#2 zh=Yzt;fQ90R4d}uAWy`=+y*)xg(DUs$00ruWMv$q2uK?b13wF>A`)B1%D@o7k;KUH z4rCZ8bU9KXnSnw48mN#+V+2Ppi#TZ9gd-io;}MquMRo>+CnEkClnyc>hRBFFfC4BB z;s_P-IiQrC4N<8f{vBjy4uoeQ?hoSSLU0kAmd#Av_NTZcyF&j{_QA z>&hO5}*VvXU4?9z?semO43ZXSs56(B!p*x zS|^|r;J6G#HZd?Ta6e;XVA#kBb+S5xz(UZOCaTg54BUNEAaQwi7EnFJqs;deRGfm3 z##8_wji~@W8dCv$G^PUhXiS9(;G;2_wAM2)@Mtj~;$&c8QUtZK%N!mVt`~i zbuI=5DNwGF$_BLpc{vzuIODh&7=%g^(-|0T1wm2_ie*KN42*VsQ#lzJSeRv56sK-v zU|_U|@MRfT7?>J1fchfLAk%nR7@b)gxfmGu-U%`=Fgmkt11;ZW5UgL%z`()iBmm;_ z&E*40sbztr_`s&S@OFYshuG`NwTBCIwkJOe$RKcRp5|g;Pyz)215+KyGB;+Bl(HkJ z1LYwB3KCZ48iwEYf~z-x+PIz^EZhtXd~zTscyfU3WMEK^1Zng%e+e?1d5-39dv1_d z)wrR7F2|t!2V|U=v=}$&XvQTPzwMPzddGRPDksK^|UNC`-duQ(&v z+zN)@_R85HH33jHGcgrdmmE0Ry89 zqXfuR4C)3TQ~4QrMKt&vqQI^GY#s&%4Uanv42=8`&0U!c3@w=q44N_;d=B0W3=CRH zAZvse!ENKMnG6h@L4C6*kV(Q2!84f*3@1Q>_t+U27)2n0A2Jyj-eoc{Xg6>(Ft}*& zIk12TMUbVUjGQ_%LBWy5z`&fvz@XE|&A=d)#lRqu#lWBmQ>MFwn}LC8BIsaL2E9ih z&vP+~%-~^QUWHVl)CplYSb=HC&9LAPxgNWMsl%6-e+8M9Wnk1_ncL`uk%J zN`FS+1oFohB(9cO!obMDD1Dm;RJ^l*%;0AMr48dykR1<2n1y*^x*zHybU$&HL#7B_hrB^{nr1RE9tGD_W}p$3G+t2R=m~YOXW#}^Iv_r{ zS`c9n02yP>Ez7{bxRlKzk;4I0*D=mf=VxHB0DEGo3dk9TSqu!iSqu!8U{5Yn09hE5 z#lR4h#lT>72jq|CU@^uJYa4KAtq}!jTbsqeusDl>LHR96$sS%%j%A*>px#!Pmw~}2 zk;7pbD8klpdGRqY*ctFLFxaW^GB9YuWbAEt85n+MF)+N(VqkD+N#t>F)Bb$NY1IU7cB#5IOL4ytq3=B>#i5w0~1sNEeYLYk{HVQH@ zxXwx9a9}C|g#Z(1SkU+^DD6&XV+M8LO+jgGCM2nu3xFh2LH!j_Imy5{M_CXSfvGB> z2=vHdV6e%7MRckqD8`oOFfh!{VPJ3rnN$Qe>0b^5!>=3$25?d`76c_Fkb&+X0))*4 z7#M6gK$g`BfJO!7a~T+9a~T+H{6VR;9xP^&%fMg+5?cTgYmf(JhV)zphSXdJ1_zKK zdj%O7{_;aYwg@VAQjmc`PyixU%F5sbQU?kG&;SC%RcJJnu!5oi6do~5prK2+v!)4v ze8Irj%?B!}8gdyJs$iCZQc)|!V5C&k3rDl? z*@BdUJP8gJkSa+uk3!4@DS>2WP>g^xvmk>2D26?jg7R970H|y)(BK2@-e+K(1M;%P zS5PFy7=vUkxkXN-;8kFlP>jXXR7| z1`y^e;qY8Pn~?#8ITP7DbJsI4fG|G`8$*m3Xky;G5jThfIpmhpNCd=z9CFKPBn{#S z@W)p$a2j)80UbojAiz=rI^;Hkk%8d}%rguOeBhxRPIHcQ&@c#SD2LOM6Qr4e2Q-w! zX$9u6@PLMLIIY1P$RW3!Hee3qkXue$Fb8tTEvFrrBfasPDZ8 zbjU3zlH?iqK)v=J&QOkjAb)|wF-!==h8%Ls8O{dsB;=4=&InExP?vxQG?c>`sUQs= z$`N1z8OJFCIwqExfq@HRt^kV^=#X0h7EpNcfroN9OF2NpJ3OGF9L_R95F2vHEoV8z z5(WWqR^S5<<#5jAI0QNrHNJp>bCwWTF@Jm!1Ltf=%<{*VGjPrUvmxi8a?a%h6@HL& zP&wy;Ieh$}p&ZWnf{LJ_9PlBxoD0BuAm^ZRE)r4$59P3c##ltaLphu!j2s|A@FBOH z6^vlz4B$gp(*}qM)H1&RRwh5D#+5EoUvG9Eb-w|hjn13%=Jvx|}IFZ_^O&K`(9 z$RW3!{SY4HkXz0P5c?p9+;UE06b20sK@Pd)oXjWy8Xkfia?3ddq7rh*E$4JbZcwky zMHG}MIA=2ogAxMdkXz0voz|X$rRA%I;03BNkE`wAV1wkCh*|(f(kkk!1`<7E3lG->J z1Xw_6P=EzwFy!o8PJ2d<(;!1YgFBoKj6xs||4%!2+xCo z6O@D=azG1n=-IadEFcj97EtI&feIpUtTPC(eBxkW5MXIx2a%u}Qwmguz|sk55Lo~` z{v*Jm0XzGab19<|sBj0LeapEF$^i}Ta4v^(K!ZD+T+CoQn5{Q4FmNf0$AFIaf050| zz@;GsY7g)+Zen2I;4Kq>Toc!@~0tG)ANe=5X*l1u4@4b9i{(vM?}kYlArgJo8u? z7`S!791))TAU(QZjs%YrNRJ+vBf}#I(xVUNC@{z_;%8vso+Soywd@QKd$uSj^MI=b zFD__6gHG2FU|`^$CvF8ggBBFrJkz8>3nMr|nY;+5j-5gFAs^`OI6lxRTC(*ZZ*7CH z89*Z~J0R>@Nd^XO0%mib1Qq4nP*1Qku>1!ZqRqp=z;jHRA9Ql8m>2^C z&tU-(m>9vjrFB5I zMKcP;F)%Pl&l6-|;OT=ZO9Q#DAIdS6W?qVWp2<+tBtfA& z1{(C_=+I-H*-*|)kUevt zoJNq_=0Z83UI))SD2E;7pZQRZI4EouKshr&$zu_e(+=|KVn%SVNuL6_dMVV~te|jP z4&_LII4htWXOPh=p&UMt0jr=KeNecshK9~^kUeXl919Rj>Ws(6& zNKXN!mJJXN*!2A{p{vNfK1=aBn^__1SN%sFcr)UEEhp44uJxB8m`L8q?sBfO0;75{)#J!wgF58qAOoKLJX0nov#@ zKX~XGA|nn8AZ@6OF36!e5DqxBUhpw6$T6_o>YQPZIu9Z;H@0p)~)B5x*?lM4!+Sx}ADkvu$6eX)691#yu1_lnES{4CqK?Vk~#9{`X zdKT`fps^vb#1aOc1_+0RfeoaPr;&x33A9=Uq?i+Qw5kW_U|a?kTR{c}=@3w$HM7Wp z#H1xS7#Mi}vp~}5ei;S^UItc3@F);A5KxNFN7#Mijp)wPM85npu zpfa4&3=F*7P?>HK1_oXpsEh!J!w;1y5@lfE6@bcs8ZErSP?=?73=F&?P#JGd1_oYn zs7$3e0|T!FRAvho0|T!#R3-)FP#K7fENGgFFP#t6TnAU1psE(!MpkEFF#{a|44RJO z?~?+FGs|pZU|?z!0tF*;=xhcCfig)@qk(w|=(x>VVX*id9tH-%2mw(0fcYCA1A~yi zc(o7%gS_r01_nkssdgdI@aGcE-}VYqKq6UOAYBs@I2`0aqrP)~g6y0%g@J)FM-(KZ zcu16iVR8b812dQasmbM0g0Yn^gC@Q57#NuIKvBz}0J;W>F&1p*lLQV2OOX0G)xr!6 z^5N->42(%&Gg+AzX#TcWSt`oFz?jJ4zy%^eqr8mCVqwAz3`#J*@-|Th2B|y-1_`j~ zs;?3_93F@=FsOb=;BZ(f#K54+0~%ZgF+>tM9NvP?dsjFM8lN>~2L&kDNnjUT7GYqJ ze;LBSz-TTAVzV-Xrcqt!P zf?bS(p&nTRq=f-2B`n6kFc~UU!~hYK7h_-mm0{YT$p?^YKt?%fgXSJUJO z#3ImOF=#y*11QKLJ%Gm|&>C2fK^HVm%4oo*kjUX61`cCkQ3eJblSB>&3$Ovvj0W0_ zF(4wA(SU(L0W`+SsKFK`%D}K8fx`i`-i>h%h^KWRfy2R7jDf*H6l^i0A%o7f1P+HF zWMizf8NtRtSJmo*Mp_va*cK$g7Tp@`3madTT>wSMPh=G9_6aWSc&5R68T@YDAqqz(WAS}F_ zgU9gMMg|5D7Up8*F?8R=zyQJ`a*V7-2RAY>fG~F;k5Ow5BLfJtDXMg}I(IzXly;%1;hTu?-^K!%B#K>{q0VP$5}m_Bq^nb{9C01H_n z$O0LNW(F;+Wq}SvgV@Zz5+GIJb%Mbn&~zCK(wae59lm{_ac9tY2Wt_S4IX4>N@WB)oSlVr88Z)TkePJ_cxV(n$jrJ@ z7$nZX338VVXj~TL8qgp!>tap^&=@dikePKUJIH#-AT#SK)>j}uGJw|%vaV(ZX#=kr zWL+-}S`fg?!omVxHOR-34q99Y88cx9vB9eb*~BEHKx+!YL(OdZ95+GMfQBd7423~# z@O^4*Mqn!;L(ObP+#vfQL(ObPA|MWAsF}@38pHwLr^aT?eIGp3%*Rp>8fq?PWMFs? z^AhYnH8yjOBG8a5XsDUZk`tsEGStjw1?E78n%S(u9LP{Jn+=!)8ER&;1#=)n&1`mH z4rHjA%^u8w3^lVkfH{z%W;RDK2R_uy=EbocjIz0GmZP%|j1VE3u9g>rC$t~vvUW0(+#4H;@?3ugm)5;D}x7QqRc zX5au1HM2!3sDX!?`B*^4amq6@Fn}-@#9TfWRnSl~9}6hFAor=Um2!lDECCHQvy};g z*pQ)SwsMFi416r0gv1XXYG#|saTYW{9ACh|HcJSs7<8W++iXb8g6>men*(M;MkCqg za^`|o4f23i4YJJxb0Al4vCS9M0ht6IYGzvi)&m)hWLqR;2p(!?23ZLiYGx~8KQpe;RYFMW@}{R1l@WC z8ER&0hL{N%YG!MN@E}9YY;BBU_u)g$Y#oe3PvJw&Y+a08-{3>dY&{TtkfCO_eh3dT z)XX*kVjpCvnQaoI@E;Ba2FOq|+hj%oCeW%u@O^4*Qy?lKL(Oc{8M%c)s|LYC&1|z7 zg+U1cGStjAhfxR=&yb;Jw)u<#7NAvw;Gt%=1(0xo3^lVYWE7VNtr`>str}!o1hD~h zpV}qR)B$*?nQbda6=*FmC~~(UMecTRXoK%lW7`2{LnC)5I6fgm&1}2C9BAb3MvmM) zU_H>t-4BUe@K7_`VJ=X@hYU5d9hIE{A8KYhE_)n4)Xa8@7qo;>hX=H3knJ=lD`==$ z05sIhb`ES0AOT9J5+Hv` zfRY!uT43N~0fj7B4QOQ{k{U1A!!SAsTwH7@v(pmh72sT*)wt+fekFPIWP)=IFNy5Hb)2# zGO*0%#3%%+Wg!F0Y_5zdlfkP7IYEL~U=D>1EVD&0a!7;5fOr3@o$dL3ogX zWwv|>&x3&zRJYy&4J?DA3p%jO#{v@JV*!PZ6sXt%$2tQa%WLqZYPH}?)j;*56sW|2 zr4vc;b!r@7QV}+=%(j$K2~?DW2bS5EK{=p-Wwzx|4rpMRjf)vnOIFfk6f|X3afK8dMx}f=Y{Hps{60T+4vQthu-HfmRC2fX1x3w?WvTF>CG} z5H@JcntLaN4H~oN-VZiQ1~g{PeE`hn1Q{*|8g7P|%go2kz#s$aFmoT228qjn#;myy zLD--%Ywp8fjWVDyYwjapHYaESb25@4!5~9GW7gcqq(R~`pfPLi%V5PapfPLiYcd%O z3=A@$F>CG{5H@Jcn){9n$U!ooF>CJk5H@Jcn)?Gp4QR}o`v-nfp931NfAths;7 zdVCIbP!4F!ntK+M0~)jDo(<)I#;m#LKslf>Ywo#F4rt7pdmfYn8nfn} z59NTythpCJIiN9X?nO`zXv~^>F(WwGz+=|jOQGHdjahRqhjKt;*4!(g9MG6G_ev-S zG-l1c3d#YES#z(3h7M@VntKhD0~)jDUdRLqc+i+N_hKjqG-l1c6v6=~%dMa>V^Ff> zXJB3m8Z!osS#z&ok_JhD$E>+mK{%YC#PkHFT%LjX3P?F<%$j>GlMF}#JZ8B zF3iWk04_GT7?_zsL$RPSYwpcV(jW;=P*O03sbFScRt2d5jahSVV-f;MfXA%4PclIg z4QR}o`xKM|8nfoU1n~%X%$oZ$lmi;G=6(p}fX1x3A3-^wF>CI}P!4F!n)?Zq0~)jD zehTG)#;m!YK{=o?Yi>SfK~NBZ$E>*}pd8ScHMcaB0~)jD)?kK&IB3k8TNBCwjahSR zK{=o?Yi?~Q2Q+5QtpnkJL(2wq0UiUhAwP7?n%jU`1|$X^v*tF0azJC&+(u9iXv~`1 z7|H>SS#z5}IiN9XZc``+G-l0h2IYXpthvph9MG6Gw*`~~8nfoMgmOS**4$Q54rt7p z+ZxINjahTsKslf>Yi?U82Q+5QZ3pGt0IgGZgZK|TX3gym<$%VlxjmU7r37fahuaIv z0gYL6`#_a}#;m!0p&ZbdHTN_q2Q+5QJsrvcjahTgfO0@%*4#6p9MG6G_bey}G-k~` z8_EHVS#!^YazJC&-1DFu(3my%d?*JrX3f0-$^ng8b1#H)Kx5Y2i=Z6Pm^Jres24zE z*4#^=9MG6G_cEw5(3my%awrEhX3f0<$^ng8bFYMQKx5Y2tDqdvm^Jrm2nRA|&0WhP zP!Aom=B{Vq235}tpfPLi1_%c_X3gEm!W<^Zz`zVr%-JKzz%U1NZ5;#iMA(=$cQcC| zNDMq?&GVlHl6pa7);tWXkjMdzS@STnLS#T=);ugw88gsmJUdhdG-l1i0hIxbS@Up1 zWk6%rJUmbt(3mw3KU4-ZX3Zl2mC*o=;0r@#Kx5WCB2XF7m^F_$R0cF=%_9Mo0gYMn zNJC{nW7a$}5E*b)*(U@odej-1>x38>WI*H8ynRw2aVF?N0I8e|4BQ<2ot)=E(*zbh z3=I5JA>qjby4Rk67MR1rz!dR^fq{QM^J*am1}2*=3=9I&VjwNtEP@)W|3G>{+ZqHl zSfhkN!<77fTNoHr1eF9pTyQf>P#N6JV&DNac?4A;Z5e^oyc7mORWL_@=k6v320=CP z+d>QsB0T$dFfa(JOHKy0XLvx1@&z@do(nNBC@}D`fb3(MyoG^5P?H(N=HIoMfq_NP zkfR+mT?5+OAZW+|vYCNF<`>9NLxUX9U2N!tB5>! ztB5>!tB5>gtB68~qdNnmq{tpN1_nit>5MYctjsGkf7>gSY++zvT+2NlbhQP@%isZ4 z7f}WVWl*b4ZZq&28QB%1_l+7=NZ>Vfy8d*Gca7r zXJAlGEh=JQT+a_ORjPo2L8O3zK@AiXj3;@$L>U--3K$qXKw^v_+b@E}atat2vI-a& z)D43f7#QC$X*}J`z`*!a4it`%A#?Du;cZe344~`Kv>2n9I8?M4qnWu_I3O#E4@ogF z91~$+07;cHXfc9TA!{+lFxo(*&q^^c+=5CMK^Gz4lwx4`4izf~X<;p4C}xm>Xm~2c zz`!jEG7n@DL=3e3Qywf91zO__cG6!d1_on<7-&a111Rf2+yOdXpcdR!NC3?^%mVp% zHd=Up2Zc8{Y-ekN!m+!6fuX*Dfk6ixwzDlkVvNDM4P21TB@6jLozzDK3=H=QpywEX zqE2lE$m~TbAk)}D2R#%bOM;_wsVpcujSCqV^a~jnz%G3t4D+EDV+>O<$RLoDL5*>J zTP+3#Mk_W3d0vMuCI$w^IX#jL3~JAm7#SGt!EO4;LI#H5LIwu4Lm)8+NsxSdAp=7* zNK79TfdOE3YYQ0|R)WO1L1NK7^CTGKKX`7`_xTFc^TgVjPqN zO&}dncCc3q1Np20oKAv^7#Mtu7#IxIHL1a`9lfGsO%H$BG#k^zO>@I)LtFhlG6s*wjD83=H3j85oQ~ogcBZK~UK@=|oEJX|BNQ07~QQAj+AFKna#@;+}doWfo{Uk5u4w0HyPj5G9;N3`Qy?3`)u(44UN% zybg*|3=H=mQp^(_*cePYK!VZ?4BA^2cpY@5q0aD8200^!mH7q8JxqlRkYr($!NtH3 z3k`=xa5%)3Ffc@cyz)Kg5qDA zfk9J6p4TB(nt@?E#BNZ&G&v&A>!1jdyd)3t7^uCf1)7Zd0`e0mbU~hD(7Xzb1Aa-c z!;#{k5;YDgz;W;fs@x7kc^#_q31H>6ijWx2#Zcabs(b@Txi%;~Krsv|Il#pc^TYr) zEyft;i9Vo}ji6pKDCd}g!hxx(o`Dloq->OAU@!-XfI^Xh6Ex-p$~oZHIv)cwNScoY zq?L~a)Unsk*8m-K!*)ZC7kZiuC{;j8XDx6JJ5|EKZ~_#m@8uv#MnDQ2HlTpj{waru zlOhoY28;8XK(oEP8{oz*lwx481Q$he%An-V7^K$Nz`($$0M6l0OBfjLmOyj(Mk!DZ zzoP75uX#}p5>nG4b|J-sA~>W#iokiHL&?FO!Q_e@uLG#?hWHm`4%olE49pSRw>O2Pn0|@i~W3vM7z5rqNL^dnX?hX(Z)?~8+%|nB*NHmv~yD9?%2=hK?wc5Xl zfdPaCjoGY{wlFY&FqbB~)r8Fq3?R(e%V8zGg@FNtIomlH3LHT*ZT`vdnYMM?ATwmKzDe62B=tk zML<)~%pbNhFt7xH=iZq?vx2NQz&kitK*OxepjkRLZeFm#pjkRL9>GVTDLKe29rKF^ z3=Hf#e7`^=U!Yk!_98GFJWI!lycNU)HcQ98f=3d>hHeD`i9^==g2sQqYa2kbbnJ^c zYe3UypjkThrQl_ekXbtRRjg{D$u|aO=*b=+ZLqB%?~u2G@PW_RV1mrjf!W{yFs&b z>lqmsv_Z33pm>1I(s7t`tOMBxnx*4F-Vnlpydi`Gc|!;X@`ex&#O8EFH%ph+9CjbbKrf4E*3(I*zRz+n}>_ z9NUBtkqg}rA^85lIc8$viv@v5^kFhFMMI8Jjq!e{9?&VlWL%+hh32fGU zjss;w2*?8xpmZt$@|OfC5+Q5w`B*?93*P<#+M0o+2FwMe83sOnHFDMz4FE>aOS*u`SlBEb$5KWmP*Dz^rQ=uz<*WdO$8snKG)o6M+XIxK`B-Ly zCcwaJCppvkKq;FUI{mZ-Z1677(IKGeCke(B0Zvdq@xyrr2F6rwP)=arN!-D}z?jAZ zYW=YAmafOml3#*N1U$^p%|@mNARpcyyNE)lS$pcywFYp4up#*N1Y$^p%| z@z_E+pcywFJ17S<6nhpj{#$4s^y1v`Zuov`Yk} zm~)CC1H%$QaQXrrG6LTv0ulqyxDBISBAlQSaT;jG4OH}~GqALQc4>fS-1z#WK;rBy zj6tj?K}(WAH+L`w3xe4>pmt7(%uUcN5+`Vr1BeB#vO#kRpvD5T(^dus#xQ0On+4R+ z;RBP*p!qMxEM`zUisc(g{=5j=i=j>&ihCj$dxkdiv+ z(Cu?fJ|H=*QU(UKQU(TPuzCj28c@&?Lkx`9nZ!ZutKd=w25)5f)4~i4D#Z+px0pmg zEwj#228Q-h1_sq!&{#ABl0l5Om?YHd>=_v5l`=5QDP>?#hgqS~WzWE{y_A7rV<`iJ z#x#2dh8Lv_49`HP>M$^9a)M8!VPF8=`2g0zc%4bwRD^*+P0E3Rfw7E%;Wvt5Y7Ptx z24xHkI%Ux96QYjb4GOHx4pP7EwL#}L)qwX-_(+4ev8>Ezq(BFmGibhsI$0KM4QTT2 zCKGQg$fiH`3=9Ef3=Dptk#SPL==;X4noK_EM?GlhZnWPp8lqKtvz5Q!k`nB7&I01z)}o|6myMG9 zWpti+eFIkW*+v>9VSgXZAPE|y@sS)h&uoe&Pv z$-wxEi51lPR1?x;U|3Mjz%UQySXYn+@CKVeNNQjzW&rJ?0dIEk0p%-DCqeHFsC9mf zi3609!6t$tWKM<{1A`Jc&m3d21Lc|B?;W50nx2p=+24*RYSt45Z<2IRnF2 zkOl=+kcPF$Inr1XmLu0PX@L|o2I+%l?3}?fb|6>4^J2RMBrk4;}d2 zKs(jI3368j1H%p!vp@;*as>m!*$Q&A8@wD~+{(mz2IOi`c4MhzU|<3r8VPq1G`1NS z7&kN7nMptk08r;syb{@WAQ#zIGB8+HlIS9M@(Y%LmKdM_0F@ZUNNF<*SrW2A3zTG$ zH)lbn*clMn33ON+$SelNjZCaNKu!l`r`SpchUiL^>;y~FHel7D)VG_7^(9CHC`lJp zGB6atG=P&d*vX&*PEr!;WN0DB%(WhrV<0Zk2F-iE0hMy#EP(D@@QfrUXygc#=D;-# zKLZOWUFwyA>Y_v@wtg9ygFrLaARZ(`Br<7(l5A%s14C;i1A~$&D0wF`nSoTStz=+W zS;@d)&~~4Jfianh3nciWl7ZnIND$N?XG~!NccCX#F);L0F))DB{W2NQJQm10gK0Av z7#K5|z#aReRSXR4s~8vz_(4`=K?MD)85rEF85j&Eg4~%65u8-bz|dCBz+ebo{IHw} zba5zykp?#dL$5R>|KvgP&+}>qhP%}ah=Si5WGe_WRx|O2Nii^}fl{Jw4FiLA4Fi%o z&{Q}`83SVtlVTlAol^}1g9BI{tf=(@D+0x04O7rEkUCIt8(zb}5DHcYt4I*}wv9;@ zwB#3@Z*yuG7_w@RQ#PocY^`BnsIP(M+if)r3|l}(A&O3Z&9VTs<7pPbSBn)($GrfbPWT;$r_Yg0IP`g zL4E*X#`#QK&p;YL@$sOBf#Dv=)0(i{;tWy)!i+1JSjA-+7{C?4*BSpVCq4ZAi}y7MHpLf#4v$MedzW_a25k4Z*Ue9U|^Xh!@!`Y2THns z8QDRDJ{p-E4mM1nEcQVeR_FX>1h><8Y8e&Pu8x60qz;vM~e~EHZ{)Ta8L&k zpk^bZK9kZ#m`$nm3=GL2n_#kFn`-JA7%D(E`H^6g38<(D&f;(|6yRoHVAN-F5S539 z&AfUBhFSFt45lC%aJU?)XJFV<4-FTN1_lNe&;|%dF;|$y;ot}&KsUWI8Zq(Og3JMB zD~$#Q1~rgEaC4#}i^IVUL`Z?+!iY(}6QmB*zO`#$V6bUmU{Ht2g6#}%U|p&KV zLkfrh9h=Q)!K9+701XF*Mh1p|AhTeyV6!9}85o2cq3-f(WMJ@U1g8;Dc)rNua3}>4 zV6*I)cynQ9#WylA#5OW8sKaEzW>qvYFciVeTG`0JupDfbu3;93!+k3ThIR#TslrqQ zYFdI01=Zb^#o_SVl!0Ldnv6DR8A=2jgYGk^f)gkT${8RfD1$CvHituuBLl-rsC*gN zXi(cVhIwKP8-tc)HiyGW15|rKnoB^%FK7q1rjr8$gLWo|12dQa#lU|?31dYD2DM-Z z28Ml&3=Dff-T?Q0k}^3Qgh2$T!NSPR#2O7!2TC268yOfbg4Kaq{F#{?4iX>&9CF-D ztk*&6KrQ|kjSLLW8lf%zzl{tGzd;;Oiyw5@o^TTbgBqyCuiwPLpbNrPnH&zF685Yj z*bhi8er`~S3<^b^+Dr}yNQ)oTJ?YEja8LyipbavN5=^WdO3<3btBHZZqltk*XL=@w z1EhNbie?ZGECf!<(oBLOAPu0T9N)yi5ZlDSpbk<3l7&Qb69Yq06Ew-JY+_(o4w_VA z0M|B`GdUcXKm^!wB__^RkXfL%+5RR5hP@!m?__c~fNL9YKGMkMaF_rhKx<$beVBMJ zf;50EztP0Na0z5NOcrc8Ycm4_b2HR(xn>3i3GhkYV9O)3IUJUO2zF2`hBC1-DMPC| z?`8%D&t?V&orG+t<+`4kkaEmO85*$AvW%IF85FRr%%H*^(J<5v&E#;<&}3lnfvATj zVo>7&lpX|Z85q(~WJ(zrblWmH99UHt7#dJyK#k>tnUG|;6h#KqCIGb@AY1u$m9imL z?nhAsveGr1!y&_wf#D`p29oSc7#OsCvmsW3&QyTpGtfpaaLo#;!@xDGI0Fl)`c&Wp z)vT8o**>ImI9M=(YE_U2A)_Cc81+F7SH>VveR_$}8dRUAH8U{8HAAb;E0C&laWezM z!e#~r191KJ5F)svnSo&&ND$l>eF71@+RVUkx|x9ioZ&vFb2u=A2~bpBVU$>+0?lv| zEes4|EuhvUC@~9Wa5yl52o8|CTa2t%LFz!A1Kkz|2JIFG1|7)^SYie>ixe_A95_J) zSi@aL*1sSPpd9Md0y?W2WH2a)YG-gb@Pi0&4!z6BTB*vwpa#mJ;Vlddp)JrHn$yC- zkOks^a%f8n149#t1InTES{NASv@kH}+GId-Xuc{mA;J6PcNrli4TFw-1}ukyn!X^O z7>EG1yczE?vMvPK4Ql#sZ((5A3idq6jgA={4pJZj?8bYHtg>oQH=b!>U^oSG325Bl zVG9GpeGmua#-A+=4BtTMLS%W}!gYLs~Ze?I_Y-M0jyJXM65YfuO5Y`F{)QAiY2UQROI|m4V@5D+7a8M+T%IAgVzFik77r91hkX z0yF^0_>7Tt9mpn-FMqT$Fnj~~1>{TKHU)a^o-s1$Y=`>~R7#)7;BfE+5#WOIEu-WwkgcGCGNg@xA*hXkK^-OwE+})` z7#Pyqpatc;HU@?{pbHEk18R>mI2^)31URfdFmk47K*MTl8w0~ekXbNUa9CY!V_>-4 z#=xNUkCd7@|8E7$6<`84$sr9SjW5 zL4sYN{=iH|@JK*KCj&!9Cj*1g11<)J5N$|zeI26&Xz2MxCj-NsP6h_kA6y{uVg|;I zjNm?qc^3nNaTfyvcra2eox?#IM1WK8dPdG1Eoh+<-o?NW+6624x)>O;Kpar&ZRuiQ zXaaFSsdqsa1H+sy1_oWzbV$LMqy-LAq^8MwMg|>=bXbuGN(UgG3WxxwgAI(FQ$V(Y z(!s4R28J7;1)5;jS*3G0Xn+WCk+*@7lS>=wy7yfS3~xbh0Oc)~ZUzRXZfM?;>1JS% z0&zgDGwWtxFzIGs(DjD84z%$AoVDS_@&-l*9Y2`sR6%(Q#4`jDpabC{#n4t+6r<%sJ=Sb z&A_m~n}I=xB^_2@fx73@(>WYOK?FGA?_=cL2GRgZ_}97_7_NXc%u9#1S-=gZjp-Z? zsvrU!e@7W5nRK8H{MX$K3@<_Mg~@{5%hJQZ@DJu*(;fx};~tQE!MW~kI){T5hyYuD zmXXyMWERMBuO0>lj~)gFohLBMbp)U+tt;t}whMZO0c~HV(UN|W*6wX zjebVsDlP_w#2yBQ*d7K3RZ!vpxd&9ufM^EBiHtnpVWpNH28JfETlLn0a$yUjG)N~{ z5vVaR=dvy=7q&2Zf^y-~9tMW#Jq!#=V4GSPGePRvdl?v*dtnWfHb~ym>SbWi=tY`5 zL0I3$C{?5jEe-8^85nGPkw=(7UE#1^28N(s630$8K@~s9?V#ctL^CjUFsjZ1*#xTi z%X%3YN_s){C@erE!HPg0?O?Py1X2geE#18g44oi#;K3A7AqX160-b54Ck_gvdh|d7 zr7_4*WIdx7D3BKQGBC^onPB#43j+gV6(cV*sG(&J9>1?*v;nDMFuMsVb4nR`nQinK z7$9<`j8Mk#sWsRBiS4d;Dj@$NDnqdU%;pbQp6af2ws|0z-R?(I5Gw^=$!=F z=E*1ul1|Cya7X}oZ4Qq<1A~$qs2%FbXaZ7tte1h|P%o?`^<;Ddm874085o{};t;%T z$(xZMbht-o9|MDbA8b#U4@9t|kAb1CkAcAe>>Xc5UXTTk`xqGRf&`sGi8CCM1o-+H z7lbeC)sop4ym^20Pz@XR<8D?@|^aeTEtDk|v ztsmMfc7m9m)6c+=)emj#&Q9ZSUOw@-qb{qQ{80tZe0QWAJr*SxNf(TG* zWOQX@-3d|$iuP&!3=C7i>Oc*URcRa!ydVNxNV+nzni@b0$<_S~3@iJgMfib!28Mkg z4yXvf(a*qe4a5NzlArn+7(VnfFzD`1gB0P~kRCEp5$+0ZW)(9q=OA| zA|L`>RJt+pG=l5~HA8qOFfedWU|>*($%2a?jR_143KO8kW!3}+hKvcIgslbgCM5ZS z_O^i%F}V2f2gQOlq`n2I17XHFpbk7FQ(H4SgEDpF1O|p$kU?$0X<=-oj)K2WAifzCo6oQT~u2wER9liGktlBnAd`m@GH|pG;z4 zcr*zbfIlZOFnpf`3KVdH*_q7YAOIpjB8)tYtgk?3ff5YgWYAH)pz;KiU_eTQK?FF# z@G!Eb89@__@?-`E#mUeFV=wF$~f;pQEtNB58gLu*)0&F)gBkLoW-K~=u7@9#gfNJzvlNlIhfH)w#H%(?>*Z|^y z>^?J@f#DR$?t4(XZ(!KX3%C0r+-^`O=4CR6gBpkcXDC5NR&iqn1~pJ8=G|llhBqJ^ zK%E$7(7BLPK!FA7NQk9yIGBM5aN}5%QK1o}2{e~3F@=FaYzhN|I!qSaIM$uQz@R;a zfkDeCg@ld-sF*iN;c##S5#UCVI3wpukWHZIbDF}y-~e_JsM@eh;c##R5m0rC7eVSk z)kgRf28K|uI#5str*Jrgfe3KZK%SA)-2@uVIa3%IvZg?zxp4{uLp_KC3hJ3t7#OC5 zIG~{3JcWT_;}ix4-J}#qG~1e>N3#MWgHCD+EP_Fer_vM-ha?aIniFT#WaOO;vK3S! zoSnkJa2ga|Fj+`~p2EQJUVy9nJ}_Zq&{>D#0}ziFM1adQ zQ%2cPkgXsebWCMnXq(EwpbnD-`(WWz28P*Fp+2}Ym4V>`*ay1*k|7D8)f5_P@F68Z zPy%IT1{D|JAteRST%)cKG{J1eP%nh0ehXN=ZwjP$a~`4|+V3f5V9@G<${?C#pwbjP z>H{jMz@t7w3@o6c(J~rTGMyI#6>}A-91e2eLi3ar1A`T~&OEORDl=bBWng$Zm4U%J zk%95NBS4Gcd$Y zXJAl=NrDr^r0EO{6Q)BG#Omn`3`?hjN@OjDG)ROYq6IYDWedvFy{Q}ytRMoMYp!rE z0oee`(l@3vFkAy^w*{48GgCPnct8ZW1iQ|81EdU8fW4j0!0;O6QBVQK1iAtegl$0u z*rHSp2O$svF2HWHI$A)Rv*I%t7({0M!R43U3mj$Kme^J_6YcDmZt~U|`q@4hfL5 zyQv%wnjiukdUxeHEumA^7iKUpoP#TSoyy^01R_9@#&}QB0H*Be3Xanlo zfe5g7U$d?PDFb=;*9-=RA0SVGDl-0=3=F(8p~+EgCIf>Chy(Jj!%PMSyO|6Oy1vll zxWE$KyRTv14S**{kj)8c91a2?0-O=v^Qu@uGeY!C28M8u`5>EXXEHEUgE*joo-&hx zVG@V~vU%N128J~toAaSIOIe}Y{2pX;2@8Wx5sJ+qo;ZjA+x&rd9?a%TGZ`4pfy@Wl z{ADHs!zU02WHa|H1_sVq(0L5iSqu!yvltk38=*E&!La!Q%;pxD&03&*fjP%`5xgo5 zRK$SG&?lfWkpW!BfeIgR8OO)K0xHQYe}T%lZQwG_AeqAfbiE90l|7O<96%=^bl5O3*e5YC?gEdsRL^2y zsGP;X08Wh{C0rl^TtDyTEU<dvECz-hAPy)jFV13MI1l20V)6AX28NfQu#AQ_gdSL<$Kq~KSQarb=)}R= zL0|`_CUZDQfe5ez_X-NyKpn_3n}LC8HUk5L11Op0By%_@fC#Vy_X~oD!=-04Fo@5F z=4IR23=GyF4#;sKvl$qIKpc?c@@6wI(9^X;l!F>*B!W~o{gHG87jWWc|VPJ@v1DbFrwOBSy<#3P( z5#UkyrJO-_(9)uK4g*8s9B5Q_%wb??193o6Ie!iV!(0#t6qP&YFfeSN!@!{H4lR~F z?9iifDJUvI#j+Plu?*s=fe3K1yo|RJWHYE(J~xMf;SA_PW^g)7O671c01@DVbOkRs zojsnz!0-^{1W+dUF^7TS8;ApP9RFMf2Hv^Q0!4E!1B3cp1_s??sNKp($3NB;o>2F4Mppo?MQD zQsHzko54vJ)UE6j0WAt+1~mmBy86sOx)_||K(g%+Sx{By3~s!&8-mg*L}j}-MCCG& z%0`GvQ1bvH+h_oh-2t+)OcvChV+PHHLuAVwK(Y|GRe;?CE*3%MEGsi;T`+^w6p*L# zAsQ1L7#N%{fCY>}*BdjqHh?U(0k7EsRjMG&I0sb5K=O}`4X77CdoBaR^tlWS3~qn7 zFfcG#h%lc88PvW5#L)(M+!=I*Et7>4Xv3y6TQNx7540Q8c?W1KzeOzQo*@Qz(D)U| z1`uYP^U;BU!2>kn$`}M*3k#m;b_b1vf#gA$aSo{X@Boc-Le+rhqv3aH@@ukrszOg@ z5ctpL2|8r~g!!Jcdd~jCzyQLWo@}0=(;7fn;2)dUKW+wwFWd|aLJXcKwlXk)u%H5` z7wkL;AqIwb>Y&YRPt)ONF8J((oVoA=bOA8~0|WatMg}IxU6{<^11&*k8nE0D2d$=K z2AzS)3O(r@B)|$i=^Ruwu|iHaXJzC_XJcRhpKi_yIo+J4l#PLb)n5{<19GA{E969T z7SO>9tj{FD7J&|4V0|G4QpEy2HvudT8kT2+oNmqvIX8g?dTs*fbaNKyxd|XP_}m1R zR7S94!B=SVfX+$)oo&sIbh zS=g8v7}#N_o3kRHZq5ohHvxRQIm<%Ou6^Xw%{h=xH|Ib)-JHV+Y$fD$a}FbJko}O; z%{h!jKpe>F<{U=SAP)F+a}Hdmn}fWBbZ!FZv~C{gxd|Z6kkidMtT;g&7Vt%y9M)hC zQu$*oV@)zuMa}K1_%{h=yH|GdvgZS$N=stVo)6F?>oo)^>7t879 z97v~|b0D8?&QT7r1a#N}=<;sZxe1^naiQlXz)v^lm<@?p@Yeb{U^e6cY!2kp%{h=y zH|Ib;-JD|qSdRqHy(UHm4lJjegU(F=of-{4Hv!~-2Jl6ipmP&ICz!K<*7h)Ppqy?F zIyV6%hd4I@qz`hsIq2L3&{@5Z)6GHWCV=E1r<;S$O#ty^z!zzP&P_m^Zq9*nx;aM| z^6BOrJ&a(FAkIwynF2Z89CU61$Uelm35e6pIZ#eF2c4S$Qi(V>0d!U|uKsntUbZ!F3?}&2~5T~1i&P@Q>06I6}68v;?4#er^9NWMrg)@K;#n=w^ z6ZmvtMLyk}<1o_c<{ZeUn{ymTI^CQD`E+v* ziS2f2rVj|J=L z=Ad&EKt(xd>k0$t+ypQOc5VWg13NbXRPge##3P@Z04h9K9!*o|Fr?c204m@f#ubD1_mBI3D6CjEahwr47>&+ zpxzw|=;l| zFa;`sgk(V{x-$iVt(65GBq1{>|%27#RrHs~M;f&E~!z}Jlm900R9L5BZEn9KYcWFY7u34w#sAaU?P5(0-H zY|udx0*ApG!Pkun909Yz(dod$zyJ&fn(AjaqvMB0++#x!Pkun zK#pz)UpFcMIl5gIbacDG9T|{=z}JlmyoazsN4E<=j&7F)9o;SfIl5gIbacA_ZWs6iVS|ot7x)i02Yht900Se013J200Qu;4foMh{P$vw0-Kanx zR2k^#c7c8<$5fhuL0|&(2y)PMqXNiBw+kR2-7bK9bh`lZ(d`1rN4EWj&29Vg`@zuxZ)Fl9^Ecrz$^n210N(IU?E+p<4(RB10pz3G z1$-gLmP><qjSAGWaD(b$@Iev+4G<3WAPIp+7G`76J#`?(oS8xl43(fW4j7p8grL`r z3N*9GfyBTENeChz-7d($3W=Nz5)2H2$VayevOr}(N4E?ScYO84V5w20`Sb+XY3SGN7Z|1(A<#7nFd?fR1h#L_WG*PzEBy%^}pu zSr0nM9CRAH&{Rkeflp%>ng!;tFtC75V;7pw94*YizydmrU07NSq=lP>S%Vc+qw#=F zV`tW24GeAybXI2sbad|-JSu-nxn@Et;*qK!z?GW&3?98fQ4&*d;W;O9{Vc2Qx z%<7UiL2XkW&?qmnhSYRnP=@DY0olg_I*o!^lNrQj1_c!4NOopJ4ja&Yyr3i5nGHEW z)-y23f{tWoHZ)KaVPH^vvx|X&u?2ja!*6?~TcAnx&x{=47A9zf6Fh}+Q-py* zxuB$of$=k=4yeg{U@im0p1BMRD&Vo=uZ+AP6_4jKFgyeaf*M|o-x$G-tsiq47{1MA zU;s6U8Rp3|Fq{CL-oOZ2ss%Zg!UweY9DL|G=xhLx>oq2Uob`?oG@lK20^=M`QRvc1 z5JQbIip9ZOMV^5{Lun^y4FIyrHKGg*nxH^te8eaRO5cn@Di=VWdcp{9ee%u&T^A2? z`BR9?)#foUsLW$v(7FS^zLbH1@dcy&BGBmwZ`Gh%Wwx9JA*w3Iz+h0+!oa|I zlTi=UT+N=xz>qwTfk6|zulpvWB}hGEFeHF)L!7yC9s|SDc}QU?BF4a=h7^`5(69t8 z*-+XH3Y#nF78imn2HSCkQ4?gx>3Iwc$LB$V7bFV{UNy#O)*=Ru|56MLO1D5}9YHtC zQ=Eap036mw7&Sp*{b3#h!yC9Kjxd^lEMN?VM8Gjf1PIM%VBnk2z@P%&t9~3JXg8mM z!2%=*PERKx-p!iNz>qN?Jyy;z%3FvtFlb}OO8tBWhT8eiSUCZUl_~QX7$(gJhdd}g z7?8tAqXHB;>yXn=kOVCKtYg#y`H3;e5PWLO21apE7mR7510+s1K^(bqJ_Ez@`Or8i zP-kG+2s%~)wkuo>lCZ&ve})PJ!)b^lQ!xXwOpQ7N!+o$!G}A-}NLB$E^$jc*1vyy& zAn zf}AqZ0UBzP)fpIGKwVh`3K&KMHO3f5A4vHC3N}z0F9FGb&rjfE0U4*{0Ls-9(Tl1W zNm!bk$Y>05=hgWP3>W7!FhF8)GCUT+ZUF@l$Z&YzFeq_=jBQ0X_7>dORz@R`vA^as zFnpWOz+haITEf8C4k_&97cekLFMt&;9gvW5Sirzww*cx_kZ&%44%TOkLL>rkX)zDv zAf;8H1X+o0dxR9sQv-6V2FgfR)ol;Ol6rC-ZJ28KG2 zYr#P$4hg!Q3mF*Jg9M#HDkUKP;$FnS@OvQxg9&J%T%R0hX^DcWgT2a2P(HJPm{zuk zfuU#-XtfY1C3`|NPFuvlFl7+~gJ}j21H&vCP-y`&R*O-1vK#}$+C>ZuD;F^^s4i6C zZ~#@(xuBCBz#+q+zD0qz&iDG5uQE{+W1KnPt$EXInjR0i38tBZED=MHX5sdg1 zIUINy7#Kho${80iFgh~wg97F3A_j)jix?Qx#T7Xm4uK5=T~49~y}H9lLy^M)bP!9q zECYkeMUcz983jNA_i7OX!vm1Z3>7&XKurY>&_M-^(V(+07*uVbf-(?6(4j@DzKRg% z`hdldog9khWC2wNdj{2LMGl8^>I@8N5cN!D;KWeGz@VO>$l)+k4qn4Dn2D$}Fmx$! zI0%9W@WKR5MvnQi3=HO~>I@9Jiy0WS7c($0n1Nam*A+M%)IkL3#&bp+MwPE1b)ZVi zX)yzX!(s*o9hfY*NfEx7fgyA;wDM|zRbDxZ85puaW->6S<|sf?EkD#r@NA@7tpIVT zGE@e1S;$UkOqwH!oq@(A_<#mb;SY~ZbF`oV$ELb6G@pQS1Kc*q)dirm2OdolWMBqm z0X~+kpmVkTBpDeP85spM6gV8r!Fd^Um;t2e$jGP$N(!xu85rsp!^%j0NMhfzn1Nx# zVraUaDGy55CaMnhMpgwZ#k!mp}mnjubrw4hL2c0aDAz z&d6yZ4~>)`iy0Wcfz+wGLIcDDbRq(z&7>Lz4Uh_m7*g^UfCLE05#Z!K1(dwiV-+|Y zZo*S910*Ow&IJbr9|JSUw-)O`nenR>s7bs;j>7?TrWE6x&+-fmmf$AzS5r_h@GoIt z;9kPOU{%1t_#NEnH(A2KV6cRN!5Ul&`~Wwp!B@7I<;BxYzHAsvx*fOs)mx1x22Z%R)2?Im_5(Wl4#qS{F z9`k}mvY97tsJAL&V0;QLIWI0@U^u;mfx&(Q4+Db(xN-Mf2o$%V3W5Pt6@XF$xNHPh z#tb&|K}MZJbD5?h%)93dLEinpgn{8V+->J}SB;b_L-!P_2RPwjCh1?M8FkMnwh&M{pSJ28Y{(r3?%`OFW-ygcjPE?IDn3D zW1Q2a1Pi03MxZcKT*km4y9^e8OTq473^wXeamQ0!D$%- zgX&a84hN9ebwQ^cfYUXoaRth*G0a>H5)7)#p$h!4DiC2%KL%9*aW1lM0R{&37M!vY z3=B4UpbXy!_Sh474hPWY9>zJg%CG?LGXe!>=`sd}!etB$Mt|fv!1bT1GQ=yB!CslO zjDcYq$Sds767CbSOCg>RgG%u#!^&fDEyN(gpsom&f;*p?ivi^DAM%j$5?Ne=fx+n~ zD0{YnN(yjBVw?ktDqAK{N@>#pIhQer!3J~-3!@|0Ul#Hl(3O0k1`H(OID#7{r z99_o1;0Vqpj+UTo@@p9b!?$H1?}6Hd&ft`yu$+NGVmSkYy#fydgSC+iBLibBAE+G= zwVZ(=Y&ipiPKrEaX(=S{#|whWj_TzM43*0n7@R@XNrOCx19+QHx|o>?toH*G1Xm!F zmNPK)Er(Vh7O)Cr%W?*W4a>nEbumz9U|1~A;lKhSz|~i#X{-tZgSn$R1H+Z&3=Ee* z3RSntb2vOzXJ9A<9e2P8zVb+Qk35Hiyeb1jD?&{D1XLX;!GN|6GBDVHE{;4;lp1;qZmoPpu_as~!laHv^=8|jR}t{`8EsPQ>~?uBEtR)O^I zU;hOQM143;^mc?^u|&Y+mzxPpOU?Ft44YZ*|pQIr2HCj-N^6$}iQ zKw^?T3=E7~V6opT7#O~;fL2%6)j-vii>iaY^&^nQ27I7&V7!un!Ehx5gY{C7Q6~JL zW|qfF1_rm43=H6yI48&9zy>Bj^`tiIb5&?e#I9suh+fG6RrW%T!+{q>fFn$Yl}`<- ztY{?zLjg#cDo7U8K(hrMk$_aKGjV8x+h`!Cfh(~mpxc^M8Ra1jq#O+8I;hHhKy{v~ zC{+1u4CT70$_qfs)it5Y!JSKJ`+|u>4^?RkNGYWD1ce^B_7rDe21SvZ?=A)gW-}#F z7&3zzT<)Nx!)#^?N;(dKAW3U*0DCxqG7_^5I3qDIxXs!cqQ&;U;tsh$sAr^b}}%4Fkd@| z7wGCG5Ejv7^WxmazyQL0cI@7;m3`a{Uh{V_Fn}J{IW0KF}GcERcnLtfg!W42=Gg zU>%T!eJqfLeXO7bd`#TDAahwk3;39L1VKj`us{~@v4R%xG3)Swb^x;;0Ns961ZKk* z@PSNZXJKB(d>gcY3$%cbc?Az>O*BUnD+2@bN@0*V11HEWuNfE^xIpSb3;389bMnJ3 zK4M#_=c=(l7x01D zte^#atYVUyj0_C?R~Z->Bv|!1R)DMlU7x{fC=6nQFFs;50$T}Lz{hID4YD7yfREKk z1jKfyAPe|d?Z6z!0zOuIFbA@LkJSOp zfh^!-bp&(Z3;0;QINCsN09|~<>dggWLoPmI_2C3@AQvC8`f-7L0KNE#H4w}LU3{d@ z$iOfSbfFU{s$dKFSVK8(fXoDkW0(+#4Y~M;HJlCPNfw?H3=9mc5uEox%L{pwnHd;Z zBNe_fF)(y6@Uei5<9x@&zyQMFBp}bg$MS`VfkBv$1r%P8i;q}KIY1hDKo=jemI;E` zkc*F4%ORF9@Uegr5l`o}vc`*b zE+^=$ULKwuAji!EbNIk_ja2>kOh3KlNg0hbAXPf23>r_I+;=6A_oJ5jp!Uk z1_stC5S5Sxe5}(MxgT*bFhCaYvCd``1|tQZX!dKwwG-qUBJt_-Y8V$Mli1oPa zG&b19N35rKcd;=*FFs;D%?Y|*$Uq>zG>L)r9M~Sn#Ye2?!ET0Je8hSIY$;>`AM0g7 z&_zNnJe}+e46IiKU$HSTxC_MRBr&jF2OHqQV|t%~f%O(x4`cx!>uoO3rd`OzN34%{ zq~RAIu|DAgm7r;A4$o$KRP2Cboq>;K7YAsL&xajEg6c;pP>BIcCojN~*TLimb_NFN zU!ZKTlu-#(l!F)Wu`YvhKnwU-mqR(A1$?Yr%wRiM%h?zh*bGFX85kI3K+Ch(r%8jx zlsQ2OJ%AIMs@NH19`Z3Tuy5sa08OcamS?eVgRmL685r1iK-i$=S?oI@Y|!#7_WfY9 zWSV3d7}yVh*_4tRMMI|Czx16rQN&cq1TEv*BxEt*kCg@J(qygZA&52_5bJd3>_$^k9U zVxPb$1M)5So*(v!P!8yxANI*m(M*wK2Yc^g>b;h(jK(n50oqU z8JP8X7#O5M%d^;5FiC?Xz{|7PS3x+Opv061Q!dZI90yVkTAszemPrOA0bZWPz5&7k zn?4t&oQr|E7o;4tJd1rZlQc+z6OjA-^L^ak^nEyVn4|QNi?A4 zS?s5v98eFA{Sw3@(xBy8?3baOaxn%5_J>dosF}e22+Hy1Wnf@`4CR3CTxNd)<%ol1 zoULCX^G!&%nU0 z1?7lKF)*-eLpi!2hw4B$;Ltk8%fKMZz`PrDf06DK+Ch(EukFH@+@{M zC4%_TaEEeyBpDdkJ((e; z1Za5{yBCxLTAs!316B50l!1ZW7s>%G&tjhj`R~=(DE$yWl&}1pj5UT%83N!#1&9ZJ}AYkgmQL*T)hg)3Fl#8U|$X4 zh13=GU5#hhXS3=C=l z;PfR8TK*RTDx{iOGQFUiaaf=-pygQ{ z>`<8r!VC-?98ek1@+=N+s7$vA0|N&SR0gzehl3v~Qv~vi08|FFJc~mZDzi+Cfq_E= zDg#=c#UT!rsT5~m;E;gIfR<-*NJC{(Bp4VtWFRs!W=sqWoaua^CM&qwR1t*M>FNy3 zB7zJIGN483Tzyg?aXGa;3=G`jQlP?!mAQrCw>`rGWzf#aN4fBElok6R<0u-?J8!mq zWMp6h?UrP_Ar88n9I|~9I;a8?fDNjE7Im^hw^)L;mtCeXkO=W1q}_120@g(jbli=*DR-TstR00Sp^>;WFod z@0{eabCL_!&Pj;5SawcwA?=*xLf$#aRSvO)fsX~0kRSsuTr)X9n`%HiC%I-JHrH{@ zhQusr;Du`rm<{QhbIs)hT|5Knn{&+rb0B?lF65n)TnoT@AboQ#EITK;N*Fmn8+gD2 zFI*LjVC9g37p_`HZqP0+$j(VFl%11YwTyBgImo~ZS3M&KDBK_eFIP3uWgd7s}2_t{#X!$iNF%KZFMvc;T7=u@5rv!ZnFe z7_oDb3uWgd*A$3K$iNHNbVhE(&PlG>jKZAE3=EKg7p^&sLWrG{TqrvyxfVde1v2o$ zwUAL9v2&7Z5yS@2zzbsMBo|`mBp1@oNv`eS&;}2@aP0uIp^>{29G}q0-38`ABX_r; z4rqLi2Q;e2wFj&R8o9_jC%KS!PI4jdoa92@Imv~*bCL^r=Oh>M&Pguhos(P_z?MP= zUbv8VPI4jdoa92@ImvYktOqji!iBtZk_&m~Bp33|Nv@~hav+649F(%K?VJRO!*))B z*x;>_ptKC0zk=+X1c{Tda}uf?ymJ!7#=dhBlxw9y;}@X3&&0q9;%meB(4CW9C_5*) zlo>hTJ14nNc207sLDDj0;Dt*alD0qtFX%fbx$GG^K-(k1J14mu7==I_$iNGiBZLPT zc;Rwl6av+-)5J&J;MPI95_oa9Pl?=}b1HuN4(D3erut6gG(y8W8_EHV z(D2TIazGB$^nhg@GgLIKqEA~i=Z6P2o3LIMsTo!M`(DL zLcI+dq2XN)<$y+LcvnC>Jq6`}Mre31K|BH;q2av@<$y+LcppMJpb;A0 zM^FxEgogJqlmi-};e7(-fJSI|pF%mH5gOiSP!4E>hL?|75adMg2o0|Ulmi-};gyDR zKqEA~8qAOo2aVA1YC<`n5gJ}CCbMDfJSI|bs!vYXesb9Fvu}5i-L9V&D-PUPCAcG(y8`1m%E6Xn2jG9MA|2uL+a`8lmAeg>pb6G`wa|4rqji*Br_L zjnME~Kslfh8eU5%2Q)&%YX#+iMre4gp&ZZ%4X+K90~(>>wS{s(BQ(5rP|gi$1_oX? zi2uMNG`#Lm4rqji*OM7iN`OXac)g$;&2+COo^66rz7eFI4yi1@Q&}p2o3LYC~52t!Lo|)o2W$5gOhG2nRYs!`sNhY$d?J zzzkB%Ss=i`&>#R#U!|}S8s26WIgl85gof`w3ncY|MrimLSRs)E8lmB1W`)RrMrin0 zpfYAs3=DkiP#Mq&4Ic+o1~fv$#|@PMjnMG%KxIH9G<^I}8PEs~p8!+_G(y8C43zsWk4e|eBw|U&v>=@X0`AxC{8x8P5nYFz}?aGBWUIFoH%Y z7z7HE8Td27Y!-onVg~*!Fq=al(SU(J8_ebrNHk>N&jGUq1QLxH_;bN*5rITw2L3!S zTS6ewgn>UF%$5;IG-co~0J9YY63rO+3&Cs^fkbl#{vt42Lm<(Dfxj5c))7dwWZ*9W zvke3i4GkFhOTioyfkZ#O&Itq!5kNX zL_<>s{wgrXL!daZh=IQv%<8+-+b0w^)7(F))BD40Q%(kQ8`uOrTE+B+ewdkAXq(q=>XI1A{D=Fvti+ zVFm{9*pY!S1A_#p&}HBh6J}s=5QZAV&L9htl6eZ!dP)%_E~B-dfk9{%xQJ$&xsQQC z*jM0&5Ca2~+W`g!=2EFtP6h_qOkoBFrqJ0849sPa@h#AKkIdx?AS<{zm^(SQ!8Tkn zPlaSD@Pa@+{2j898qYGcbq-fvnibC;{St++Qlpz`(YC zF9QSf0Y>IS!VC=j+4~q6ctoZPD1){^dhKIi5Shsl!N|bC!1G`~1A_?Ee4c^>3=AT( z!Ip6_Fuwx_2FT5PETDv}z|I14sI)R)I%v=2bkG7t#V&pZ21dmjpo1Y4xg;1Em=%Mh z7#LU-Cx|jIurhFhG?a@#gN>0vX^{#817kB6$N*O6EtIgD`_lt_!@qr{*cwX`_Fo@c7y%YhhNU7mxU=Vcxa|9VUK_wAL z930D zzmkFB^hyQ>wa*~6OBneCj^Ee!s!34;JC5+O`#TXd0VFEhy zl^7UQS1~ZiuVP@(T?13kz`&rhR*8WjU=;&{-zu=D_4b2yCe7n;;1%FwU|?Lz$P_Qm zz@UFdnt>sG6$3-^Dh37vX3!R$c^nS>YV$ZiTW=Uxikb8UWEdEFRxvPitYTo$hDqqi z$S^Q$T*bh!b`=AIq3t{lhZ9N+42I(1FkxlBqUvC;0lKSwt_EmF&jd9PHn8 z!D>hx+>{0#)XCw%`+%2$fpG$(z#d5k2K{f+3=F?lGcbHz&A_1lN*ZJc1B3b+1_lFP z8HjrRrnwvrpkv%wQaJUqWEdFY*Dx?du3=!%2ikOvXmpml0t%%UK-Rw^+t_^)GN@Lk8ipby$UkhzY5AsxhtS7KmjUdO=D zxDK>m>7Wb)!w+5t1_Mb32AxAP3=A{YF)&O6Ng1A;3rQ{UlIW==6PyJ0z*5T!&}J&b zFHq%u7|OFyl`DW!j5;UQ#FdSzGytR&l(=MJiA!ZYC|Pwdvi+FD;Q(6q$v6j;Va#(u znY9CwSs8;M*|ZaqZZ@xDU|78lnnZrj;c#FE6QCs0$tVrl6R8ao04I_6>lhfGuLH%d z5(5KV29!ip*E29EuSX=2e{(n-cu#lLqzy|VY3msnQb5WDxv`#s;Sz`gN+P@) z7#P?$Ffdqvl87ZJX+Y8h`&Z=As|^>P_e=i8v-g-7_0*KGBB_s)P98>Q#dQtl4Jk9tH+hZAP%27vQF8 zYk^Dy+sUeJ3^L83D7Bb@)d1YUfY@RPw#82D00RT7p#(^c-93~=X;9q>I{ltOgE5Ag zE16M)F&4Tr9jx&UsMzPsV}zIp4ksZ7W{@?;p9&cm7-Ja4s)QLB{wQ)dfRC-71G34< zM2UgnzaobN6Nmuq$zhCRRM3WTbX=7f7}_^5FtmcwBm;x-+*}3*Mn6U#kVyyTa5#Xk zoSxGw2dgClAh~_c1_p*%8yFaz!JD%K8F@kKH*R2HSib>U1RS2j;lKhSKt5s&V&n;w zV_?vR34n`$V;dM4j%E#1Qndv&jm#L6H02o>7=ukzKozSQW2FXY zLDfbE2Ih?n3?_|x7#JAM7$<|$lHNuJ291s2ORPYxWoD3>DpjC{jt(Q+3b+GPK~^b& z%+_I41BEJMkotx>91g6?;FJQ|fy-cQ3(_VHiKUJ?u=qYJ4~r04NQA^~WMGKd$iQGY zaSn%rpfUr)3eb@rj8TlH3`SGta5%^+GcXv#a5(sb z%+H;};SddCfK;Y~EOLnhc^I^I6qFA@4N}*;ATQ450|n=u*&Gg_+b0?4lqxbXxLp9t z7=dK^HZm}@ZDe3@GXv?L?H?=5z;JFO1H%cB7$;aP7Tk2*#K7%WMt@&?zg7b3j=K5;VQKpr8RAbttr%fx!zLG`-f~pb7SPU&6q^ zI1xM-3%W1Pd@}=s_nz4t4opQ1w-h0%u9$(r@Zf9?hdN~jhPMzgMgs<;W3xFNx|JCi z46o1TaG0*lz@UZP4`7Y~H+*AQnKQtQI98}gJSY_#-I~qe04~#P4hMpE4=I5>!3=6^ zIb^0VFkR#W@fmzhh=WFX7)6-dl^7U&K|K)WWJU`x$0>`EfjODc9i-5&IJE@Ci2}t3 z10PE*Cj*23*)RqMW_Lz#SDP8sM+x}R%*ep(!N?8jSvUsNW-x$w!XO?4L!fpc0|N+) zd2k1U_7Q=wxF%a*d@KV42urLK3IrW44#EP@Spz|bi-Rz?CtDB;sN&quz`%T&kuA_D zkbwb&B{kRr-{&zffUwkGwxEc83=AMFV#UD|cqM>=0feRgvjr^*U|;}Y=4p&Ig%#cMqEMPWdXA}!)Dh9fUhXpjX z!t}eAfq_+195i#qjI^MKRa*iy0M88BJ;efMBQ5A*^_K*j3R%#@4B0&eUc|%3%?mac zw1|g|M{pr%mlS086nGI2yAJq7d?wH$9`+(I8@z}Ibo@EUMDX$F>`2F--vI5T0_~n+ zUnvX{X8=zOh=aBofz&fYjz6~sZEN}nItP9!JIH#-A|CcttWQBZ!5F}cc-U7ngS3Gc z@vyI#UdzD1z{|oC3|iU`+d>6ey~7My$-@F-gIDr!Ag|=Xa|SxdUdT!w4kK<52eOif z!$<_gfvn`=Fan=A30}#A^9*#5zhEnQIFMHIa9Dzm352ZV;jjX8AS-z|tic?}N*)dy zFbA@dhr<@kfvn`=umf`-D|tBV!5qj+9u5aE2eOif!x7AZujHZd40KQkgO+4)f&2wq z$%F33xve*Ot40MoPki{PGGtgN;yS7B?&M+{1z&HaP zq#Ux6hqN=$LHZyoc`(mF2gyNJ@_^1j2k{^)c}P109i$Jkl82+85gZhdl{`cF40Mp6 zAd$NR>?3I8?gYmtG;()=Inc;OUdh9;2doDgxyUPdI1Y1x5bAifV$QCM&M?CKEEmRy&_&`M|WD6C?Q*b$u!XOUPide}5@|Of?*@FZ~ z9JZ1N#0CxEf)__ffYpGxAaUqQ9u|-QAIm(@_NX%q3=FS9JFW~_85khSK|(Mi!7F({ zS`jOGKt?j~v3vw=p#s%M;FUa}yw3!w6TmBZKz!&*9+J*L2U!JK$-{wXB@anwpo6Mf z$Vwg#S4Ndtkd-_jLGVf*kV9cxs5p>U@^GN6ghk7z4G=Ku_UhU|<1loR^V>F1H3HZ>GPs3=CW%;N<|| z6+T=N!Wp3U1gI&?1X||9Wgr4N+a7!@Hup4X3(%?_P%_;HTGa#bn=EMG757%YWuR#x z(5fEpZ4fqSRS)+L2phDjhkGZ44O-R1y&r5A_*iW217J2M$Z$T;f*gpsEdM|Tf>!l# zACv}(gOA1LJ_KQdR`qZn25ST#i_Lum%m&Yq1tS^a%mqCboBNnFNF01DHuq()V(_up z+}C8PK?|8ct9rO^K-i#FJ=}L>Kn?;Qi_QHW!UnDC;r;+o16tL?{R6@Vt?J?a31Nd) z^>F`|bpe?P+IPkM2f_xe>f!zmHV3?_hns;B!U3)7;bvk4>jtmt;f`h$3V`jq;_ibg z1Fh=e?uT+ft9rPRSM_isuj=8R3^fh3s)u_DlmlAT!#x$s0j=uco(AQBR`qaChjKux zdbnpmIiOWN+%usZ(5fEpSx^pWRS)-UCP2jzfP^>ELJ zazLwkxEDY8Dv>fuIS)x*7z2@>$2RXyB`p&Zbv9`207x98OSTx&l)!&%km7q#U%WhkGrP3`hdJs)u_6gabC68MI~x zWI7iE%V&^s(5fEp%}mlD2~JQ_P=%>rW?&J8t?J?4#v}xi0I%xdKFI`0G@w;I+^3)% z(5fEpOAwEMSM_jThH^lwdbl4#IiOWN+>f9f(5fEp$50MvRS)+QC`X)^fr0xelmlAT z!~G1(i4tUB;O1i%1bG6ys)t(w$^otF;g*JSK&yJVHJBkG4qDa2tqJ9TR`qaeK{=pR zJ>1$*4ro;mw+@5@4lNz7&x>fxRS<$zZ8a8HMFK&yJVXFxfiRXyA@p&Zbv9`0FC4ro;m_iQK! zw5o@DE|ddW)x$jx$^otF;hqoWfL8TzFMx7Dt9rN>LOGySJ=}|+9MGyB?!{0qfL8Tz zFM)DEt9rPXL6w14^>8nTazLwkxK}_qpjAEGE1?|FsvhoDP!4ES5BF*a2ePV%yOu>D zAG)fCyPk!+4>Z>eTGhkd0O3Ga^>8<`FuMsbFtC6WbJhqjF!X>|^{_O;R`qZb`LYQS6s2~6>|9CCPz`z4KZ<~24BD1r=P;JJT*fq`$Q7D$4H$L1IV1K%z%hlA(iQ3eLS z-JGDd2oDbzh_go)#1UZNWBCqp>%Bt^41D{gL2Q2G!wd{Od`CIJQ3JN%1hNGu!Dd1& zI0fc#FfiQ$8E{4+LWqHZ-}(^9h1Uemffhl{1=)5}3FLPMo}VC9x0FE=EIbcDGPeam z)_|7D`+yeBtObePWu6H#=Jx>x1`hr{0S?gGn2kpm82Bgff&!L-=j9;=2L6e>AYZdE zFlioUVBnv``~akX4(Ljc2mz4aSVTaJZd#8rFbKqh1(^7bF)#?Ef!XXVjJ-_ppq+hN z4l*z>_H%>TjE6z<-27m-LdIFo0H#OgqZJz}U$JQp>F!d%wgf# z0+Q(lb2tP_85k$B*n(WmGvyEi1LI`QD?*_4D(=S^7#OF3IVwEGARW`h*9bB&Sn${% zXJBBQ&IhvChNlbUiWy*z15X)7zK?M^KPa_$Fz~UYf;^}T(z=ov%>D#Y zyjFlsgn@xYNQ8kwApm6kKTZ))un8>WaOeilu`Cf~U{Dl>NV%;NWnc){%)sEYnSnvk z66C0VoC&i985qhoGce?BW?)bPJAr|Vd%Y+F!=}v)3>!d#`#~xhxxf(unu0sJnSntW zG@Et`wEl;Ai@Jloita)VhmV#F3>QTh7*s*4Cp6R@>{S_~S(#s`ffzB&TpV1gph+~4 zat1Yng&YolEg2Y8EEaM&a9S}iyn|>2oj$7)0yRud6sKW4$cBZ(3`pi;b$!$HZ4fgv6$#$l?;7{h3w$`}hG;y^>MDm4o^92}$>80w*FN*GibqnRcK zs6vixRq0sB;h=BDz%Usmufm`{b0LR=jTP8|AV)LsvB-hq0u61tNHk5EM?} zAuuThmR+I@3>s;m^z@Na(oh&O#{wc5=V*&DFeo~M;`Jk^n<{7n@D>IJ<}C~in&24t z3{lTCF#vozj^|H$XpO+oHGY*_7hHfkl8w07#K9RFfeFs z0wt;^oY98_L33vitDZr$!>rO)!LW*{m;oGu3=A6oK}r1pCpdY4ECXT2IR@ek42mm3 z3GV=>CCHzVTNoI8x4?XOfHM~4iY;3h7}jiIU{C`4@DRk1Pg@um-hl*HfV3ax6xs?} zOSP4OL1-%j189FM11Q1Bi$fe$3@V~Q$4)}y0<_XVLk{Gr`4Hnk?g3%OIV<6An$Kwh za#QVA28P0|3=CS}P@m5k0df;#FvK+rA=|$vvb(H;%>Yi4U|`S^fe4#|%0b2;NSx+#dVoqz#$bpg zg^+O6-^RcIx*}I4U=<|erAt680_By2RU8f;RtyY{P_ZHvP(A>KaOx^VY6pAt6(|Y6 zWaj}DHy}@fFyov^Nd^W*uw!1bn}8hSwvB(OKuVTON!UC+IM_iYi#F(HS?ndtJ9co%0&)TaXts?3T(W?;poHQ9(Fn@u;EV%{ zFHk}OXHSr2;Or^Ezyk7sf+Hw2udoY){05qg(E=BxH$Z*^yZ8#b4k&Lg-NwMM5abPT z;=Km(+lg%q49B)HFsS$}fQ0XHB|oaAr-Z6RZv^9$rRa44>3*9C>5-F5~BE08z9 zp|}>}x5VuX4DlfU>BNDGvl;BXa~5(qfPBF?2UJjNflZjfZVXB}j6qu0K=aEp*gZoT zL4}z5zJ(kPp-AO{!W&TD^Mkl0X90)9B5;h}m4;Q0e(dHTlPb3}FqCd*U{E{(GS83Q z2Q)CWY&!$PERf&V3@W8 z8p|ueD|cK#wXnu2NG%*LgEN*nA+Zcn&Y-5Z3R(-Btb$aWB@m6EIbjv+RU8hvRtyXs zP%#bz26cy391fMxfCU|c3eG!;)M4(LIqkuCLEW#O> zAdRiKH7>@haUX7tOK@rgRmry@8o}*zkS9QG_V-Y+B4`^AB*qMF;}%23TCEruWT9dl zMxX+;3@QVvR?ML?;3g9&OM~+e$Q*CD3?#TfV)0NhWV0)wVi2=oE&*knUZ@PL(KiuV z2!f7?1s8&#*ac@MK?W93Qqy<_szUrB$;e|Rhr@AjmBXz9ONIVy2B1{x zir^~DpUoAN3X66#Fl6m!V9;s=wX*!#k_16pDncMhGZ13thTRMdYj(quW)LK4Ufj*V za2_NGPKCjcRQO{z1H+Tu&{U|V0!oD;>JIkcRM@zZ!$ANE}+C9)z2$un+!YO+g7$)rjMIeJp!b(Wha|yKUAA6P#g`^3P-3)5UE1^|S9aJN? zGS1{1hO80f0&x4TXCV&DxS_!GgY@lMGC|n2?3xJA&B7DtC4u`o`3=9QO zF%Dx;Vk!sqX~2nc^GXf}P?G9`$|I80$(4|<;5?X&0E5acs12K7Vhju_520empkg3f z-#~4B1{H(Y3NkwuY%2@2k^KuQU&_Fs&bx}k0hZXxz$+F(tx^_HIs&IVP<(>Zod^Sq zmOkb~Wnf6%%fO&@7nB$muvUWFKa8PDilAD15yYakdl?uO?`2@nlse16 zz_^%|8#Iu^G|@o`TtqHm1s9Q@_A)TM+Y4*3E@cH*?K1lq7zFmAB+eXA;#_LUz`(YG z!@(FtfY&tMX5~;(Wnj>Q3FvRLWMC-V$H0&e-gT!7(qX@X!@(IufOY&}ea|5EQ6Y$vTZpep9DZO zf>YY@<&gB91r-CO!Dw)id44%02i3u47*wu7#U??;Kxz5$a>%gCCa4&PAt(oxF{m=e zfpVhSx8)oT+d%GSUIEE4=b;LV1Q^u#S8zBS21!b-fY|m1Cdt5{q6`%SwOXL<7ZrmQ z5Ze^g!JcP=*aph4VB1t|p_Z6H<%?7p)I4C8_^yETx&on+pq_3t)RI)F7^t8~f{Il_ z#X#Q7hgv)nDh9C_6kHICOQ2@2h024>ZeGFRaNdf6;UH9Oq633UH&oqKs2E7ygcXp8 zd5I)8V+Du99V-R~W(|l(Cpv(Fbz%U6%EA>K4qK!c7{sA6MGOpTYgceMyaa{gwiO%> z->euIOkk2K3@V^B463?3pkgHq3~EPUVR9Dgo>YXS%2lXXC6d@JXqfau#X#Zo5GuA1 zDh3)Kcn1w9P=uj{5ranZ3j^^&mT&tR7_RMy7A&CJnU%Q( zRIq^BUK^KjIPilAaIL4$Dm_D!fk6)@0Iu~wJ-}lJptT-c22|_aJ;1 zDGyF)f};ytw^|gEDM5BKs7+r6Ef3Z~H8N`9)F^?h5#$1Jt+!_xB+1B{y zWCRrhMbedJ91fu7k`Gjj!xlD}`DPi118CKIDpUrPn4=jD7*tr6Lvm^*OhSc0MGTtt zdtqV>3@QrCAx1BUiXn`4UJl7=yP-0m){@V1L!xpxf$S9Asd4a1fS6T38CfNhCxIJeb|WG8bAkfrk>> zAXcayVqj1LVQ>?^oduj?+z&A@xPk=1DW-!3ToqLvVql0m1WhrZK_OP=8L$*{bt#8~ zD2M>3n8hs8r?eRu^k4$u6ytN4fx+uAG{wMWKq)5iFatyUVMse^#!^U%`K66B;=5SD zH3-OV2DRBsp($o7RHLyDPL18j8h5}nUV>`O!L6|eStH2l;H36oDI}?NLNqdg+S;E$ z;b6tUFc&HYN^1X?ayT$sGcX*6igB1hlA0Que72JqA1+gge2m?dn5e5b&Ezp?P zDJE4=OK<5B28Q`ZU@fcDOz@T!IOU#U0;k+tM;I8+9f77?NLhCQlyX5$BK;*C4#pq? z+`#$H#F44Tz@P^c05@>-k1{am9tEXOa3jil35SCthyd&0V&u@>Bz~F?? z5w(QF!3#uyb%--_oCWEC34nD(9%Wz%N9Z`Qgu@{pM1XaaGPC{%>3|7tmoV8{XM zP)T15$u#=<;1qzZm_5e?&NLuzGpJ=PhGv=;sKyN38qXtZY=>!F2-Ua{x5f*|8kayd zsx4m(ZLjTzn(!F6373&gI0Q4{@?s7LerpB>l~+&`R1I+Y`UbKIZ=oird|eF5xK0p_ z;5ve938an)gNlJNuJ{s2tEvhrhCVe0%6tk-AlY^nR1JEz)mZ|mO}3!OmohM@SuBAz z@;sJ6^6y2M5)}ru5U8YD8kC`uy#$gkze81lT1Zt;F>XU}2!K6O5A}#VR1D;i9;ip` zp<-Z>^YQ)DXJ}^Y%@sGu|O2RUSdbn2ZqKeh&4v z7*q^&XX6*Bx514r(6lDP%M2REphnkPCIQeO!;?iE4r$JGPd|5i}D8 znlx`b%D|v?5;SVImMI=2$QZ2jf|G%PaXm!)s-p}H%Z@^e7tn|(EAtc3aPyxv^=B6f^{LFgC*gVIZo_ADmw9H!+l1_sk(&~St_FjzDk z>{WQ6Lm+%6U|(T#cMineAmt2dLeQ}jHHnpwqC(wbC5HpbEG;-pz{w#NJS(ih&A`BD z0CAhiQVs_%um^ceVIDMqcrfi4149(Z+517xHiD?%eT;!&CrA+N7h{NDZXaV{IFITV z1(08SpskHtxcy=Z@e4>fgIW-@nW7f46zZ3Pr5p~R)*vWVBgHRd#-4#e1GMghQILrP zwD9A=BG@!&H^?i_pb-i|CLK_kH#^S2pm!WL+91p%44UAnIL^RO0215>@}CG3c$v($ z;|vU-x?1JTB1rbHG6ly2s6VX!U=gHP0=Wh}Wv3~`z`*#H5uC4NmU1|VfkRTxjDbNh z2xRD6M#D}{28J8Q85pjBY!U`#w)c$SB^AGqGcf!-&cI-J3N&`|fl&mU*$i($c;+A; zgNpW2NE+ug1G|C|)UgIfC-j1Hb%UiG4j}tLP6AEB=*$D@Kg-DX15_S>ol|4Rz@P=T z`7EP0XqJI7NQHMPhl7kY14AUlT;`$^3=HZL=z$GRGcjN?78C#sI-5ZS!$L-0pG6!F zkeN^^a|Q;j^PsR^$OxX!W(?8-uVh)s7!L9SW3bkKh-?l>DPxEhIAj(wc7sBOF%;sm zg^UZqE(=phS;XOBYr(+q9pW-3&?rJQqalNO$s))w9muB~`kINW{z(w*3{vV_+}`ZEFQ#-si05v;QzKfH0>go4G1zHGw1p1M`12 zi_&8Z3?M8h&B$g^dW3-igoQj9*({D9Wnchd{$>sy^Ya`G3?R(>kIh2*5Ca1U^Jj9f zS;F?JiZWRE9b{ktVgBPBJm$WK85lrV@FSb~`q_*OAk3M_W^QqWfdPaCKe3sEw%~%W z@Jb=`;3EtSAT0Qq&BACd0|N;2@8;mKn0lCj0fhN~aIl+$_TYlBhz6Sl&k+U&5awUW z!Di8Ugn6n6bRhmK_)UbM1Mz>uZz3dgAU?=G#DVyXoUoe+K?mZqbHZ*S z1RaPEQi(VaUxE{M6Cvn8d{9C_9EcB!XCG0}eQ=-y@onKZ5rPiH2l*XwAifGG0|VqH zLePQuAR9mj;$LTGV1V32$hDQD9(ofY*ES(UXW%yxa-HJ+0KbWl>og}9I|BpcCPJ=rf*^ZL1ma5z7`V=Z-3+;j5dA=W z0d@uk$W4S?R|FNk$2BZ}fAP6-Kd@SEU z+h{=t;DdY$&il{<@eM$k0#wF8x6y(Q#J7RpL^kf%u@J9DX1^m;*ZyAIyOrh!0AvumkZy0R`SJ3q25@ISX_MK4`lv z>{R?}P6h^M5P|n-{GFW8(?p?{7xHf9TM0VJ9<+&;cN>Ha+CEH*+JpAb@E()~iNlV@2eVx`7#Oe}jenetfgudZ5I2w^(4+A| z;=}7`e2{O!mluML#s_mimluv6jnBYFEf{w-qb3m6D5_vTK3ec`tP_pD_ zV4eZm<_g+G3pyGfBmv$;3pyGf!~vgxa~-B!o`Lx|NI7T|E$C=`kOX)WE$C=`5C?qN zI~!<=EXZ^&24;{-Y0xHG(9!rH3GmVQ8ZZ^i49pU+O|+n+@j(*cO|&EDXncJ>@NvN^ zuuZg}qwzsv;7zokqw&EU&?Z{Y(fD8vXcH~yXnZgSw22mUG(MOE+C&RF8XwF7ZKCBh zW0nDPK$~bmN8^JzpiQ)(qw&EU&?Z{Y(fD8vXcH~yXnZgSw22mUG(MOET5bkeYc=^kbMIZ1rgk!&9`cxZK}}Cw;*W-*ydXh2eJ8mUxO zv9w!|fdPK@x{(m{KA$|;0raqqyMkLe_JZsK?W+~sp$KvWWaF;jPA!lGWM8e|E-(kO zaaV9R_-Y`?#$CZZvYv8+Qeda;3U{g zs0F9M9O%Yf!7~cyK|5~28+Qe-3Alm`0BzhAyr~2VJjljf!CT582^R3iUBTOeAZtL) z`NJT0fHv+5-endLW?*3U2JK5#aRYD8L8i3(W>|I2f1~fm}O>Sr~N2JV+xy&jkhs z6`_R!hd`#7on>GUS}eF&5OnN*%Si?Xp(UcAbkD*AI(}4WDZ~^W(3y`ykYgx$c-~%S zU=Ui)2MT-vo&^^f7=%{vgA5bl0Uc{9v{LYd2m^xz10M@0A8>-~ya79GpMint1IUt9 z%#k4XfW-Mfonm0%5jr9O+C0ni9Ax$}eo)LX@PH2M6gmzzn}z2+DDX~zIUEd3A1*L3 z2%TaE9q!9kb((=eXgaHqxhN>D+ln$UNcoB~Fo63D;GQc3w}`L}XE*4)e9-Cr!nT5- zUMb}CeqlR4kOT|(^nPJ`uGylXQ5?|e{lX4ljvxakC|E(_;Jyp$>HWfv%pkj%7l|@3 zaIO<&VAu!R`pLiyvIl&6zp#rcNJs{>y;K->dcUwIC+LKHo(?TW24Qc$iJ%h=cs@xn zFbE@`-Y<-NdcUwASQ+&6eqn#++o03?L8fr3iZL*lih)}JT4D?gGN9A@g#(p9Lg3T; zg@eGS_d^poV>4qhXm9PT^Psdk;SwmVt~trTz{J4x43y&AnS;a_7-T_e1RtJfU`SzP zTqMvd&H#xH#w8NqLWKu>4DNElKp_SO79O3;pp*XjL79z%N9O_q1LJBiM+Tf$7}p4Z z(ux7kU(h_wT0u}+G2sCp9J-DRWU>X1+9}ZFJwGS|cz|P?aT8dX56>x(o^4 z_X;uroC5e6IJHC>7}knI`+N)xO!Gi)dCA-&#=yX|4iuzs1whiwJH;6oIG>6$Fx-ME zW@L~(B@RlbASv1VpaT~`gwk)23ICKp>R6czbbi}&f=Vhu38)<^m1?Ug@)43c5gg&6b(By0TN0FxmymV>Iq0_IcVpJJfqGTu&M_jp@pE-r2tcP2jl{fENCeVI6@g2 zWI<=0Cx9HdH_Q3aHyS((p(grbqfgPJ2Kt$Y^F3b<|2WaDbCIjPlVQCO=$w>x=Stl77 zK<9Te^h+}^Y?oqS&}58aDq_$CA2Xl{K4w6ZF_yoC!APZqLCHvk8I&NE5L&Kd)q;=* zohO57Btl+Gny{6iM2KW%FfJ{Sw8;Qk3jp>GroEb=gC0Oh6O=PS6%jKiZ24F~p~2iD z&A^}?0*a^m!qDSuL7|@yy5a*I`uBycLCP6})WBhSUpN+|g)tZs4flo1!O;++rVEP2 z`@%h-EXNqC^9&Tv4~4lv`Txa91_lsc=QgO|c_=If68w9Tf#LT_1_oVNlN?r@If|O{SVqgFjuMqEp9F6dPF#{+jLA!Lc|A3On z8D#$*0BxfM`|pgf5y*e`rx+NlL8gIyc}6${;!9Ofoy~YgI2q*Rlv4~02_OgQO#l@{ zy~6A;w=>Ss0_}l(2y%U|unwpQ=sm^2(0Yo2K^44ftXJ3_q~i1`28QFO7#MWG#`Z&k z=gTPuhBqL=eV}NVAj}V{o{Ua2FzB6TV9*C0?cpE~DsVuS8I)9jD9~l<5SoE;xv+c= z?Bslqm{Ds514Gbh28MvsATC^o1c(R1j2nb?=3(eaKh409imF2aq#A@7Hw$xKz|c{1 znt=h-JYisf+X2p0P#u0ua?tbqK>}b`O+3xO(2r^dsIvf)XJFhTtZ0IvW7%m2h9zJf zV59$3FfgRZfin+eb%G}7P?Ho52YXG>%>a{x!D$_Ao-v5zsDx(pPCW*O7MMm*K?KQ+ zAoI4sgh89|QO#S5(>#$%28N3eji7}MV8Z!Ey#j8rIhZNkl7}Bx^ z`4+s)h7Gjk51bISh4nxQ@!)9&hMlJw7*wr6EeCC3H&6?M{R{)cZ;&7hL@*ZA#4kI; zzz}r?v|}E$x<*^L2$W_&oVIRo@HRr0Vh^HNMbEM%fOHi5(F<)(}y@| z>RASciD#iHSWF2c1%s{~0K1woMOa=>0X?m3JIlbZaYN*24TiZ zVa0D4I=Id;FmQnST!<8>rU;E=%oJycGsS^Yup3MxY6>oc31gam;qK7f~v|gq%{5#qJpE0ff-zJf#eCLZE&gvB@A$?7GhuqC0!L~ z5e5dv%R=B(ec}*@gFSe$e-r4?8*r+=ETj%f)r#jB7-Y}EQuSpadr+$OJIBD_1QGdQi5pj5s090S9`bFeb^st~wJsyNTUP;wrYjIRlS%iP)L85m}Q1i{JpI>Zf|&NDEq zI}c69lfe6R*JwD{gA?WE!yFDmAOgI+idUHPE9iDBm;kuQyL_I3;UcIv0x2Yq9_Db6 z0ufLhe(Io00$>7Q9WTx^Fg!!(xPO?#K^a7VbqETxMS^s|1i(7}o@ZeAjnMJtFo%N{ zhyd#l7FGmbL;w>2>kzuYz#wn|lxQ^`9O7^Q6@$B#aVE-}Lf~Q*r^z{Tpz zLmUpEM0p#g5t1m=4|6zx($;&3FlaZ4M$Tal2Tpc#ao4)T5O*2BILzT-UCF>;{P!@21GrpeKEmOE zR<4569w;`!X^)$M8I-_OiewoW7$YI^4hkF)W}Kq{+F8d1s_`R*)IrHi^8y2dDhNA+ znx~OM;1V_H0t15=NRSa!i$@Bjg0xM!z`)Q05(KSiWsDSR0}Xs!yTHJ3?g9gY&N5I# zHd+Wg8X|O&fkEIR1A`7Y?ZrUcpm~vjLG>b1{R)avkfRtF6NSW*RME>!uZs)}9-wJw zNMZx2WC9T&%$O!5JOx8X{6z+aSX3RLOA0|67#K5!gpXn9D7nbMP=u-jv4$t_p%dd-YC&x)-kmH9)N+pGyo3E|(Y>RKc0-m7p6all5I%&785r0vgZvKGarhvI12c#K>-a6GsjbPtUyW$5z#xOraql3910RS0>);oXjRom|34nDNUuIx1MCkZ&ki$U~M1XY&2-)?6bif3_ zIy^2jFt{Of$RFZxPyi8N9g;#C2SGYu0$?4nml+tM5jr#uaX6@h2(S)qA-2yT9WVi~ zj-ty93zH$yfngRxN6jG)2UidQ*5N87)(O%969DVjc$tA=JwnHVLmUpwAOftzS4ar7Vb%~P z0M>ErG6TaAunrASS^y>COIqM049haN4??Ov4Nw?^vdlZMJUGh;9D-DJtlCg5kSqfV zDR7oCJOrt+G%OE6Dk^P=LePqT4N!1_?6XIRX&r>BL&`ELpryTxR|GjgqstlxIUK@3 z33!f+4g-UZ2B@QOO^_4RhrNB7f#K$5Xlge+$l<^OBEUYsEhxHGn}NX)CII&Nhsz8M z@4!9>r(KVO91c7n0<7b%pvZHO4wwK~2kR9E2Ied9)Se8=A0Ps()1m zrGJHiLH7#O!yq+CrK2G4GLU0Hq96=*jLQ`U1}Cs%z#ayP^MD8tW;`v(bOS?2n za8w;aAk`oY(!r&RUdrcPVPMDs>j0OMAP>ty`hB1%M=lXTddAm|Gb_q**~~>_O-D7c-f;8!|BP zU1eb4y2`*{2$L`ZZ3#5K%D|w1m4QLy(IyUugh~d65ItyG0Nnu#Y94aT)dXD^y93lW`8nGmwyt6wm~P zZ0J=6hQO-~3_1^@Kz9iW@PX=_ma7a5WgtO)P%4at2tK~bz;OF21B338O&kuO=7+03 zEDmxZaUgk(fkFHl1B1?LP}PR23((jONUJr70LMYDfSe(W0}g-ZYYYsI z*FY(Y!QgBKsLtbX;85Mf;Q*RtVN4bfo21XcUDL$-%v+#p#XuSgK@pn5X|~XifnnV>28J~t<)H1EN3St39KHrBPd0HlfK(Z+HDq9T zaE*cC#x({8qn(Bf3<}p77^JQRfnFgBG8oAvppbTUgkB*EQpdoc0@~!l_=g|d*Y7#N;V=hWwgrGT zjGhH$kU#vE8Nv(O3m&}0CvRy5Whfb=o9!-O#hP*?=OeP56%491%dK>C;(C!pqC zhiQbEcm4pR5%3x!3@W@et{vcT$f;ytU^NC?&BUPvD#AdcD;x(Q%>q@33`Y@C54f0t zL4yxk>DfT!p)Cz9HK;H+(ShxSL@>y^;0P9HU;s391a{H0$dX9=hwPq%)np>69AV+k~bL` z#BYL1BXC{$Y(IyCD2M>-IL^<;V#2^+2onJ7(7VaNpo7pMdw|118AO0}+~L;6sB@;~`Xd z8mchJUQoAZ6+{>ueX$21k+csi2HNY#piz4O(i*u67K4q|YP3LO`aMLLi9;P4(^_3n z4MMN?Rco(Yl4y~)6k4GJ{S1~tZ6{NVc;n{F~NG=Sm> zR0Z7M$l<^OB0%Lj;~akOsiq7JhA;te6)^oK1H;st&?*2f1F8bn++<)_1r94nhx5%w z4hKOH0S?~9{Bp-ZhQS2D!F%u~1H*o>7Gsf3&?bP&p;iV4##VlQ(9qn0jT{c3p<2c{ z;-D?0I!=#R%d!-ozgCR@+ z945uL7#Ip~LBj+t0}7LlTMP_sAooBsg4#L`2R;x14wHI*>DwT~U;^MUnR|oU_iHfk6#CPvp<93{uP(1fC4qXAUaZOSBy9b$71fZ~*OqEinfjo5H{t#LolT zV{q~o1H;i<3=A$;R&h9hCd9y7r8lpF6n0C@p?LwbunXh|7j_`C8H_=Og9iE_r3=Vb zaOuLszzlMk_A$`ll?Xo{!y4HB^&ShDgGI17I7Q3BUW0QDheJgr0|T!G*bU4@FF@to z8V-lnN(Kf+h#*rD3xl!r8V-kvpvfBrD8mjW$-tnY3l$4O5_4Sx@m&){4BK#_GsJfw zhcFm>tbr8e3@V_V*NiOu+#lcr`Jf3<5Kr|GC{kGXbwR26^(_X5=b%IfjuJM0@Gvsp zZ3YIO+YAhl9tS%=4_Mo61_s63(4i1e7GU6G0j;%A`34HI7kuD}?j`U{QUTi93byG5 zp9RP!kJ}6kE+9j}Hof8l_uH~>GcaU=1T#Tv2VV1mo!fAmfuRm02=4H_ftWn)HUq;H zko6ljayWpjH{P+4!vSOqgX?XO3$E}9f$HBICpjD>!G+E~kPFs>=5Md?*?~A~Z!<8g z1exmqYTaJr;|8fef182f^lk7i?=nsX29=sN1_s7FJ|0lMp0bg{0kn0KaSo_M3kkP8 zK5dY1KHX+ucn2~I?3)6JZ$$4fFbLlP-Kq_BBZKxN&_t9UAFt0E4u@%AXMF^n>Is_N zW%T2-yC}%OU~q?lLE{bsgDQC7)Q>OXuOI_M(H#bctUJ)Gnz@FNI3IWisKs3d2D7^i47z)Ea5!vaU|

  • Oogn>JcW^j>3W?1i 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

    9?pa244#yLMhCZC1|9`gc_$p=`k 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

    6bGwxFMG_upWgwauEqW7Zh>L3Dk{f#S3U> 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'N{L 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�d)RW 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टs;To*k#969Ln$K@P?I~*85`?$O~96?c>Vw=WxjJ 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 z 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 literal 0 HcmV?d00001 diff --git a/tools/esp_app_trace/test/sysview/test.sh b/tools/esp_app_trace/test/sysview/test.sh index e1404f0b51..a86bae42a1 100755 --- a/tools/esp_app_trace/test/sysview/test.sh +++ b/tools/esp_app_trace/test/sysview/test.sh @@ -14,3 +14,17 @@ && coverage report \ ; } || { echo 'The test for sysviewtrace_proc JSON functionality has failed. Please examine the artifacts.' ; exit 1; } +{ coverage debug sys \ + && coverage erase &> output \ + && coverage run -a $IDF_PATH/tools/esp_app_trace/sysviewtrace_proc.py -d -p -b sysview_tracing_heap_log.elf heap_log_mcore.svdat &>> output \ + && diff output expected_output_mcore \ + && coverage report \ +; } || { echo 'The test for mcore sysviewtrace_proc functionality has failed. Please examine the artifacts.' ; exit 1; } + +{ coverage debug sys \ + && coverage erase &> output.json \ + && coverage run -a $IDF_PATH/tools/esp_app_trace/sysviewtrace_proc.py -j -b sysview_tracing_heap_log.elf heap_log_mcore.svdat &>> output.json \ + && diff output.json expected_output_mcore.json \ + && coverage report \ +; } || { echo 'The test for mcore sysviewtrace_proc JSON functionality has failed. Please examine the artifacts.' ; exit 1; } +