diff --git a/components/app_trace/sys_view/SEGGER/SEGGER.h b/components/app_trace/sys_view/SEGGER/SEGGER.h index be33c34ca0..f07e946619 100644 --- a/components/app_trace/sys_view/SEGGER/SEGGER.h +++ b/components/app_trace/sys_view/SEGGER/SEGGER.h @@ -10,7 +10,7 @@ * The Embedded Experts * ********************************************************************** * * -* (c) 1995 - 2021 SEGGER Microcontroller GmbH * +* (c) 1995 - 2024 SEGGER Microcontroller GmbH * * * * www.segger.com Support: support@segger.com * * * @@ -49,7 +49,7 @@ * * ********************************************************************** * * -* SystemView version: 3.42 * +* SystemView version: 3.56 * * * ********************************************************************** ---------------------------------------------------------------------- diff --git a/components/app_trace/sys_view/SEGGER/SEGGER_RTT.h b/components/app_trace/sys_view/SEGGER/SEGGER_RTT.h index 0fdb2f7177..6e1c758f0d 100644 --- a/components/app_trace/sys_view/SEGGER/SEGGER_RTT.h +++ b/components/app_trace/sys_view/SEGGER/SEGGER_RTT.h @@ -8,7 +8,7 @@ * The Embedded Experts * ********************************************************************** * * -* (c) 1995 - 2021 SEGGER Microcontroller GmbH * +* (c) 1995 - 2024 SEGGER Microcontroller GmbH * * * * www.segger.com Support: support@segger.com * * * @@ -47,7 +47,7 @@ * * ********************************************************************** * * -* SystemView version: 3.42 * +* SystemView version: 3.56 * * * ********************************************************************** ---------------------------END-OF-HEADER------------------------------ @@ -100,6 +100,10 @@ Revision: $Rev: 25842 $ #define _CORE_HAS_RTT_ASM_SUPPORT 1 #define _CORE_NEEDS_DMB 1 #define RTT__DMB() __asm volatile ("dmb\n" : : :); + #elif (defined(__ARM_ARCH_8_1M_MAIN__)) // Cortex-M85 + #define _CORE_HAS_RTT_ASM_SUPPORT 1 + #define _CORE_NEEDS_DMB 1 + #define RTT__DMB() __asm volatile ("dmb\n" : : :); #else #define _CORE_HAS_RTT_ASM_SUPPORT 0 #endif @@ -130,6 +134,10 @@ Revision: $Rev: 25842 $ #define _CORE_HAS_RTT_ASM_SUPPORT 1 #define _CORE_NEEDS_DMB 1 #define RTT__DMB() __asm volatile ("dmb\n" : : :); + #elif (defined __ARM_ARCH_8_1M_MAIN__) // Cortex-M85 + #define _CORE_HAS_RTT_ASM_SUPPORT 1 + #define _CORE_NEEDS_DMB 1 + #define RTT__DMB() __asm volatile ("dmb\n" : : :); #elif ((defined __ARM_ARCH_7A__) || (defined __ARM_ARCH_7R__)) // Cortex-A/R 32-bit ARMv7-A/R #define _CORE_NEEDS_DMB 1 #define RTT__DMB() __asm volatile ("dmb\n" : : :); @@ -156,6 +164,10 @@ Revision: $Rev: 25842 $ #define _CORE_HAS_RTT_ASM_SUPPORT 1 #define _CORE_NEEDS_DMB 1 #define RTT__DMB() __asm volatile ("dmb\n" : : :); + #elif (defined __ARM_ARCH_8_1M_MAIN__) // Cortex-M85 + #define _CORE_HAS_RTT_ASM_SUPPORT 1 + #define _CORE_NEEDS_DMB 1 + #define RTT__DMB() __asm volatile ("dmb\n" : : :); #elif ((defined __ARM_ARCH_7A__) || (defined __ARM_ARCH_7R__)) // Cortex-A/R 32-bit ARMv7-A/R #define _CORE_NEEDS_DMB 1 #define RTT__DMB() __asm volatile ("dmb\n" : : :); @@ -271,6 +283,7 @@ Revision: $Rev: 25842 $ #ifndef SEGGER_RTT_ASM // defined when SEGGER_RTT.h is included from assembly file #include #include +#include /********************************************************************* * @@ -412,7 +425,7 @@ unsigned SEGGER_RTT_ReadUpBufferNoLock (unsigned BufferIndex, void* pDa unsigned SEGGER_RTT_WriteDownBuffer (unsigned BufferIndex, const void* pBuffer, unsigned NumBytes); unsigned SEGGER_RTT_WriteDownBufferNoLock (unsigned BufferIndex, const void* pBuffer, unsigned NumBytes); -#define SEGGER_RTT_HASDATA_UP(n) (((SEGGER_RTT_BUFFER_UP*)((char*)&_SEGGER_RTT.aUp[n] + SEGGER_RTT_UNCACHED_OFF))->WrOff - ((SEGGER_RTT_BUFFER_UP*)((char*)&_SEGGER_RTT.aUp[n] + SEGGER_RTT_UNCACHED_OFF))->RdOff) // Access uncached to make sure we see changes made by the J-Link side and all of our changes go into HW directly +#define SEGGER_RTT_HASDATA_UP(n) (((SEGGER_RTT_BUFFER_UP*)((uintptr_t)&_SEGGER_RTT.aUp[n] + SEGGER_RTT_UNCACHED_OFF))->WrOff - ((SEGGER_RTT_BUFFER_UP*)((uintptr_t)&_SEGGER_RTT.aUp[n] + SEGGER_RTT_UNCACHED_OFF))->RdOff) // Access uncached to make sure we see changes made by the J-Link side and all of our changes go into HW directly /********************************************************************* * diff --git a/components/app_trace/sys_view/SEGGER/SEGGER_SYSVIEW.c b/components/app_trace/sys_view/SEGGER/SEGGER_SYSVIEW.c index 10599986c8..4de60ada2e 100644 --- a/components/app_trace/sys_view/SEGGER/SEGGER_SYSVIEW.c +++ b/components/app_trace/sys_view/SEGGER/SEGGER_SYSVIEW.c @@ -3,14 +3,14 @@ * * SPDX-License-Identifier: BSD-1-Clause * - * SPDX-FileContributor: 2023 Espressif Systems (Shanghai) CO LTD + * SPDX-FileContributor: 2023-2024 Espressif Systems (Shanghai) CO LTD */ /********************************************************************* * SEGGER Microcontroller GmbH * * The Embedded Experts * ********************************************************************** * * -* (c) 1995 - 2021 SEGGER Microcontroller GmbH * +* (c) 1995 - 2024 SEGGER Microcontroller GmbH * * * * www.segger.com Support: support@segger.com * * * @@ -49,14 +49,14 @@ * * ********************************************************************** * * -* SystemView version: 3.42 * +* SystemView version: 3.56 * * * ********************************************************************** -------------------------- END-OF-HEADER ----------------------------- File : SEGGER_SYSVIEW.c Purpose : System visualization API implementation. -Revision: $Rev: 28341 $ +Revision: $Rev: 29105 $ Additional information: Packet format: @@ -66,10 +66,10 @@ Additional information: Packets with IDs 24..31 are standard packets with extendible structure and contain a length field. - + Packet ID 31 is used for SystemView extended events. - + Packets with IDs >= 32 always contain a length field. @@ -150,6 +150,7 @@ Additional information: #include #include #include +#include #include "SEGGER_SYSVIEW_Int.h" #include "SEGGER_RTT.h" @@ -188,7 +189,7 @@ Additional information: // Timestamps may be less than full 32-bits, in which case we need to zero // the unused bits to properly handle overflows. // Note that this is a quite common scenario, as a 32-bit time such as -// SysTick might be scaled down to reduce bandwith +// SysTick might be scaled down to reduce bandwidth // or a 16-bit hardware time might be used. #if SEGGER_SYSVIEW_TIMESTAMP_BITS < 32 // Eliminate unused bits in case hardware timestamps are less than 32 bits #define MAKE_DELTA_32BIT(Delta) Delta <<= 32 - SEGGER_SYSVIEW_TIMESTAMP_BITS; \ @@ -388,8 +389,6 @@ static U8 _NumModules; pDest = pSysviewPointer; \ }; - - #if (SEGGER_SYSVIEW_USE_STATIC_BUFFER == 1) static U8 _aPacket[SEGGER_SYSVIEW_MAX_PACKET_SIZE]; @@ -432,6 +431,9 @@ static U8 _aPacket[SEGGER_SYSVIEW_MAX_PACKET_SIZE]; static U8* _EncodeData(U8* pPayload, const char* pSrc, unsigned int NumBytes) { unsigned int n; const U8* p; + + // Espressif doesn't support larger packages yet. Encode data length must be less than 255. + assert(NumBytes < 255); // n = 0; p = (const U8*)pSrc; @@ -442,8 +444,8 @@ static U8* _EncodeData(U8* pPayload, const char* pSrc, unsigned int NumBytes) { *pPayload++ = (U8)NumBytes; } else { *pPayload++ = 255; - *pPayload++ = (NumBytes & 255); *pPayload++ = ((NumBytes >> 8) & 255); + *pPayload++ = (NumBytes & 255); } while (n < NumBytes) { *pPayload++ = *p++; @@ -452,6 +454,38 @@ static U8* _EncodeData(U8* pPayload, const char* pSrc, unsigned int NumBytes) { return pPayload; } +/********************************************************************* +* +* _EncodeFloat() +* +* Function description +* Encode a float value in variable-length format. +* +* Parameters +* pPayload - Pointer to where value will be encoded. +* Value - Value to be encoded. +* +* Return value +* Pointer to the byte following the value, i.e. the first free +* byte in the payload and the next position to store payload +* content. +*/ +static U8* _EncodeFloat(U8* pPayload, float Value) { + float Val = Value; + U8* pSysviewPointer; + U32* SysViewData; + pSysviewPointer = pPayload; + SysViewData = (U32*)&Val; + while((*SysViewData) > 0x7F) { + *pSysviewPointer++ = (U8)((*SysViewData) | 0x80); + (*SysViewData) >>= 7; + }; + *pSysviewPointer++ = (U8)(*SysViewData); + pPayload = pSysviewPointer; + + return pPayload; +} + /********************************************************************* * * _EncodeStr() @@ -475,38 +509,42 @@ static U8* _EncodeData(U8* pPayload, const char* pSrc, unsigned int NumBytes) { * No more than 1 + Limit bytes will be encoded to the payload. */ static U8 *_EncodeStr(U8 *pPayload, const char *pText, unsigned int Limit) { - unsigned int n; - unsigned int Len; - // - // Compute string len - // - Len = 0; - if (pText != NULL) { - while(*(pText + Len) != 0) { - Len++; - } - if (Len > Limit) { - Len = Limit; - } - } - // - // Write Len - // - if (Len < 255) { - *pPayload++ = (U8)Len; + U8* pLen; + const char* sStart; + + if (pText == NULL) { + *pPayload++ = (U8)0; } else { - *pPayload++ = 255; - *pPayload++ = (Len & 255); - *pPayload++ = ((Len >> 8) & 255); + sStart = pText; // Remember start of string. + // + // Save space to store count byte(s). + // + pLen = pPayload++; +#if (SEGGER_SYSVIEW_MAX_STRING_LEN >= 255) // Length always encodes in 3 bytes + pPayload += 2; +#endif + // + // Limit string to maximum length and copy into payload buffer. + // + if (Limit > SEGGER_SYSVIEW_MAX_STRING_LEN) { + Limit = SEGGER_SYSVIEW_MAX_STRING_LEN; + } + while ((Limit-- > 0) && (*pText != '\0')) { + *pPayload++ = *pText++; + } + // + // Save string length to buffer. + // +#if (SEGGER_SYSVIEW_MAX_STRING_LEN >= 255) // Length always encodes in 3 bytes + Limit = (unsigned int)(pText - sStart); + *pLen++ = (U8)255; + *pLen++ = (U8)((Limit >> 8) & 255); + *pLen++ = (U8)(Limit & 255); +#else // Length always encodes in 1 byte + *pLen = (U8)(pText - sStart); +#endif } // - // copy string - // - n = 0; - while (n < Len) { - *pPayload++ = *pText++; - n++; - } return pPayload; } @@ -693,7 +731,6 @@ static void _SendSyncInfo(void) { for (n = 0; n < _NumModules; n++) { SEGGER_SYSVIEW_SendModule(n); } - SEGGER_SYSVIEW_SendModuleDescription(); } } #endif // (SEGGER_SYSVIEW_POST_MORTEM_MODE == 1) @@ -1218,6 +1255,7 @@ static void _VPrintTarget(const char* sFormat, U32 Options, va_list* pParamList) unsigned int FormatFlags; unsigned int FieldWidth; U8* pPayloadStart; + const char* s; #if SEGGER_SYSVIEW_USE_STATIC_BUFFER == 0 RECORD_START(SEGGER_SYSVIEW_INFO_SIZE + SEGGER_SYSVIEW_MAX_STRING_LEN + 1 + 2 * SEGGER_SYSVIEW_QUANTA_U32); SEGGER_SYSVIEW_LOCK(); @@ -1322,6 +1360,20 @@ static void _VPrintTarget(const char* sFormat, U32 Options, va_list* pParamList) v = va_arg(*pParamList, int); _PrintUnsigned(&BufferDesc, (unsigned int)v, 16u, NumDigits, FieldWidth, FormatFlags); break; + case 's': + s = va_arg(*pParamList, const char*); + if (s == NULL) { + s = "(null)"; + } + do { + c = *s; + s++; + if (c == '\0') { + break; + } + _StoreChar(&BufferDesc, c); + } while (BufferDesc.Cnt < SEGGER_SYSVIEW_MAX_STRING_LEN); + break; case 'p': v = va_arg(*pParamList, int); _PrintUnsigned(&BufferDesc, (unsigned int)v, 16u, 8u, 8u, 0u); @@ -1954,11 +2006,61 @@ void SEGGER_SYSVIEW_SendTaskInfo(const SEGGER_SYSVIEW_TASKINFO *pInfo) { ENCODE_U32(pPayload, SHRINK_ID(pInfo->TaskID)); ENCODE_U32(pPayload, pInfo->StackBase); ENCODE_U32(pPayload, pInfo->StackSize); - ENCODE_U32(pPayload, 0); // Stack End, future use + ENCODE_U32(pPayload, pInfo->StackUsage); _SendPacket(pPayloadStart, pPayload, SYSVIEW_EVTID_STACK_INFO); RECORD_END(); } +/********************************************************************* +* +* SEGGER_SYSVIEW_SendStackInfo() +* +* Function description +* Send a Stack Info Packet, containing TaskId for identification, +* stack base, stack size and stack usage. +* +* +* Parameters +* pInfo - Pointer to stack information to send. +*/ +void SEGGER_SYSVIEW_SendStackInfo(const SEGGER_SYSVIEW_STACKINFO *pInfo) { + U8* pPayload; + U8* pPayloadStart; + RECORD_START(SEGGER_SYSVIEW_INFO_SIZE + 4 * SEGGER_SYSVIEW_QUANTA_U32); + // + pPayload = pPayloadStart; + ENCODE_U32(pPayload, SHRINK_ID(pInfo->TaskID)); + ENCODE_U32(pPayload, pInfo->StackBase); + ENCODE_U32(pPayload, pInfo->StackSize); + ENCODE_U32(pPayload, pInfo->StackUsage); + + RECORD_END(); +} + +/********************************************************************* +* +* SEGGER_SYSVIEW_SampleData() +* +* Function description +* Send a Data Sample Packet, containing the data Id and the value. +* +* +* Parameters +* pInfo - Pointer to data sample struct to send. +*/ +void SEGGER_SYSVIEW_SampleData(const SEGGER_SYSVIEW_DATA_SAMPLE *pInfo) { + U8* pPayload; + U8* pPayloadStart; + RECORD_START(SEGGER_SYSVIEW_INFO_SIZE + 2 * SEGGER_SYSVIEW_QUANTA_U32); + // + pPayload = pPayloadStart; + ENCODE_U32(pPayload, pInfo->ID); + pPayload = _EncodeFloat(pPayload, *(pInfo->pFloat_Value)); + _SendPacket(pPayloadStart, pPayload, SYSVIEW_EVTID_DATA_SAMPLE); + + RECORD_END(); +} + /********************************************************************* * * SEGGER_SYSVIEW_SendTaskList() @@ -2448,6 +2550,63 @@ void SEGGER_SYSVIEW_NameResource(U32 ResourceId, const char* sName) { RECORD_END(); } +/********************************************************************* +* +* SEGGER_SYSVIEW_RegisterData() +* +* Function description +* Register data to sample the values via SystemView. +* +* Register functions are usually set in the system description +* callback, to ensure it is only sent when the SystemView Application +* is connected. +* +* Parameters +* pInfo - Struct containing all possible properties that can be sent via this registration event. +*/ +void SEGGER_SYSVIEW_RegisterData(SEGGER_SYSVIEW_DATA_REGISTER* pInfo) { + U8* pPayload; + U8* pPayloadStart; + RECORD_START(SEGGER_SYSVIEW_INFO_SIZE + 8 * SEGGER_SYSVIEW_QUANTA_U32 + 1 + SEGGER_SYSVIEW_MAX_STRING_LEN); + // + pPayload = pPayloadStart; + ENCODE_U32(pPayload, SYSVIEW_EVTID_EX_REGISTER_DATA); + ENCODE_U32(pPayload, pInfo->ID); + pPayload = _EncodeStr(pPayload, pInfo->sName, SEGGER_SYSVIEW_MAX_STRING_LEN); + + if (pInfo->sName != 0) { + ENCODE_U32(pPayload, pInfo->DataType); + ENCODE_U32(pPayload, pInfo->Offset); + ENCODE_U32(pPayload, pInfo->RangeMin); + ENCODE_U32(pPayload, pInfo->RangeMax); + pPayload = _EncodeFloat(pPayload, pInfo->ScalingFactor); + pPayload = _EncodeStr(pPayload, pInfo->sUnit, SEGGER_SYSVIEW_MAX_STRING_LEN); + } else if (pInfo->ScalingFactor != 0) { + ENCODE_U32(pPayload, pInfo->DataType); + ENCODE_U32(pPayload, pInfo->Offset); + ENCODE_U32(pPayload, pInfo->RangeMin); + ENCODE_U32(pPayload, pInfo->RangeMax); + pPayload = _EncodeFloat(pPayload, pInfo->ScalingFactor); + } else if (pInfo->RangeMax != 0) { + ENCODE_U32(pPayload, pInfo->DataType); + ENCODE_U32(pPayload, pInfo->Offset); + ENCODE_U32(pPayload, pInfo->RangeMin); + ENCODE_U32(pPayload, pInfo->RangeMax); + } else if (pInfo->RangeMin != 0) { + ENCODE_U32(pPayload, pInfo->DataType); + ENCODE_U32(pPayload, pInfo->Offset); + ENCODE_U32(pPayload, pInfo->RangeMin); + } else if (pInfo->Offset != 0) { + ENCODE_U32(pPayload, pInfo->DataType); + ENCODE_U32(pPayload, pInfo->Offset); + } else if (pInfo->DataType != 0) { + ENCODE_U32(pPayload, pInfo->DataType); + } + + _SendPacket(pPayloadStart, pPayload, SYSVIEW_EVTID_EX); + RECORD_END(); +} + /********************************************************************* * * SEGGER_SYSVIEW_HeapDefine() @@ -2820,9 +2979,6 @@ void SEGGER_SYSVIEW_RegisterModule(SEGGER_SYSVIEW_MODULE* pModule) { _NumModules++; } SEGGER_SYSVIEW_SendModule(0); - if (pModule->pfSendModuleDesc) { - pModule->pfSendModuleDesc(); - } SEGGER_SYSVIEW_UNLOCK(); } @@ -2906,6 +3062,9 @@ void SEGGER_SYSVIEW_SendModule(U8 ModuleId) { _SendPacket(pPayloadStart, pPayload, SYSVIEW_EVTID_MODULEDESC); RECORD_END(); } + if (pModule && pModule->pfSendModuleDesc) { + pModule->pfSendModuleDesc(); + } } } @@ -2986,6 +3145,39 @@ void SEGGER_SYSVIEW_PrintfHostEx(const char* s, U32 Options, ...) { #endif } +/********************************************************************* +* +* SEGGER_SYSVIEW_VPrintfHostEx() +* +* Function description +* Print a string which is formatted on the host by the SystemView Application +* with Additional information. +* +* Parameters +* s - String to be formatted. +* Options - Options for the string. i.e. Log level. +* pParamList - Pointer to the list of arguments for the format string +* +* Additional information +* All format arguments are treated as 32-bit scalar values. +*/ +void SEGGER_SYSVIEW_VPrintfHostEx(const char* s, U32 Options, va_list *pParamList) { +#if SEGGER_SYSVIEW_PRINTF_IMPLICIT_FORMAT + int r; + va_list ParamListCopy; + va_copy(ParamListCopy, *pParamList); + + r = _VPrintHost(s, Options, pParamList); + + if (r == -1) { + _VPrintTarget(s, Options, &ParamListCopy); + } + va_end(ParamListCopy); +#else + _VPrintHost(s, Options, pParamList); +#endif +} + /********************************************************************* * * SEGGER_SYSVIEW_PrintfHost() @@ -3020,6 +3212,37 @@ void SEGGER_SYSVIEW_PrintfHost(const char* s, ...) { #endif } +/********************************************************************* +* +* SEGGER_SYSVIEW_VPrintfHost() +* +* Function description +* Print a string which is formatted on the host by the SystemView Application. +* +* Parameters +* s - String to be formatted. +* pParamList - Pointer to the list of arguments for the format string +* +* Additional information +* All format arguments are treated as 32-bit scalar values. +*/ +void SEGGER_SYSVIEW_VPrintfHost(const char* s, va_list *pParamList) { +#if SEGGER_SYSVIEW_PRINTF_IMPLICIT_FORMAT + int r; + va_list ParamListCopy; + va_copy(ParamListCopy, *pParamList); + + r = _VPrintHost(s, SEGGER_SYSVIEW_LOG, pParamList); + + if (r == -1) { + _VPrintTarget(s, SEGGER_SYSVIEW_LOG, &ParamListCopy); + } + va_end(ParamListCopy); +#else + _VPrintHost(s, SEGGER_SYSVIEW_LOG, pParamList); +#endif +} + /********************************************************************* * * SEGGER_SYSVIEW_WarnfHost() @@ -3055,6 +3278,38 @@ void SEGGER_SYSVIEW_WarnfHost(const char* s, ...) { #endif } +/********************************************************************* +* +* SEGGER_SYSVIEW_VWarnfHost() +* +* Function description +* Print a warning string which is formatted on the host by +* the SystemView Application. +* +* Parameters +* s - String to be formatted. +* pParamList - Pointer to the list of arguments for the format string +* +* Additional information +* All format arguments are treated as 32-bit scalar values. +*/ +void SEGGER_SYSVIEW_VWarnfHost(const char* s, va_list *pParamList) { +#if SEGGER_SYSVIEW_PRINTF_IMPLICIT_FORMAT + int r; + va_list ParamListCopy; + va_copy(ParamListCopy, *pParamList); + + r = _VPrintHost(s, SEGGER_SYSVIEW_WARNING, pParamList); + + if (r == -1) { + _VPrintTarget(s, SEGGER_SYSVIEW_WARNING, &ParamListCopy); + } + va_end(ParamListCopy); +#else + _VPrintHost(s, SEGGER_SYSVIEW_WARNING, pParamList); +#endif +} + /********************************************************************* * * SEGGER_SYSVIEW_ErrorfHost() @@ -3090,6 +3345,38 @@ void SEGGER_SYSVIEW_ErrorfHost(const char* s, ...) { #endif } +/********************************************************************* +* +* SEGGER_SYSVIEW_VErrorfHost() +* +* Function description +* Print a warning string which is formatted on the host by +* the SystemView Application. +* +* Parameters +* s - String to be formatted. +* pParamList - Pointer to the list of arguments for the format string +* +* Additional information +* All format arguments are treated as 32-bit scalar values. +*/ +void SEGGER_SYSVIEW_VErrorfHost(const char* s, va_list *pParamList) { +#if SEGGER_SYSVIEW_PRINTF_IMPLICIT_FORMAT + int r; + va_list ParamListCopy; + va_copy(ParamListCopy, *pParamList); + + r = _VPrintHost(s, SEGGER_SYSVIEW_ERROR, pParamList); + + if (r == -1) { + _VPrintTarget(s, SEGGER_SYSVIEW_ERROR, &ParamListCopy); + } + va_end(ParamListCopy); +#else + _VPrintHost(s, SEGGER_SYSVIEW_ERROR, pParamList); +#endif +} + /********************************************************************* * * SEGGER_SYSVIEW_PrintfTargetEx() @@ -3110,6 +3397,23 @@ void SEGGER_SYSVIEW_PrintfTargetEx(const char* s, U32 Options, ...) { va_end(ParamList); } +/********************************************************************* +* +* SEGGER_SYSVIEW_VPrintfTargetEx() +* +* Function description +* Print a string which is formatted on the target before sent to +* the host with Additional information. +* +* Parameters +* s - String to be formatted. +* Options - Options for the string. i.e. Log level. +* pParamList - Pointer to the list of arguments for the format string +*/ +void SEGGER_SYSVIEW_VPrintfTargetEx(const char* s, U32 Options, va_list *pParamList) { + _VPrintTarget(s, Options, pParamList); +} + /********************************************************************* * * SEGGER_SYSVIEW_PrintfTarget() @@ -3129,6 +3433,22 @@ void SEGGER_SYSVIEW_PrintfTarget(const char* s, ...) { va_end(ParamList); } +/********************************************************************* +* +* SEGGER_SYSVIEW_VPrintfTarget() +* +* Function description +* Print a string which is formatted on the target before sent to +* the host. +* +* Parameters +* s - String to be formatted. +* pParamList - Pointer to the list of arguments for the format string +*/ +void SEGGER_SYSVIEW_VPrintfTarget(const char* s, va_list* pParamList) { + _VPrintTarget(s, SEGGER_SYSVIEW_LOG, pParamList); +} + /********************************************************************* * * SEGGER_SYSVIEW_WarnfTarget() @@ -3148,6 +3468,22 @@ void SEGGER_SYSVIEW_WarnfTarget(const char* s, ...) { va_end(ParamList); } +/********************************************************************* +* +* SEGGER_SYSVIEW_VWarnfTarget() +* +* Function description +* Print a warning string which is formatted on the target before +* sent to the host. +* +* Parameters +* s - String to be formatted. +* pParamList - Pointer to the list of arguments for the format string +*/ +void SEGGER_SYSVIEW_VWarnfTarget(const char* s, va_list* pParamList) { + _VPrintTarget(s, SEGGER_SYSVIEW_WARNING, pParamList); +} + /********************************************************************* * * SEGGER_SYSVIEW_ErrorfTarget() @@ -3166,6 +3502,22 @@ void SEGGER_SYSVIEW_ErrorfTarget(const char* s, ...) { _VPrintTarget(s, SEGGER_SYSVIEW_ERROR, &ParamList); va_end(ParamList); } + +/********************************************************************* +* +* SEGGER_SYSVIEW_VErrorfTarget() +* +* Function description +* Print an error string which is formatted on the target before +* sent to the host. +* +* Parameters +* s - String to be formatted. +* pParamList - Pointer to the list of arguments for the format string +*/ +void SEGGER_SYSVIEW_VErrorfTarget(const char* s, va_list* pParamList) { + _VPrintTarget(s, SEGGER_SYSVIEW_ERROR, pParamList); +} #endif // SEGGER_SYSVIEW_EXCLUDE_PRINTF /********************************************************************* diff --git a/components/app_trace/sys_view/SEGGER/SEGGER_SYSVIEW.h b/components/app_trace/sys_view/SEGGER/SEGGER_SYSVIEW.h index b9cbac605b..1ada68c6fc 100644 --- a/components/app_trace/sys_view/SEGGER/SEGGER_SYSVIEW.h +++ b/components/app_trace/sys_view/SEGGER/SEGGER_SYSVIEW.h @@ -3,14 +3,14 @@ * * SPDX-License-Identifier: BSD-1-Clause * - * SPDX-FileContributor: 2023 Espressif Systems (Shanghai) CO LTD + * SPDX-FileContributor: 2023-2024 Espressif Systems (Shanghai) CO LTD */ /********************************************************************* * SEGGER Microcontroller GmbH * * The Embedded Experts * ********************************************************************** * * -* (c) 1995 - 2021 SEGGER Microcontroller GmbH * +* (c) 1995 - 2024 SEGGER Microcontroller GmbH * * * * www.segger.com Support: support@segger.com * * * @@ -49,13 +49,13 @@ * * ********************************************************************** * * -* SystemView version: 3.42 * +* SystemView version: 3.56 * * * ********************************************************************** -------------------------- END-OF-HEADER ----------------------------- File : SEGGER_SYSVIEW.h Purpose : System visualization API. -Revision: $Rev: 28237 $ +Revision: $Rev: 28768 $ */ #ifndef SEGGER_SYSVIEW_H @@ -123,7 +123,7 @@ extern "C" { #define SYSVIEW_EVTID_TIMER_EXIT 20 #define SYSVIEW_EVTID_STACK_INFO 21 #define SYSVIEW_EVTID_MODULEDESC 22 - +#define SYSVIEW_EVTID_DATA_SAMPLE 23 #define SYSVIEW_EVTID_INIT 24 #define SYSVIEW_EVTID_NAME_RESOURCE 25 #define SYSVIEW_EVTID_PRINT_FORMATTED 26 @@ -135,12 +135,13 @@ extern "C" { // // SystemView extended events. Sent with ID 31. // -#define SYSVIEW_EVTID_EX_MARK 0 -#define SYSVIEW_EVTID_EX_NAME_MARKER 1 -#define SYSVIEW_EVTID_EX_HEAP_DEFINE 2 -#define SYSVIEW_EVTID_EX_HEAP_ALLOC 3 -#define SYSVIEW_EVTID_EX_HEAP_ALLOC_EX 4 -#define SYSVIEW_EVTID_EX_HEAP_FREE 5 +#define SYSVIEW_EVTID_EX_MARK 0 +#define SYSVIEW_EVTID_EX_NAME_MARKER 1 +#define SYSVIEW_EVTID_EX_HEAP_DEFINE 2 +#define SYSVIEW_EVTID_EX_HEAP_ALLOC 3 +#define SYSVIEW_EVTID_EX_HEAP_ALLOC_EX 4 +#define SYSVIEW_EVTID_EX_HEAP_FREE 5 +#define SYSVIEW_EVTID_EX_REGISTER_DATA 6 // // Event masks to disable/enable events // @@ -167,7 +168,7 @@ extern "C" { #define SYSVIEW_EVTMASK_TIMER_EXIT (1 << SYSVIEW_EVTID_TIMER_EXIT) #define SYSVIEW_EVTMASK_STACK_INFO (1 << SYSVIEW_EVTID_STACK_INFO) #define SYSVIEW_EVTMASK_MODULEDESC (1 << SYSVIEW_EVTID_MODULEDESC) - +#define SYSVIEW_EVTMASK_DATA_SAMPLE (1 << SYSVIEW_EVTID_DATA_SAMPLE) #define SYSVIEW_EVTMASK_INIT (1 << SYSVIEW_EVTID_INIT) #define SYSVIEW_EVTMASK_NAME_RESOURCE (1 << SYSVIEW_EVTID_NAME_RESOURCE) #define SYSVIEW_EVTMASK_PRINT_FORMATTED (1 << SYSVIEW_EVTID_PRINT_FORMATTED) @@ -202,8 +203,42 @@ typedef struct { U32 Prio; U32 StackBase; U32 StackSize; + U32 StackUsage; } SEGGER_SYSVIEW_TASKINFO; +typedef struct { + U32 TaskID; + U32 StackBase; + U32 StackSize; + U32 StackUsage; +} SEGGER_SYSVIEW_STACKINFO; + +typedef struct { + U32 ID; + union { + U32* pU32_Value; + I32* pI32_Value; + float* pFloat_Value; + }; +} SEGGER_SYSVIEW_DATA_SAMPLE; + +typedef enum { + SEGGER_SYSVIEW_TYPE_U32 = 0, + SEGGER_SYSVIEW_TYPE_I32 = 1, + SEGGER_SYSVIEW_TYPE_FLOAT = 2 +} SEGGER_SYSVIEW_DATA_TYPE; + +typedef struct { + U32 ID; + SEGGER_SYSVIEW_DATA_TYPE DataType; + I32 Offset; + I32 RangeMin; + I32 RangeMax; + float ScalingFactor; + const char* sName; + const char* sUnit; +} SEGGER_SYSVIEW_DATA_REGISTER; + typedef struct SEGGER_SYSVIEW_MODULE_STRUCT SEGGER_SYSVIEW_MODULE; struct SEGGER_SYSVIEW_MODULE_STRUCT { @@ -247,8 +282,8 @@ EXTERN unsigned int SEGGER_SYSVIEW_InterruptId; */ typedef struct { - U64 (*pfGetTime) (void); - void (*pfSendTaskList) (void); + U64 (*pfGetTime) (void); + void (*pfSendTaskList) (void); } SEGGER_SYSVIEW_OS_API; /********************************************************************* @@ -262,9 +297,13 @@ void SEGGER_SYSVIEW_Stop (void); void SEGGER_SYSVIEW_GetSysDesc (void); void SEGGER_SYSVIEW_SendTaskList (void); void SEGGER_SYSVIEW_SendTaskInfo (const SEGGER_SYSVIEW_TASKINFO* pInfo); +void SEGGER_SYSVIEW_SendStackInfo (const SEGGER_SYSVIEW_STACKINFO* pInfo); void SEGGER_SYSVIEW_SendSysDesc (const char* sSysDesc); int SEGGER_SYSVIEW_IsStarted (void); int SEGGER_SYSVIEW_GetChannelID (void); + +void SEGGER_SYSVIEW_SampleData (const SEGGER_SYSVIEW_DATA_SAMPLE *pInfo); + // Checks whether tracing has been started U8 SEGGER_SYSVIEW_Started(void); @@ -311,6 +350,7 @@ void SEGGER_SYSVIEW_HeapAllocEx (void* pHeap, void* pUserData, void SEGGER_SYSVIEW_HeapFree (void* pHeap, void* pUserData); void SEGGER_SYSVIEW_NameResource (U32 ResourceId, const char* sName); +void SEGGER_SYSVIEW_RegisterData ( SEGGER_SYSVIEW_DATA_REGISTER* pInfo); int SEGGER_SYSVIEW_SendPacket (U8* pPacket, U8* pPayloadEnd, unsigned int EventId); @@ -341,13 +381,21 @@ void SEGGER_SYSVIEW_SendNumModules (void); */ #ifndef SEGGER_SYSVIEW_EXCLUDE_PRINTF // Define in project to avoid warnings about variable parameter list void SEGGER_SYSVIEW_PrintfHostEx (const char* s, U32 Options, ...); +void SEGGER_SYSVIEW_VPrintfHostEx (const char* s, U32 Options, va_list* pParamList); void SEGGER_SYSVIEW_PrintfTargetEx (const char* s, U32 Options, ...); +void SEGGER_SYSVIEW_VPrintfTargetEx (const char* s, U32 Options, va_list* pParamList); void SEGGER_SYSVIEW_PrintfHost (const char* s, ...); +void SEGGER_SYSVIEW_VPrintfHost (const char* s, va_list* pParamList); void SEGGER_SYSVIEW_PrintfTarget (const char* s, ...); +void SEGGER_SYSVIEW_VPrintfTarget (const char* s, va_list* pParamList); void SEGGER_SYSVIEW_WarnfHost (const char* s, ...); +void SEGGER_SYSVIEW_VWarnfHost (const char* s, va_list* pParamList); void SEGGER_SYSVIEW_WarnfTarget (const char* s, ...); +void SEGGER_SYSVIEW_VWarnfTarget (const char* s, va_list* pParamList); void SEGGER_SYSVIEW_ErrorfHost (const char* s, ...); +void SEGGER_SYSVIEW_VErrorfHost (const char* s, va_list* pParamList); void SEGGER_SYSVIEW_ErrorfTarget (const char* s, ...); +void SEGGER_SYSVIEW_VErrorfTarget (const char* s, va_list* pParamList); #endif void SEGGER_SYSVIEW_Print (const char* s); diff --git a/components/app_trace/sys_view/SEGGER/SEGGER_SYSVIEW_ConfDefaults.h b/components/app_trace/sys_view/SEGGER/SEGGER_SYSVIEW_ConfDefaults.h index c617e0db81..08efb45ba6 100644 --- a/components/app_trace/sys_view/SEGGER/SEGGER_SYSVIEW_ConfDefaults.h +++ b/components/app_trace/sys_view/SEGGER/SEGGER_SYSVIEW_ConfDefaults.h @@ -3,14 +3,14 @@ * * SPDX-License-Identifier: BSD-1-Clause * - * SPDX-FileContributor: 2023 Espressif Systems (Shanghai) CO LTD + * SPDX-FileContributor: 2023-2024 Espressif Systems (Shanghai) CO LTD */ /********************************************************************* * SEGGER Microcontroller GmbH * * The Embedded Experts * ********************************************************************** * * -* (c) 1995 - 2021 SEGGER Microcontroller GmbH * +* (c) 1995 - 2024 SEGGER Microcontroller GmbH * * * * www.segger.com Support: support@segger.com * * * @@ -49,7 +49,7 @@ * * ********************************************************************** * * -* SystemView version: 3.42 * +* SystemView version: 3.56 * * * ********************************************************************** -------------------------- END-OF-HEADER ----------------------------- @@ -72,6 +72,8 @@ Revision: $Rev: 26230 $ #include "SEGGER_SYSVIEW_Conf.h" #include "SEGGER_RTT_Conf.h" +#include "esp_assert.h" + #ifdef __cplusplus extern "C" { #endif @@ -370,12 +372,14 @@ extern "C" { #define SEGGER_SYSVIEW_MAX_STRING_LEN 128 #endif +ESP_STATIC_ASSERT(SEGGER_SYSVIEW_MAX_STRING_LEN < 255, "SEGGER Sysview string length must be less than 255."); + /********************************************************************* * * Define: SEGGER_SYSVIEW_SUPPORT_LONG_ID * * Description -* It set, support enconding Evend Ids longer than 14 bit. +* It set, support encoding Evend Ids longer than 14 bit. * Default * 1 */ @@ -388,7 +392,7 @@ extern "C" { * Define: SEGGER_SYSVIEW_SUPPORT_LONG_DATA * * Description -* It set, support enconding event data longer than 14 bit. +* It set, support encoding event data longer than 14 bit. * Default * 0 */ @@ -517,7 +521,7 @@ extern "C" { * Define: SEGGER_SYSVIEW_SYNC_PERIOD_SHIFT * * Description -* Configure how frequently syncronization is sent in post-mortem +* Configure how frequently synchronization is sent in post-mortem * mode. * Default * 8: (1 << 8) = Every 256 Events. diff --git a/components/app_trace/sys_view/SEGGER/SEGGER_SYSVIEW_Int.h b/components/app_trace/sys_view/SEGGER/SEGGER_SYSVIEW_Int.h index ded0b96b56..270fd9fc31 100644 --- a/components/app_trace/sys_view/SEGGER/SEGGER_SYSVIEW_Int.h +++ b/components/app_trace/sys_view/SEGGER/SEGGER_SYSVIEW_Int.h @@ -8,7 +8,7 @@ * The Embedded Experts * ********************************************************************** * * -* (c) 1995 - 2021 SEGGER Microcontroller GmbH * +* (c) 1995 - 2024 SEGGER Microcontroller GmbH * * * * www.segger.com Support: support@segger.com * * * @@ -47,7 +47,7 @@ * * ********************************************************************** * * -* SystemView version: 3.42 * +* SystemView version: 3.56 * * * ********************************************************************** -------------------------- END-OF-HEADER ----------------------------- diff --git a/components/app_trace/sys_view/SEGGER/sbom.yml b/components/app_trace/sys_view/SEGGER/sbom.yml index 1f8b4be4d8..7ec0b47fec 100644 --- a/components/app_trace/sys_view/SEGGER/sbom.yml +++ b/components/app_trace/sys_view/SEGGER/sbom.yml @@ -1,5 +1,5 @@ name: 'SystemView' -version: '3.42' +version: '3.56' cpe: cpe:2.3:a:segger:systemview:{}:*:*:*:*:*:*:* supplier: 'Organization: Espressif Systems (Shanghai) CO LTD' originator: 'Organization: SEGGER Microcontroller GmbH' diff --git a/components/app_trace/sys_view/Sample/FreeRTOSV10.4/Config/esp/SEGGER_SYSVIEW_Config_FreeRTOS.c b/components/app_trace/sys_view/Sample/FreeRTOSV10.4/Config/esp/SEGGER_SYSVIEW_Config_FreeRTOS.c index c01cbed67e..0e7aba7bdf 100644 --- a/components/app_trace/sys_view/Sample/FreeRTOSV10.4/Config/esp/SEGGER_SYSVIEW_Config_FreeRTOS.c +++ b/components/app_trace/sys_view/Sample/FreeRTOSV10.4/Config/esp/SEGGER_SYSVIEW_Config_FreeRTOS.c @@ -3,7 +3,7 @@ * * SPDX-License-Identifier: BSD-1-Clause * - * SPDX-FileContributor: 2017-2024 Espressif Systems (Shanghai) CO LTD + * SPDX-FileContributor: 2017-2025 Espressif Systems (Shanghai) CO LTD */ /********************************************************************* * SEGGER Microcontroller GmbH * @@ -84,11 +84,7 @@ extern const SEGGER_SYSVIEW_OS_API SYSVIEW_X_OS_TraceAPI; // The target device name #define SYSVIEW_DEVICE_NAME CONFIG_IDF_TARGET // The target core name -#if CONFIG_IDF_TARGET_ARCH_XTENSA -#define SYSVIEW_CORE_NAME "xtensa" -#elif CONFIG_IDF_TARGET_ARCH_RISCV -#define SYSVIEW_CORE_NAME "riscv" -#endif +#define SYSVIEW_CORE_NAME "core0" // In dual core, this will be renamed by OpenOCD as core1 // Determine which timer to use as timestamp source #if CONFIG_APPTRACE_SV_TS_SOURCE_CCOUNT diff --git a/docs/en/COPYRIGHT.rst b/docs/en/COPYRIGHT.rst index e708d26ac8..484eb59f2a 100644 --- a/docs/en/COPYRIGHT.rst +++ b/docs/en/COPYRIGHT.rst @@ -67,7 +67,7 @@ These third party libraries can be included into the application (firmware) prod * :component:`HTTP Parser ` is based on src/http/ngx_http_parse.c from NGINX copyright Igor Sysoev. Additional changes are licensed under the same terms as NGINX and Joyent, Inc. and other Node contributors. For details please check :component_file:`LICENSE file `. -* `SEGGER SystemView`_ target-side library, Copyright (C) 1995-2021 SEGGER Microcontroller GmbH, is licensed under BSD 1-clause license. +* `SEGGER SystemView`_ target-side library, Copyright (C) 1995-2024 SEGGER Microcontroller GmbH, is licensed under BSD 1-clause license. * `protobuf-c`_ is Protocol Buffers implementation in C, Copyright (C) 2008-2022 Dave Benson and the protobuf-c authors. For details please check :component_file:`LICENSE file `. diff --git a/docs/en/api-guides/jtag-debugging/esp32.inc b/docs/en/api-guides/jtag-debugging/esp32.inc index c83adba3b4..529584fa90 100644 --- a/docs/en/api-guides/jtag-debugging/esp32.inc +++ b/docs/en/api-guides/jtag-debugging/esp32.inc @@ -97,7 +97,7 @@ - ESP32 target configuration file. Can be used together with one of the ``interface/`` configuration files. * - ``target/esp32-solo-1.cfg`` - Target configuration file for ESP32-SOLO-1 module. Different from ``esp32.cfg`` in that it only configures one CPU. - * - ``interface/ftdi/esp32_devkitj_v1.cfg`` + * - ``interface/ftdi/esp_ftdi.cfg`` - JTAG adapter configuration file for ESP-WROVER-KIT and ESP-Prog boards. --- diff --git a/docs/en/api-guides/jtag-debugging/esp32c2.inc b/docs/en/api-guides/jtag-debugging/esp32c2.inc index 7d642aabe9..9495de33d6 100644 --- a/docs/en/api-guides/jtag-debugging/esp32c2.inc +++ b/docs/en/api-guides/jtag-debugging/esp32c2.inc @@ -94,7 +94,7 @@ - Board configuration file for ESP32-C2 debug through an ESP-Prog compatible FTDI, includes target and adapter configuration. * - ``target/esp32c2.cfg`` - ESP32-C2 target configuration file. Can be used together with one of the ``interface/`` configuration files. - * - ``interface/ftdi/esp32_devkitj_v1.cfg`` + * - ``interface/ftdi/esp_ftdi.cfg`` - JTAG adapter configuration file for ESP-Prog boards. --- diff --git a/docs/en/api-guides/jtag-debugging/esp32c3.inc b/docs/en/api-guides/jtag-debugging/esp32c3.inc index fc92a1dcf0..d89566817a 100644 --- a/docs/en/api-guides/jtag-debugging/esp32c3.inc +++ b/docs/en/api-guides/jtag-debugging/esp32c3.inc @@ -97,7 +97,7 @@ - ESP32-C3 target configuration file. Can be used together with one of the ``interface/`` configuration files. * - ``interface/esp_usb_jtag.cfg`` - JTAG adapter configuration file for ESP32-C3. - * - ``interface/ftdi/esp32_devkitj_v1.cfg`` + * - ``interface/ftdi/esp_ftdi.cfg`` - JTAG adapter configuration file for ESP-Prog boards. --- diff --git a/docs/en/api-guides/jtag-debugging/esp32c5.inc b/docs/en/api-guides/jtag-debugging/esp32c5.inc index d4f87e35b6..bc492498f3 100644 --- a/docs/en/api-guides/jtag-debugging/esp32c5.inc +++ b/docs/en/api-guides/jtag-debugging/esp32c5.inc @@ -103,7 +103,7 @@ - ESP32-C5 target configuration file. Can be used together with one of the ``interface/`` configuration files. * - ``interface/esp_usb_jtag.cfg`` - JTAG adapter configuration file for ESP32-C5. - * - ``interface/ftdi/esp32_devkitj_v1.cfg`` + * - ``interface/ftdi/esp_ftdi.cfg`` - JTAG adapter configuration file for ESP-Prog boards. --- diff --git a/docs/en/api-guides/jtag-debugging/esp32c6.inc b/docs/en/api-guides/jtag-debugging/esp32c6.inc index 3f7ae0920a..a4447969f8 100644 --- a/docs/en/api-guides/jtag-debugging/esp32c6.inc +++ b/docs/en/api-guides/jtag-debugging/esp32c6.inc @@ -102,7 +102,7 @@ - ESP32-C6 target configuration file. Can be used together with one of the ``interface/`` configuration files. * - ``interface/esp_usb_jtag.cfg`` - JTAG adapter configuration file for ESP32-C6. - * - ``interface/ftdi/esp32_devkitj_v1.cfg`` + * - ``interface/ftdi/esp_ftdi.cfg`` - JTAG adapter configuration file for ESP-Prog boards. --- diff --git a/docs/en/api-guides/jtag-debugging/esp32c61.inc b/docs/en/api-guides/jtag-debugging/esp32c61.inc index 1b14ac2b50..2229137d4f 100644 --- a/docs/en/api-guides/jtag-debugging/esp32c61.inc +++ b/docs/en/api-guides/jtag-debugging/esp32c61.inc @@ -103,7 +103,7 @@ - ESP32-C61 target configuration file. Can be used together with one of the ``interface/`` configuration files. * - ``interface/esp_usb_jtag.cfg`` - JTAG adapter configuration file for ESP32-C61. - * - ``interface/ftdi/esp32_devkitj_v1.cfg`` + * - ``interface/ftdi/esp_ftdi.cfg`` - JTAG adapter configuration file for ESP-Prog boards. --- diff --git a/docs/en/api-guides/jtag-debugging/esp32h2.inc b/docs/en/api-guides/jtag-debugging/esp32h2.inc index 77e1ecddef..ccf972497e 100644 --- a/docs/en/api-guides/jtag-debugging/esp32h2.inc +++ b/docs/en/api-guides/jtag-debugging/esp32h2.inc @@ -100,7 +100,7 @@ - ESP32-H2 target configuration file. Can be used together with one of the ``interface/`` configuration files. * - ``interface/esp_usb_jtag.cfg`` - JTAG adapter configuration file for ESP32-H2. - * - ``interface/ftdi/esp32_devkitj_v1.cfg`` + * - ``interface/ftdi/esp_ftdi.cfg`` - JTAG adapter configuration file for ESP-Prog boards. --- diff --git a/docs/en/api-guides/jtag-debugging/esp32p4.inc b/docs/en/api-guides/jtag-debugging/esp32p4.inc index ea9b7d8140..8dbfe31932 100644 --- a/docs/en/api-guides/jtag-debugging/esp32p4.inc +++ b/docs/en/api-guides/jtag-debugging/esp32p4.inc @@ -107,7 +107,7 @@ - ESP32-P4 target configuration file. Can be used together with one of the ``interface/`` configuration files. * - ``interface/esp_usb_jtag.cfg`` - JTAG adapter configuration file for ESP32-P4. - * - ``interface/ftdi/esp32p4_ftdi.cfg`` + * - ``interface/ftdi/esp_ftdi.cfg`` - JTAG adapter configuration file for ESP-Prog boards. --- diff --git a/docs/en/api-guides/jtag-debugging/esp32s2.inc b/docs/en/api-guides/jtag-debugging/esp32s2.inc index 3e01100c92..f125e14db5 100644 --- a/docs/en/api-guides/jtag-debugging/esp32s2.inc +++ b/docs/en/api-guides/jtag-debugging/esp32s2.inc @@ -92,7 +92,7 @@ - ESP32-S2 target configuration file. Can be used together with one of the ``interface/`` configuration files. * - ``interface/ftdi/esp32s2_kaluga_v1.cfg`` - JTAG adapter configuration file for ESP32-S2-Kaluga-1 board. - * - ``interface/ftdi/esp32_devkitj_v1.cfg`` + * - ``interface/ftdi/esp_ftdi.cfg`` - JTAG adapter configuration file for ESP-Prog boards. --- diff --git a/docs/en/api-guides/jtag-debugging/esp32s3.inc b/docs/en/api-guides/jtag-debugging/esp32s3.inc index ce17ae7363..49e3cdc665 100644 --- a/docs/en/api-guides/jtag-debugging/esp32s3.inc +++ b/docs/en/api-guides/jtag-debugging/esp32s3.inc @@ -101,7 +101,7 @@ - ESP32-S3 target configuration file. Can be used together with one of the ``interface/`` configuration files. * - ``interface/ftdi/esp_usb_jtag.cfg`` - JTAG adapter configuration file for ESP32-S3 builtin USB JTAG. - * - ``interface/ftdi/esp32_devkitj_v1.cfg`` + * - ``interface/ftdi/esp_ftdi.cfg`` - JTAG adapter configuration file for ESP-Prog debug adapter board. --- diff --git a/docs/zh_CN/COPYRIGHT.rst b/docs/zh_CN/COPYRIGHT.rst index 527b3ce000..de29353097 100644 --- a/docs/zh_CN/COPYRIGHT.rst +++ b/docs/zh_CN/COPYRIGHT.rst @@ -67,7 +67,7 @@ * :component:`HTTP 解析器 ` 基于 NGINX 中的 src/http/ngx_http_parse.c 文件,版权归 Igor Sysoev 所有。任何对源代码的额外修改经过与 NGINX、Joyent 公司及其他 Node 贡献者相同条款的许可。详情请参阅 :component_file:`LICENSE 文件 `。 -* `SEGGER SystemView`_ 目标端库,版权归 1995-2021 赛格集团所有,并根据一条款 BSD 许可证进行许可。 +* `SEGGER SystemView`_ 目标端库,版权归 1995-2024 赛格集团所有,并根据一条款 BSD 许可证进行许可。 * `protobuf-c`_ 是 C 语言的 Protocol Buffers 实现,版权归 2008-2022 Dave Benson 及 protobuf-c 作者所有。详情请参阅 :component_file:`LICENSE 文件 `。 diff --git a/docs/zh_CN/api-guides/jtag-debugging/esp32.inc b/docs/zh_CN/api-guides/jtag-debugging/esp32.inc index 44ed937665..572499a6b6 100644 --- a/docs/zh_CN/api-guides/jtag-debugging/esp32.inc +++ b/docs/zh_CN/api-guides/jtag-debugging/esp32.inc @@ -97,7 +97,7 @@ - ESP32 的目标配置文件,可以和某个 ``interface/`` 下的配置文件一同使用 * - ``target/esp32-solo-1.cfg`` - ESP32-SOLO-1 模组的目标配置文件,和 ``esp32.cfg`` 的差别在于它仅配置一个 CPU - * - ``interface/ftdi/esp32_devkitj_v1.cfg`` + * - ``interface/ftdi/esp_ftdi.cfg`` - 适用于 ESP-WROVER-KIT 和 ESP-Prog 的 JTAG 适配器配置文件 --- diff --git a/docs/zh_CN/api-guides/jtag-debugging/esp32c2.inc b/docs/zh_CN/api-guides/jtag-debugging/esp32c2.inc index 7d642aabe9..9495de33d6 100644 --- a/docs/zh_CN/api-guides/jtag-debugging/esp32c2.inc +++ b/docs/zh_CN/api-guides/jtag-debugging/esp32c2.inc @@ -94,7 +94,7 @@ - Board configuration file for ESP32-C2 debug through an ESP-Prog compatible FTDI, includes target and adapter configuration. * - ``target/esp32c2.cfg`` - ESP32-C2 target configuration file. Can be used together with one of the ``interface/`` configuration files. - * - ``interface/ftdi/esp32_devkitj_v1.cfg`` + * - ``interface/ftdi/esp_ftdi.cfg`` - JTAG adapter configuration file for ESP-Prog boards. --- diff --git a/docs/zh_CN/api-guides/jtag-debugging/esp32c3.inc b/docs/zh_CN/api-guides/jtag-debugging/esp32c3.inc index bdc0945c1b..73927ed97c 100644 --- a/docs/zh_CN/api-guides/jtag-debugging/esp32c3.inc +++ b/docs/zh_CN/api-guides/jtag-debugging/esp32c3.inc @@ -97,7 +97,7 @@ - ESP32-C3 目标配置文件。可以和某个 ``interface/`` 下的配置文件一同使用。 * - ``interface/esp_usb_jtag.cfg`` - 适用于 ESP32-C3 的 JTAG 适配器配置文件。 - * - ``interface/ftdi/esp32_devkitj_v1.cfg`` + * - ``interface/ftdi/esp_ftdi.cfg`` - 适用于 ESP-Prog 的 JTAG 适配器配置文件。 --- diff --git a/docs/zh_CN/api-guides/jtag-debugging/esp32c5.inc b/docs/zh_CN/api-guides/jtag-debugging/esp32c5.inc index d4f87e35b6..bc492498f3 100644 --- a/docs/zh_CN/api-guides/jtag-debugging/esp32c5.inc +++ b/docs/zh_CN/api-guides/jtag-debugging/esp32c5.inc @@ -103,7 +103,7 @@ - ESP32-C5 target configuration file. Can be used together with one of the ``interface/`` configuration files. * - ``interface/esp_usb_jtag.cfg`` - JTAG adapter configuration file for ESP32-C5. - * - ``interface/ftdi/esp32_devkitj_v1.cfg`` + * - ``interface/ftdi/esp_ftdi.cfg`` - JTAG adapter configuration file for ESP-Prog boards. --- diff --git a/docs/zh_CN/api-guides/jtag-debugging/esp32c6.inc b/docs/zh_CN/api-guides/jtag-debugging/esp32c6.inc index 3f7ae0920a..a4447969f8 100644 --- a/docs/zh_CN/api-guides/jtag-debugging/esp32c6.inc +++ b/docs/zh_CN/api-guides/jtag-debugging/esp32c6.inc @@ -102,7 +102,7 @@ - ESP32-C6 target configuration file. Can be used together with one of the ``interface/`` configuration files. * - ``interface/esp_usb_jtag.cfg`` - JTAG adapter configuration file for ESP32-C6. - * - ``interface/ftdi/esp32_devkitj_v1.cfg`` + * - ``interface/ftdi/esp_ftdi.cfg`` - JTAG adapter configuration file for ESP-Prog boards. --- diff --git a/docs/zh_CN/api-guides/jtag-debugging/esp32c61.inc b/docs/zh_CN/api-guides/jtag-debugging/esp32c61.inc index e56c488598..c5fd821a77 100644 --- a/docs/zh_CN/api-guides/jtag-debugging/esp32c61.inc +++ b/docs/zh_CN/api-guides/jtag-debugging/esp32c61.inc @@ -103,7 +103,7 @@ - ESP32-C61 target configuration file. Can be used together with one of the ``interface/`` configuration files. * - ``interface/esp_usb_jtag.cfg`` - JTAG adapter configuration file for ESP32-C61. - * - ``interface/ftdi/esp32_devkitj_v1.cfg`` + * - ``interface/ftdi/esp_ftdi.cfg`` - JTAG adapter configuration file for ESP-Prog boards. --- diff --git a/docs/zh_CN/api-guides/jtag-debugging/esp32h2.inc b/docs/zh_CN/api-guides/jtag-debugging/esp32h2.inc index 77e1ecddef..ccf972497e 100644 --- a/docs/zh_CN/api-guides/jtag-debugging/esp32h2.inc +++ b/docs/zh_CN/api-guides/jtag-debugging/esp32h2.inc @@ -100,7 +100,7 @@ - ESP32-H2 target configuration file. Can be used together with one of the ``interface/`` configuration files. * - ``interface/esp_usb_jtag.cfg`` - JTAG adapter configuration file for ESP32-H2. - * - ``interface/ftdi/esp32_devkitj_v1.cfg`` + * - ``interface/ftdi/esp_ftdi.cfg`` - JTAG adapter configuration file for ESP-Prog boards. --- diff --git a/docs/zh_CN/api-guides/jtag-debugging/esp32p4.inc b/docs/zh_CN/api-guides/jtag-debugging/esp32p4.inc index ea9b7d8140..8dbfe31932 100644 --- a/docs/zh_CN/api-guides/jtag-debugging/esp32p4.inc +++ b/docs/zh_CN/api-guides/jtag-debugging/esp32p4.inc @@ -107,7 +107,7 @@ - ESP32-P4 target configuration file. Can be used together with one of the ``interface/`` configuration files. * - ``interface/esp_usb_jtag.cfg`` - JTAG adapter configuration file for ESP32-P4. - * - ``interface/ftdi/esp32p4_ftdi.cfg`` + * - ``interface/ftdi/esp_ftdi.cfg`` - JTAG adapter configuration file for ESP-Prog boards. --- diff --git a/docs/zh_CN/api-guides/jtag-debugging/esp32s2.inc b/docs/zh_CN/api-guides/jtag-debugging/esp32s2.inc index bc134d694f..90f90a335f 100644 --- a/docs/zh_CN/api-guides/jtag-debugging/esp32s2.inc +++ b/docs/zh_CN/api-guides/jtag-debugging/esp32s2.inc @@ -92,7 +92,7 @@ - ESP32-S2 目标配置文件,可以和某个 ``interface/`` 下的配置文件一同使用 * - ``interface/ftdi/esp32s2_kaluga_v1.cfg`` - 适用于 ESP32-S2-Kaluga-1 开发板的 JTAG 适配器配置文件 - * - ``interface/ftdi/esp32_devkitj_v1.cfg`` + * - ``interface/ftdi/esp_ftdi.cfg`` - 适用于 ESP-Prog 板的 JTAG 适配器配置文件 --- diff --git a/docs/zh_CN/api-guides/jtag-debugging/esp32s3.inc b/docs/zh_CN/api-guides/jtag-debugging/esp32s3.inc index 9a4f403427..79d3f2dac8 100644 --- a/docs/zh_CN/api-guides/jtag-debugging/esp32s3.inc +++ b/docs/zh_CN/api-guides/jtag-debugging/esp32s3.inc @@ -101,7 +101,7 @@ - ESP32-S3 目标配置文件,可以和某个 ``interface/`` 下的配置文件一同使用 * - ``interface/ftdi/esp_usb_jtag.cfg`` - 适用于 ESP32-S3 的 JTAG 适配器配置文件。 - * - ``interface/ftdi/esp32_devkitj_v1.cfg`` + * - ``interface/ftdi/esp_ftdi.cfg`` - 适用于 ESP-Prog 的 JTAG 适配器配置文件。 --- diff --git a/tools/esp_app_trace/espytrace/sysview.py b/tools/esp_app_trace/espytrace/sysview.py index f19265a7c0..234bc90cd2 100644 --- a/tools/esp_app_trace/espytrace/sysview.py +++ b/tools/esp_app_trace/espytrace/sysview.py @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2022-2024 Espressif Systems (Shanghai) CO LTD +# SPDX-FileCopyrightText: 2022-2025 Espressif Systems (Shanghai) CO LTD # SPDX-License-Identifier: Apache-2.0 import copy import json @@ -7,41 +7,42 @@ import struct import espytrace.apptrace as apptrace -SYSVIEW_EVTID_NOP = 0 # Dummy packet. -SYSVIEW_EVTID_OVERFLOW = 1 -SYSVIEW_EVTID_ISR_ENTER = 2 -SYSVIEW_EVTID_ISR_EXIT = 3 -SYSVIEW_EVTID_TASK_START_EXEC = 4 -SYSVIEW_EVTID_TASK_STOP_EXEC = 5 -SYSVIEW_EVTID_TASK_START_READY = 6 -SYSVIEW_EVTID_TASK_STOP_READY = 7 -SYSVIEW_EVTID_TASK_CREATE = 8 -SYSVIEW_EVTID_TASK_INFO = 9 -SYSVIEW_EVTID_TRACE_START = 10 -SYSVIEW_EVTID_TRACE_STOP = 11 -SYSVIEW_EVTID_SYSTIME_CYCLES = 12 -SYSVIEW_EVTID_SYSTIME_US = 13 -SYSVIEW_EVTID_SYSDESC = 14 -SYSVIEW_EVTID_MARK_START = 15 -SYSVIEW_EVTID_MARK_STOP = 16 -SYSVIEW_EVTID_IDLE = 17 -SYSVIEW_EVTID_ISR_TO_SCHEDULER = 18 -SYSVIEW_EVTID_TIMER_ENTER = 19 -SYSVIEW_EVTID_TIMER_EXIT = 20 -SYSVIEW_EVTID_STACK_INFO = 21 -SYSVIEW_EVTID_MODULEDESC = 22 -SYSVIEW_EVTID_INIT = 24 -SYSVIEW_EVENT_ID_PREDEF_LEN_MAX = SYSVIEW_EVTID_INIT -SYSVIEW_EVTID_NAME_RESOURCE = 25 -SYSVIEW_EVTID_PRINT_FORMATTED = 26 -SYSVIEW_EVTID_NUMMODULES = 27 -SYSVIEW_EVENT_ID_PREDEF_MAX = SYSVIEW_EVTID_NUMMODULES +SYSVIEW_EVTID_NOP = 0 # Dummy packet. +SYSVIEW_EVTID_OVERFLOW = 1 +SYSVIEW_EVTID_ISR_ENTER = 2 +SYSVIEW_EVTID_ISR_EXIT = 3 +SYSVIEW_EVTID_TASK_START_EXEC = 4 +SYSVIEW_EVTID_TASK_STOP_EXEC = 5 +SYSVIEW_EVTID_TASK_START_READY = 6 +SYSVIEW_EVTID_TASK_STOP_READY = 7 +SYSVIEW_EVTID_TASK_CREATE = 8 +SYSVIEW_EVTID_TASK_INFO = 9 +SYSVIEW_EVTID_TRACE_START = 10 +SYSVIEW_EVTID_TRACE_STOP = 11 +SYSVIEW_EVTID_SYSTIME_CYCLES = 12 +SYSVIEW_EVTID_SYSTIME_US = 13 +SYSVIEW_EVTID_SYSDESC = 14 +SYSVIEW_EVTID_MARK_START = 15 +SYSVIEW_EVTID_MARK_STOP = 16 +SYSVIEW_EVTID_IDLE = 17 +SYSVIEW_EVTID_ISR_TO_SCHEDULER = 18 +SYSVIEW_EVTID_TIMER_ENTER = 19 +SYSVIEW_EVTID_TIMER_EXIT = 20 +SYSVIEW_EVTID_STACK_INFO = 21 +SYSVIEW_EVTID_MODULEDESC = 22 +SYSVIEW_EVTID_DATA_SAMPLE = 23 +SYSVIEW_EVTID_INIT = 24 +SYSVIEW_EVENT_ID_PREDEF_LEN_MAX = SYSVIEW_EVTID_INIT +SYSVIEW_EVTID_NAME_RESOURCE = 25 +SYSVIEW_EVTID_PRINT_FORMATTED = 26 +SYSVIEW_EVTID_NUMMODULES = 27 +SYSVIEW_EVENT_ID_PREDEF_MAX = SYSVIEW_EVTID_NUMMODULES -SYSVIEW_EVENT_ID_MAX = 200 +SYSVIEW_EVENT_ID_MAX = 200 -SYSVIEW_MODULE_EVENT_OFFSET = 512 +SYSVIEW_MODULE_EVENT_OFFSET = 512 -SYSVIEW_SYNC_LEN = 10 +SYSVIEW_SYNC_LEN = 10 _sysview_events_map = { 'SYS_NOP': SYSVIEW_EVTID_NOP, @@ -66,11 +67,12 @@ _sysview_events_map = { 'SYS_TIMER_ENTER': SYSVIEW_EVTID_TIMER_ENTER, 'SYS_TIMER_EXIT': SYSVIEW_EVTID_TIMER_EXIT, 'SYS_STACK_INFO': SYSVIEW_EVTID_STACK_INFO, - 'SYS_MODULEDESC': SYSVIEW_EVTID_INIT, + 'SYS_MODULEDESC': SYSVIEW_EVTID_MODULEDESC, + 'SYS_DATA_SAMPLE': SYSVIEW_EVTID_DATA_SAMPLE, 'SYS_INIT': SYSVIEW_EVTID_INIT, 'SYS_NAME_RESOURCE': SYSVIEW_EVTID_NAME_RESOURCE, 'SYS_PRINT_FORMATTED': SYSVIEW_EVTID_PRINT_FORMATTED, - 'SYS_NUMMODULES': SYSVIEW_EVTID_NUMMODULES + 'SYS_NUMMODULES': SYSVIEW_EVTID_NUMMODULES, } _os_events_map = {} @@ -92,7 +94,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) - parser.esp_ext = ('; ESP_Extension\n' in _read_file_header(reader)) + _read_file_header(reader) _read_init_seq(reader) while True: event = parser.read_event(reader, _os_events_map) @@ -197,14 +199,14 @@ def _decode_u32(reader): sz = 0 val = 0 while True: - b, = struct.unpack('= SYSVIEW_EVENT_ID_PREDEF_LEN_MAX and self.plen != params_len: - raise SysViewTraceParseError('Invalid event {}({:d}) payload len {:d}! Must be {:d}.'.format(self.name, self.id, self.plen, params_len)) + raise SysViewTraceParseError( + 'Invalid event {}({:d}) payload len {:d}! Must be {:d}.'.format( + self.name, self.id, self.plen, params_len + ) + ) def __str__(self): params = '' @@ -373,23 +385,26 @@ class SysViewEvent(apptrace.TraceEvent): params += '{}, '.format(param) if len(params): params = params[:-2] # remove trailing ', ' - return '{:.9f} - core[{:d}].{}({:d}), plen {:d}: [{}]'.format(self.ts, self.core_id, self.name, self.id, self.plen, params) + return '{:.9f} - core[{:d}].{}({:d}), plen {:d}: [{}]'.format( + self.ts, self.core_id, self.name, self.id, self.plen, params + ) class SysViewEventParam: """ - Abstract base SystemView event's parameter class. This is a base class for all event's parameters. + Abstract base SystemView event's parameter class. This is a base class for all event's parameters. """ + def __init__(self, name, decode_func): """ - Constructor. + Constructor. - Parameters - ---------- - name : string - Event parameter name. - decode_func : callable object - Parameter decoding function. + Parameters + ---------- + name : string + Event parameter name. + decode_func : callable object + Parameter decoding function. """ self.name = name self.decode_func = decode_func @@ -399,19 +414,19 @@ class SysViewEventParam: def decode(self, reader, max_sz): """ - Reads and decodes events parameter. + Reads and decodes events parameter. - Parameters - ---------- - reader : apptrace.Reader - Trace reader object. - max_sz : int - Maximum number of bytes to read. + Parameters + ---------- + reader : apptrace.Reader + Trace reader object. + max_sz : int + Maximum number of bytes to read. - Returns - ------- - tuple - a tuple containing number of read bytes and decoded value. + Returns + ------- + tuple + a tuple containing number of read bytes and decoded value. """ pass @@ -424,103 +439,136 @@ class SysViewEventParam: class SysViewEventParamSimple(SysViewEventParam): """ - Simple SystemView event's parameter class. + Simple SystemView event's parameter class. """ + def decode(self, reader, max_sz): """ - see SysViewEventParam.decode() + see SysViewEventParam.decode() """ return self.decode_func(reader) class SysViewEventParamArray(SysViewEventParamSimple): """ - Array SystemView event's parameter class. + Array SystemView event's parameter class. """ + def __init__(self, name, decode_func, size=-1): """ - Constructor. + Constructor. - Parameters - ---------- - name : string - see SysViewEventParam.__init__() - decode_func : callable object - see SysViewEventParam.__init__() - size : int - Array's size. If -1 decode() will try to read all bytes from reader. + Parameters + ---------- + name : string + see SysViewEventParam.__init__() + decode_func : callable object + see SysViewEventParam.__init__() + size : int + Array's size. If -1 decode() will try to read all bytes from reader. """ SysViewEventParamSimple.__init__(self, name, decode_func) self.arr_size = size def decode(self, reader, max_sz): """ - see SysViewEventParam.decode() + see SysViewEventParam.decode() """ tottal_sz = 0 vals = [] i = 0 while tottal_sz < max_sz: - sz,val = self.decode_func(reader) + sz, val = self.decode_func(reader) vals.append(val) tottal_sz += sz i += 1 if self.arr_size != -1 and i == self.arr_size: break - return tottal_sz,vals + return tottal_sz, vals class SysViewPredefinedEvent(SysViewEvent): """ - Pre-defined SystemView events class. + Pre-defined SystemView events class. """ + _predef_events_fmt = { - SYSVIEW_EVTID_NOP: ('svNop', []), - SYSVIEW_EVTID_OVERFLOW: ('svOverflow', [SysViewEventParamSimple('drop_cnt', _decode_u32)]), - SYSVIEW_EVTID_ISR_ENTER: ('svIsrEnter', [SysViewEventParamSimple('irq_num', _decode_u32)]), - SYSVIEW_EVTID_ISR_EXIT: ('svIsrExit', []), - SYSVIEW_EVTID_TASK_START_EXEC: ('svTaskStartExec', [SysViewEventParamSimple('tid', _decode_id)]), - SYSVIEW_EVTID_TASK_STOP_EXEC: ('svTaskStopExec', []), + SYSVIEW_EVTID_NOP: ('svNop', []), + SYSVIEW_EVTID_OVERFLOW: ('svOverflow', [SysViewEventParamSimple('drop_cnt', _decode_u32)]), + SYSVIEW_EVTID_ISR_ENTER: ('svIsrEnter', [SysViewEventParamSimple('irq_num', _decode_u32)]), + SYSVIEW_EVTID_ISR_EXIT: ('svIsrExit', []), + SYSVIEW_EVTID_TASK_START_EXEC: ('svTaskStartExec', [SysViewEventParamSimple('tid', _decode_id)]), + SYSVIEW_EVTID_TASK_STOP_EXEC: ('svTaskStopExec', []), SYSVIEW_EVTID_TASK_START_READY: ('svTaskStartReady', [SysViewEventParamSimple('tid', _decode_id)]), - SYSVIEW_EVTID_TASK_STOP_READY: ('svTaskStopReady', [SysViewEventParamSimple('tid', _decode_id), - SysViewEventParamSimple('cause', _decode_u32)]), - SYSVIEW_EVTID_TASK_CREATE: ('svTaskCreate', [SysViewEventParamSimple('tid', _decode_id)]), - SYSVIEW_EVTID_TASK_INFO: ('svTaskInfo', [SysViewEventParamSimple('tid', _decode_id), - SysViewEventParamSimple('prio', _decode_u32), - SysViewEventParamSimple('name', _decode_str)]), - SYSVIEW_EVTID_TRACE_START: ('svTraceStart', []), - SYSVIEW_EVTID_TRACE_STOP: ('svTraceStop', []), - SYSVIEW_EVTID_SYSTIME_CYCLES: ('svSysTimeCycles', [SysViewEventParamSimple('cycles', _decode_u32)]), - SYSVIEW_EVTID_SYSTIME_US: ('svSysTimeUs', [SysViewEventParamSimple('time', _decode_u64)]), - SYSVIEW_EVTID_SYSDESC: ('svSysDesc', [SysViewEventParamSimple('desc', _decode_str)]), - SYSVIEW_EVTID_MARK_START: ('svUserStart', [SysViewEventParamSimple('user_id', _decode_u32)]), - SYSVIEW_EVTID_MARK_STOP: ('svUserStop', [SysViewEventParamSimple('user_id', _decode_u32)]), - SYSVIEW_EVTID_IDLE: ('svIdle', []), + SYSVIEW_EVTID_TASK_STOP_READY: ( + 'svTaskStopReady', + [SysViewEventParamSimple('tid', _decode_id), SysViewEventParamSimple('cause', _decode_u32)], + ), + SYSVIEW_EVTID_TASK_CREATE: ('svTaskCreate', [SysViewEventParamSimple('tid', _decode_id)]), + SYSVIEW_EVTID_TASK_INFO: ( + 'svTaskInfo', + [ + SysViewEventParamSimple('tid', _decode_id), + SysViewEventParamSimple('prio', _decode_u32), + SysViewEventParamSimple('name', _decode_str), + ], + ), + SYSVIEW_EVTID_TRACE_START: ('svTraceStart', []), + SYSVIEW_EVTID_TRACE_STOP: ('svTraceStop', []), + SYSVIEW_EVTID_SYSTIME_CYCLES: ('svSysTimeCycles', [SysViewEventParamSimple('cycles', _decode_u32)]), + SYSVIEW_EVTID_SYSTIME_US: ('svSysTimeUs', [SysViewEventParamSimple('time', _decode_u64)]), + SYSVIEW_EVTID_SYSDESC: ('svSysDesc', [SysViewEventParamSimple('desc', _decode_str)]), + SYSVIEW_EVTID_MARK_START: ('svUserStart', [SysViewEventParamSimple('user_id', _decode_u32)]), + SYSVIEW_EVTID_MARK_STOP: ('svUserStop', [SysViewEventParamSimple('user_id', _decode_u32)]), + SYSVIEW_EVTID_IDLE: ('svIdle', []), SYSVIEW_EVTID_ISR_TO_SCHEDULER: ('svExitIsrToScheduler', []), - SYSVIEW_EVTID_TIMER_ENTER: ('svTimerEnter', [SysViewEventParamSimple('tim_id', _decode_u32)]), - SYSVIEW_EVTID_TIMER_EXIT: ('svTimerExit', []), - SYSVIEW_EVTID_STACK_INFO: ('svStackInfo', [SysViewEventParamSimple('tid', _decode_id), - SysViewEventParamSimple('base', _decode_u32), - SysViewEventParamSimple('sz', _decode_u32), - SysViewEventParamSimple('unused', _decode_u32)]), - SYSVIEW_EVTID_MODULEDESC: ('svModuleDesc', [SysViewEventParamSimple('mod_id', _decode_u32), - SysViewEventParamSimple('evt_off', _decode_u32), - SysViewEventParamSimple('desc', _decode_str)]), - SYSVIEW_EVTID_INIT: ('svInit', [SysViewEventParamSimple('sys_freq', _decode_u32), - SysViewEventParamSimple('cpu_freq', _decode_u32), - SysViewEventParamSimple('ram_base', _decode_u32), - SysViewEventParamSimple('id_shift', _decode_u32)]), - SYSVIEW_EVTID_NAME_RESOURCE: ('svNameResource', [SysViewEventParamSimple('res_id', _decode_u32), - SysViewEventParamSimple('name', _decode_str)]), - SYSVIEW_EVTID_PRINT_FORMATTED: ('svPrint', [SysViewEventParamSimple('msg', _decode_str), - SysViewEventParamSimple('lvl', _decode_u32), - SysViewEventParamSimple('unused', _decode_u32)]), - SYSVIEW_EVTID_NUMMODULES: ('svNumModules', [SysViewEventParamSimple('mod_cnt', _decode_u32)]), + SYSVIEW_EVTID_TIMER_ENTER: ('svTimerEnter', [SysViewEventParamSimple('tim_id', _decode_u32)]), + SYSVIEW_EVTID_TIMER_EXIT: ('svTimerExit', []), + SYSVIEW_EVTID_STACK_INFO: ( + 'svStackInfo', + [ + SysViewEventParamSimple('tid', _decode_id), + SysViewEventParamSimple('base', _decode_u32), + SysViewEventParamSimple('sz', _decode_u32), + SysViewEventParamSimple('unused', _decode_u32), + ], + ), + SYSVIEW_EVTID_MODULEDESC: ( + 'svModuleDesc', + [ + SysViewEventParamSimple('mod_id', _decode_u32), + SysViewEventParamSimple('evt_off', _decode_u32), + SysViewEventParamSimple('desc', _decode_str), + ], + ), + SYSVIEW_EVTID_INIT: ( + 'svInit', + [ + SysViewEventParamSimple('sys_freq', _decode_u32), + SysViewEventParamSimple('cpu_freq', _decode_u32), + SysViewEventParamSimple('ram_base', _decode_u32), + SysViewEventParamSimple('id_shift', _decode_u32), + ], + ), + SYSVIEW_EVTID_DATA_SAMPLE: ('svDataSample', []), + SYSVIEW_EVTID_NAME_RESOURCE: ( + 'svNameResource', + [SysViewEventParamSimple('res_id', _decode_u32), SysViewEventParamSimple('name', _decode_str)], + ), + SYSVIEW_EVTID_PRINT_FORMATTED: ( + 'svPrint', + [ + SysViewEventParamSimple('msg', _decode_str), + SysViewEventParamSimple('lvl', _decode_u32), + SysViewEventParamSimple('unused', _decode_u32), + ], + ), + SYSVIEW_EVTID_NUMMODULES: ('svNumModules', [SysViewEventParamSimple('mod_cnt', _decode_u32)]), } def __init__(self, evt_id, core_id, reader): """ - see SysViewEvent.__init__() + see SysViewEvent.__init__() """ SysViewEvent.__init__(self, evt_id, core_id, reader, self._predef_events_fmt) # self.name = 'SysViewPredefinedEvent' @@ -528,11 +576,12 @@ class SysViewPredefinedEvent(SysViewEvent): class SysViewOSEvent(SysViewEvent): """ - OS related SystemView events class. + OS related SystemView events class. """ + def __init__(self, evt_id, core_id, reader, events_fmt_map): """ - see SysViewEvent.__init__() + see SysViewEvent.__init__() """ SysViewEvent.__init__(self, evt_id, core_id, reader, events_fmt_map) # self.name = 'SysViewOSEvent' @@ -540,70 +589,79 @@ class SysViewOSEvent(SysViewEvent): class SysViewHeapEvent(SysViewEvent): """ - Heap related SystemView events class. + Heap related SystemView events class. - Attributes - ---------- - events_fmt : dict - see return value of _read_events_map() + Attributes + ---------- + events_fmt : dict + see return value of _read_events_map() """ + events_fmt = { - 0: ('esp_sysview_heap_trace_alloc', [SysViewEventParamSimple('addr', _decode_u32), - SysViewEventParamSimple('size', _decode_u32), - SysViewEventParamArray('callers', _decode_u32)]), - 1: ('esp_sysview_heap_trace_free', [SysViewEventParamSimple('addr', _decode_u32), - SysViewEventParamArray('callers', _decode_u32)]), + 0: ( + 'esp_sysview_heap_trace_alloc', + [ + SysViewEventParamSimple('addr', _decode_u32), + SysViewEventParamSimple('size', _decode_u32), + SysViewEventParamArray('callers', _decode_u32), + ], + ), + 1: ( + 'esp_sysview_heap_trace_free', + [SysViewEventParamSimple('addr', _decode_u32), SysViewEventParamArray('callers', _decode_u32)], + ), } def __init__(self, evt_id, core_id, events_off, reader): """ - Constructor. Reads and optionally decodes event. + Constructor. Reads and optionally decodes event. - Parameters - ---------- - evt_id : int - see SysViewEvent.__init__() - events_off : int - Offset for heap events IDs. Greater or equal to SYSVIEW_MODULE_EVENT_OFFSET. - reader : apptrace.Reader - see SysViewEvent.__init__() - core_id : int - see SysViewEvent.__init__() + Parameters + ---------- + evt_id : int + see SysViewEvent.__init__() + events_off : int + Offset for heap events IDs. Greater or equal to SYSVIEW_MODULE_EVENT_OFFSET. + reader : apptrace.Reader + see SysViewEvent.__init__() + core_id : int + see SysViewEvent.__init__() """ cur_events_map = {} - for id in self.events_fmt: - cur_events_map[events_off + id] = self.events_fmt[id] + for _id in self.events_fmt: + cur_events_map[events_off + _id] = self.events_fmt[_id] SysViewEvent.__init__(self, evt_id, core_id, reader, cur_events_map) # self.name = 'SysViewHeapEvent' class SysViewTraceDataParser(apptrace.TraceDataProcessor): """ - Base SystemView trace data parser class. + Base SystemView trace data parser class. - Attributes - ---------- - STREAMID_SYS : int - system events stream ID. Reserved for internal uses. - STREAMID_LOG : int - log events stream ID. - STREAMID_HEAP : int - heap events stream ID. + Attributes + ---------- + STREAMID_SYS : int + system events stream ID. Reserved for internal uses. + STREAMID_LOG : int + log events stream ID. + STREAMID_HEAP : int + heap events stream ID. """ + STREAMID_SYS = -1 STREAMID_LOG = 0 STREAMID_HEAP = 1 def __init__(self, print_events=False, core_id=0): """ - Constructor. + Constructor. - Parameters - ---------- - print_events : bool - see apptrace.TraceDataProcessor.__init__() - core_id : int - id of the core this parser object relates to. + Parameters + ---------- + print_events : bool + see apptrace.TraceDataProcessor.__init__() + core_id : int + id of the core this parser object relates to. """ apptrace.TraceDataProcessor.__init__(self, print_events=print_events, keep_all_events=True) self.sys_info = None @@ -611,62 +669,61 @@ 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): """ - Parses IRQ description. + Parses IRQ description. - Parameters - ---------- - desc : string - IRQ description string. + Parameters + ---------- + desc : string + IRQ description string. - Returns - ------- - tuple - a tuple with IRQ number and name or None on error. + Returns + ------- + tuple + a tuple with IRQ number and name or None on error. """ m = re.match('I#([0-9]+)=(.+)', desc) if m: - return m.group(2),m.group(1) + return m.group(2), m.group(1) return None def _update_ts(self, ts): """ - Calculates real event timestamp. + Calculates real event timestamp. - Parameters - ---------- - ts : int - Event timestamp offset. + Parameters + ---------- + ts : int + Event timestamp offset. - Returns - ------- - float - real event timestamp. + Returns + ------- + float + real event timestamp. """ self._last_ts += ts return float(self._last_ts) / self.sys_info.params['sys_freq'].value def read_extension_event(self, evt_id, core_id, reader): """ - Reads extension event. - Default implementation which just reads out event. + Reads extension event. + Default implementation which just reads out event. - Parameters - ---------- - evt_id : int - Event ID. - reader : apptrace.Reader - Trace reader object. + Parameters + ---------- + evt_id : int + Event ID. + reader : apptrace.Reader + Trace reader object. - Returns - ------- - SysViewEvent - if this is top level parser returns object for generic event, - otherwise returns None indicating to the calling top level parser - that extension event are not supported. + Returns + ------- + SysViewEvent + if this is top level parser returns object for generic event, + otherwise returns None indicating to the calling top level parser + that extension event are not supported. """ if self.root_proc == self: # by default just read out and skip unknown event @@ -680,44 +737,38 @@ class SysViewTraceDataParser(apptrace.TraceDataProcessor): high_b &= ~(1 << 6) else: core_id = 0 - return high_b,core_id + return high_b, core_id def read_event(self, reader, os_evt_map): """ - Reads pre-defined or OS-related event. + Reads pre-defined or OS-related event. - Parameters - ---------- - reader : apptrace.Reader - Trace reader object. - os_evt_map : dict - see return value of _read_events_map() + Parameters + ---------- + reader : apptrace.Reader + Trace reader object. + os_evt_map : dict + see return value of _read_events_map() - Returns - ------- - SysViewEvent - pre-defined, OS-related or extension event object. + Returns + ------- + SysViewEvent + pre-defined, OS-related or extension event object. """ - evt_hdr, = struct.unpack('= (self.events_off + self.events_num)) else True + return ( + False + if ( + self.events_off < SYSVIEW_MODULE_EVENT_OFFSET + or event.id < self.events_off + or event.id >= (self.events_off + self.events_num) + ) + else True + ) class SysViewMultiTraceDataParser(SysViewTraceDataParser): """ - SystemView trace data parser supporting multiple event streams. + SystemView trace data parser supporting multiple event streams. """ + def __init__(self, print_events=False, core_id=0): """ - see SysViewTraceDataParser.__init__() + see SysViewTraceDataParser.__init__() """ SysViewTraceDataParser.__init__(self, print_events, core_id) self.stream_parsers = {} def add_stream_parser(self, stream_id, parser): """ - Assigns parser for events stream. + Assigns parser for events stream. - Parameters - ---------- - stream_id : int - stream ID. See SysViewTraceDataParser.STREAMID_xxx. - Parsers for SysViewTraceDataParser.STREAMID_SYS are ignored. - Top level parser is the default for SysViewTraceDataParser.STREAMID_SYS. - parser : SysViewTraceDataParser - parser object. + Parameters + ---------- + stream_id : int + stream ID. See SysViewTraceDataParser.STREAMID_xxx. + Parsers for SysViewTraceDataParser.STREAMID_SYS are ignored. + Top level parser is the default for SysViewTraceDataParser.STREAMID_SYS. + parser : SysViewTraceDataParser + parser object. """ if stream_id == SysViewTraceDataParser.STREAMID_SYS: return @@ -811,20 +870,20 @@ class SysViewMultiTraceDataParser(SysViewTraceDataParser): def read_extension_event(self, evt_id, core_id, reader): """ - Reads extension event. - Iterates over registered stream parsers trying to find one which supports that type of event. + Reads extension event. + Iterates over registered stream parsers trying to find one which supports that type of event. - Parameters - ---------- - evt_id : int - see SysViewTraceDataParser.read_extension_event() - reader : apptrace.Reader - see SysViewTraceDataParser.read_extension_event() + Parameters + ---------- + evt_id : int + see SysViewTraceDataParser.read_extension_event() + reader : apptrace.Reader + see SysViewTraceDataParser.read_extension_event() - Returns - ------- - SysViewEvent - object for extension event, if extension event is not supported return SysViewEvent instance. + Returns + ------- + SysViewEvent + object for extension event, if extension event is not supported return SysViewEvent instance. """ for stream_id in self.stream_parsers: evt = self.stream_parsers[stream_id].read_extension_event(evt_id, core_id, reader) @@ -834,36 +893,37 @@ class SysViewMultiTraceDataParser(SysViewTraceDataParser): def on_new_event(self, event): """ - Iterates over registered stream parsers allowing them to do - essential processing of event. Must be called for every read event. + Iterates over registered stream parsers allowing them to do + essential processing of event. Must be called for every read event. - Parameters - ---------- - event : SysViewEvent - Event object. + Parameters + ---------- + event : SysViewEvent + Event object. """ SysViewTraceDataParser.on_new_event(self, event) for stream_id in self.stream_parsers: self.stream_parsers[stream_id].on_new_event(event) -class SysViewEventContext(): +class SysViewEventContext: """ - SystemView event context. + SystemView event context. """ + def __init__(self, handle, irq, name=''): """ - Constructor. + Constructor. - Parameters - ---------- - handle : int - handle of the context: task ID or IRQ number. - irq : bool - flag indicating whether this is IRQ or task context. - name : string - name of the context: task or IRQ name. Empty if context is unknown. - """ + Parameters + ---------- + handle : int + handle of the context: task ID or IRQ number. + irq : bool + flag indicating whether this is IRQ or task context. + name : string + name of the context: task or IRQ name. Empty if context is unknown. + """ self.handle = handle self.irq = irq self.name = name @@ -871,20 +931,21 @@ class SysViewEventContext(): class SysViewTraceDataProcessor(apptrace.TraceDataProcessor): """ - Base SystemView trace data processor class. + Base SystemView trace data processor class. """ + def __init__(self, traces, root_proc=None, print_events=False, keep_all_events=False): """ - Constructor. + Constructor. - Parameters - ---------- - traces : list - list of parsers to process data from. - print_events : bool - see apptrace.TraceDataProcessor.__init__() - keep_all_events : bool - see apptrace.TraceDataProcessor.__init__() + Parameters + ---------- + traces : list + list of parsers to process data from. + print_events : bool + see apptrace.TraceDataProcessor.__init__() + keep_all_events : bool + see apptrace.TraceDataProcessor.__init__() """ apptrace.TraceDataProcessor.__init__(self, print_events, keep_all_events) self.event_ids = {} @@ -900,24 +961,25 @@ class SysViewTraceDataProcessor(apptrace.TraceDataProcessor): # empty list means IDLE context or self.start_ctx self.ctx_stack[t.core_id] = [] # context is undefined, we do not know have we started the tracing in task/IDLE or IRQ context - # in general there are three scenarios when we can start tracing: when core is in task, IDLE task or IRQ context + # in general there are three scenarios when we can start tracing: + # when core is in task, IDLE task or IRQ context self.prev_ctx[t.core_id] = None def _get_curr_context(self, core_id): """ - Returns current context. + Returns current context. - Parameters - ---------- - core_id : int - core ID for requested context. + Parameters + ---------- + core_id : int + core ID for requested context. - Returns - ------- - SysViewEventContext - context object - None - if there current is undefined + Returns + ------- + SysViewEventContext + context object + None + if there current is undefined """ if len(self.root_proc.ctx_stack[core_id]): return self.root_proc.ctx_stack[core_id][-1] @@ -927,35 +989,35 @@ class SysViewTraceDataProcessor(apptrace.TraceDataProcessor): def _get_prev_context(self, core_id): """ - Returns current context. + Returns current context. - Parameters - ---------- - core_id : int - core ID for requested context. + Parameters + ---------- + core_id : int + core ID for requested context. - Returns - ------- - SysViewEventContext - context object + Returns + ------- + SysViewEventContext + context object """ return self.root_proc.prev_ctx[core_id] def get_trace_stream(self, core_id, stream_id): """ - Retrieves parser for specified stream and core. + Retrieves parser for specified stream and core. - Parameters - ---------- - core_id : int - Parser's core ID. - stream_id : int - Parser's stream ID. + Parameters + ---------- + core_id : int + Parser's core ID. + stream_id : int + Parser's stream ID. - Returns - ------- - SysViewTraceDataParser - parser object for specified stream and core + Returns + ------- + SysViewTraceDataParser + parser object for specified stream and core """ if self.root_proc == self: return self.traces[core_id] @@ -963,49 +1025,41 @@ class SysViewTraceDataProcessor(apptrace.TraceDataProcessor): def event_supported(self, e): """ - Should be overridden in child class. + Should be overridden in child class. """ return False def handle_event(self, e): """ - Should be overridden in child class. + Should be overridden in child class. """ pass def print_report(self): """ - see apptrace.TraceDataProcessor.print_report() + see apptrace.TraceDataProcessor.print_report() """ apptrace.TraceDataProcessor.print_report(self) def _process_event(self, event): """ - Processes event. - Keeps track of execution context on every core. + Processes event. + Keeps track of execution context on every core. - Parameters - ---------- - event : SysViewEvent - Event object. + Parameters + ---------- + event : SysViewEvent + Event object. - Raises - ---------- - SysViewTraceParseError - if there is no parser for event's core or - if SYSVIEW_EVTID_ISR_ENTER is received for unknown IRQ or - if SYSVIEW_EVTID_TASK_START_EXEC or SYSVIEW_EVTID_TASK_STOP_READY is received for unknown task. + Raises + ---------- + SysViewTraceParseError + if there is no parser for event's core or + if SYSVIEW_EVTID_ISR_ENTER is received for unknown IRQ or + if SYSVIEW_EVTID_TASK_START_EXEC or SYSVIEW_EVTID_TASK_STOP_READY is received for unknown task. """ if event.core_id not in self.traces: - if 0 in self.traces and self.traces[0].esp_ext: - # for Espressif extension there is one trace for all cores - trace = self.traces[0] - if event.core_id not in self.ctx_stack: - self.ctx_stack[event.core_id] = [] - if event.core_id not in self.prev_ctx: - self.prev_ctx[event.core_id] = None - else: - raise SysViewTraceParseError('Event for unknown core %d' % event.core_id) + raise SysViewTraceParseError('Event for unknown core %d' % event.core_id) else: trace = self.traces[event.core_id] if event.id == SYSVIEW_EVTID_ISR_ENTER: @@ -1014,16 +1068,20 @@ class SysViewTraceDataProcessor(apptrace.TraceDataProcessor): if len(self.ctx_stack[event.core_id]): self.prev_ctx[event.core_id] = self.ctx_stack[event.core_id][-1] else: - # the 1st context switching event after trace start is SYSVIEW_EVTID_ISR_ENTER, so we have been in IDLE context + # the 1st context switching event after trace start is SYSVIEW_EVTID_ISR_ENTER, + # so we have been in IDLE context self.prev_ctx[event.core_id] = SysViewEventContext(None, False, 'IDLE%d' % event.core_id) # put new ISR context on top of the stack (the last in the list) - self.ctx_stack[event.core_id].append(SysViewEventContext(event.params['irq_num'].value, True, trace.irqs_info[event.params['irq_num'].value])) + self.ctx_stack[event.core_id].append( + SysViewEventContext(event.params['irq_num'].value, True, trace.irqs_info[event.params['irq_num'].value]) + ) elif event.id == SYSVIEW_EVTID_ISR_EXIT or event.id == SYSVIEW_EVTID_ISR_TO_SCHEDULER: if len(self.ctx_stack[event.core_id]): # return to the previous context (the last in the list) self.prev_ctx[event.core_id] = self.ctx_stack[event.core_id].pop() else: - # the 1st context switching event after trace start is SYSVIEW_EVTID_ISR_EXIT, so we have been in ISR context, + # the 1st context switching event after trace start is SYSVIEW_EVTID_ISR_EXIT, + # so we have been in ISR context, # but we do not know which one because SYSVIEW_EVTID_ISR_EXIT do not include the IRQ number self.prev_ctx[event.core_id] = SysViewEventContext(None, True, 'IRQ_oncore%d' % event.core_id) elif event.id == SYSVIEW_EVTID_TASK_START_EXEC: @@ -1033,10 +1091,13 @@ class SysViewTraceDataProcessor(apptrace.TraceDataProcessor): # return to the previous context (the last in the list) self.prev_ctx[event.core_id] = self.ctx_stack[event.core_id][-1] else: - # the 1st context switching event after trace start is SYSVIEW_EVTID_TASK_START_EXEC, so we have been in IDLE context + # the 1st context switching event after trace start is SYSVIEW_EVTID_TASK_START_EXEC, + # so we have been in IDLE context self.prev_ctx[event.core_id] = SysViewEventContext(None, False, 'IDLE%d' % event.core_id) # only one task at a time in context stack (can be interrupted by a bunch of ISRs) - self.ctx_stack[event.core_id] = [SysViewEventContext(event.params['tid'].value, False, trace.tasks_info[event.params['tid'].value])] + self.ctx_stack[event.core_id] = [ + SysViewEventContext(event.params['tid'].value, False, trace.tasks_info[event.params['tid'].value]) + ] elif event.id == SYSVIEW_EVTID_TASK_STOP_EXEC: # delete task from context stack for ctx in self.ctx_stack[event.core_id]: @@ -1050,16 +1111,22 @@ class SysViewTraceDataProcessor(apptrace.TraceDataProcessor): if event.params['tid'].value not in trace.tasks_info: raise SysViewTraceParseError('Stop ready unknown task 0x%x' % event.params['tid'].value) if len(self.ctx_stack[event.core_id]): - if (not self.ctx_stack[event.core_id][-1].irq and event.params['tid'].value == self.ctx_stack[event.core_id][-1].handle): + if ( + not self.ctx_stack[event.core_id][-1].irq + and event.params['tid'].value == self.ctx_stack[event.core_id][-1].handle + ): # return to the previous context (the last in the list) self.prev_ctx[event.core_id] = self.ctx_stack[event.core_id].pop() else: - # the 1st context switching event after trace start is SYSVIEW_EVTID_TASK_STOP_READY, so we have been in task context - self.prev_ctx[event.core_id] = SysViewEventContext(event.params['tid'].value, False, trace.tasks_info[event.params['tid'].value]) + # the 1st context switching event after trace start is SYSVIEW_EVTID_TASK_STOP_READY, + # so we have been in task context + self.prev_ctx[event.core_id] = SysViewEventContext( + event.params['tid'].value, False, trace.tasks_info[event.params['tid'].value] + ) def on_new_event(self, event): """ - Processes heap events. + Processes heap events. """ if self.root_proc == self: SysViewTraceDataProcessor._process_event(self, event) @@ -1088,7 +1155,7 @@ class SysViewTraceDataProcessor(apptrace.TraceDataProcessor): def merge_and_process(self): """ - Merges events from all registered parsers, sorts them by timestamp and processes them. + Merges events from all registered parsers, sorts them by timestamp and processes them. """ all_events = [] for t in self.traces.values(): @@ -1100,27 +1167,28 @@ class SysViewTraceDataProcessor(apptrace.TraceDataProcessor): class SysViewMultiStreamTraceDataProcessor(SysViewTraceDataProcessor): """ - SystemView trace data processor supporting multiple event streams. + SystemView trace data processor supporting multiple event streams. """ + def __init__(self, traces, print_events=False, keep_all_events=False): """ - see SysViewTraceDataProcessor.__init__() + see SysViewTraceDataProcessor.__init__() """ SysViewTraceDataProcessor.__init__(self, traces, print_events=print_events, keep_all_events=keep_all_events) self.stream_procs = {} def add_stream_processor(self, stream_id, proc): """ - Assigns processor for events stream. + Assigns processor for events stream. - Parameters - ---------- - stream_id : int - stream ID. See SysViewTraceDataParser.STREAMID_xxx. - Parsers for SysViewTraceDataParser.STREAMID_SYS are ignored. - Top level parser is the default for SysViewTraceDataParser.STREAMID_SYS. - proc : SysViewTraceDataProcessor - processor object. + Parameters + ---------- + stream_id : int + stream ID. See SysViewTraceDataParser.STREAMID_xxx. + Parsers for SysViewTraceDataParser.STREAMID_SYS are ignored. + Top level parser is the default for SysViewTraceDataParser.STREAMID_SYS. + proc : SysViewTraceDataProcessor + processor object. """ if stream_id == SysViewTraceDataParser.STREAMID_SYS: return @@ -1129,25 +1197,21 @@ class SysViewMultiStreamTraceDataProcessor(SysViewTraceDataProcessor): def get_trace_stream(self, core_id, stream_id): """ - Retrieves parser for specified stream and core. + Retrieves parser for specified stream and core. - Parameters - ---------- - core_id : int - Parser's core ID. - stream_id : int - Parser's stream ID. + Parameters + ---------- + core_id : int + Parser's core ID. + stream_id : int + Parser's stream ID. - Returns - ------- - SysViewTraceDataParser - parser object for specified stream and core + Returns + ------- + SysViewTraceDataParser + parser object for specified stream and core """ - if core_id not in self.traces and 0 in self.traces and self.traces[0].esp_ext: - # for Espressif extension there is one trace for all cores - trace = self.traces[0] - else: - trace = self.traces[core_id] + trace = self.traces[core_id] if stream_id == SysViewTraceDataParser.STREAMID_SYS: return trace if isinstance(trace, SysViewMultiTraceDataParser): @@ -1156,7 +1220,7 @@ class SysViewMultiStreamTraceDataProcessor(SysViewTraceDataProcessor): def print_report(self): """ - Iterates over registered stream processors and prints their reports. + Iterates over registered stream processors and prints their reports. """ SysViewTraceDataProcessor.print_report(self) # need to sort stream procs by keys to print reports in the same order regardless of Python version @@ -1167,7 +1231,7 @@ class SysViewMultiStreamTraceDataProcessor(SysViewTraceDataProcessor): def cleanup(self): """ - Iterates over registered stream processors and cleans them up. + Iterates over registered stream processors and cleans them up. """ for stream_id in self.stream_procs: self.stream_procs[stream_id].cleanup() @@ -1175,13 +1239,13 @@ class SysViewMultiStreamTraceDataProcessor(SysViewTraceDataProcessor): def on_new_event(self, event): """ - Iterates over registered stream processors allowing them to do - the processing of event. + Iterates over registered stream processors allowing them to do + the processing of event. - Parameters - ---------- - event : SysViewEvent - Event object. + Parameters + ---------- + event : SysViewEvent + Event object. """ SysViewTraceDataProcessor.on_new_event(self, event) for stream_id in self.stream_procs: @@ -1219,11 +1283,26 @@ class SysViewTraceDataJsonEncoder(json.JSONEncoder): callers = [] for addr in obj.params['callers'].value: callers.append('0x{:x}'.format(addr)) - return {'ctx_name': obj.ctx_name, 'in_irq': obj.in_irq, 'id': obj.id, 'core_id': obj.core_id, - 'ts': obj.ts, 'addr': blk_addr, 'size': blk_size, 'callers': callers} + return { + 'ctx_name': obj.ctx_name, + 'in_irq': obj.in_irq, + 'id': obj.id, + 'core_id': obj.core_id, + 'ts': obj.ts, + 'addr': blk_addr, + 'size': blk_size, + 'callers': callers, + } if isinstance(obj, SysViewPredefinedEvent) and obj.id == SYSVIEW_EVTID_PRINT_FORMATTED: - return {'ctx_name': obj.ctx_name, 'in_irq': obj.in_irq, 'id': obj.id, 'core_id': obj.core_id, - 'ts': obj.ts, 'msg': obj.params['msg'].value, 'lvl': obj.params['lvl'].value} + return { + 'ctx_name': obj.ctx_name, + 'in_irq': obj.in_irq, + 'id': obj.id, + 'core_id': obj.core_id, + 'ts': obj.ts, + 'msg': obj.params['msg'].value, + 'lvl': obj.params['lvl'].value, + } if isinstance(obj, SysViewEvent): jobj = obj.to_jsonable() # remove unused fields @@ -1238,44 +1317,56 @@ class SysViewTraceDataJsonEncoder(json.JSONEncoder): class SysViewHeapTraceDataParser(SysViewTraceDataExtEventParser): """ - SystemView trace data parser supporting heap events. + SystemView trace data parser supporting heap events. """ + def __init__(self, print_events=False, core_id=0): """ - SystemView trace data parser supporting multiple event streams. - see SysViewTraceDataExtEventParser.__init__() + SystemView trace data parser supporting multiple event streams. + see SysViewTraceDataExtEventParser.__init__() """ - SysViewTraceDataExtEventParser.__init__(self, events_num=len(SysViewHeapEvent.events_fmt.keys()), core_id=core_id, print_events=print_events) + SysViewTraceDataExtEventParser.__init__( + self, events_num=len(SysViewHeapEvent.events_fmt.keys()), core_id=core_id, print_events=print_events + ) def read_extension_event(self, evt_id, core_id, reader): """ - Reads heap event. - see SysViewTraceDataParser.read_extension_event() + Reads heap event. + see SysViewTraceDataParser.read_extension_event() """ - if (self.events_off >= SYSVIEW_MODULE_EVENT_OFFSET and evt_id >= self.events_off and - evt_id < self.events_off + self.events_num): + if ( + self.events_off >= SYSVIEW_MODULE_EVENT_OFFSET + and evt_id >= self.events_off + and evt_id < self.events_off + self.events_num + ): 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): """ - Keeps track of heap module descriptions. + Keeps track of heap module descriptions. """ if self.root_proc == self: SysViewTraceDataParser.on_new_event(self, event) - if event.id == SYSVIEW_EVTID_MODULEDESC and event.params['desc'].value == 'M=ESP32 SystemView Heap Tracing Module': + if ( + event.id == SYSVIEW_EVTID_MODULEDESC + and event.params['desc'].value == 'M=ESP32 SystemView Heap Tracing Module' + ): self.events_off = event.params['evt_off'].value class SysViewHeapTraceDataProcessor(SysViewTraceDataProcessor, apptrace.BaseHeapTraceDataProcessorImpl): """ - SystemView trace data processor supporting heap events. + SystemView trace data processor supporting heap events. """ - def __init__(self, toolchain_pref, elf_path, root_proc=None, traces=[], print_events=False, print_heap_events=False): + + def __init__( + self, toolchain_pref, elf_path, root_proc=None, traces=[], print_events=False, print_heap_events=False + ): """ - Constructor. - see SysViewTraceDataProcessor.__init__() - see apptrace.BaseHeapTraceDataProcessorImpl.__init__() + Constructor. + see SysViewTraceDataProcessor.__init__() + see apptrace.BaseHeapTraceDataProcessorImpl.__init__() """ SysViewTraceDataProcessor.__init__(self, traces, root_proc=root_proc, print_events=print_events) apptrace.BaseHeapTraceDataProcessorImpl.__init__(self, print_heap_events) @@ -1293,16 +1384,14 @@ class SysViewHeapTraceDataProcessor(SysViewTraceDataProcessor, apptrace.BaseHeap def handle_event(self, event): heap_stream = self.root_proc.get_trace_stream(event.core_id, SysViewTraceDataParser.STREAMID_HEAP) if (event.id - heap_stream.events_off) == 0: - heap_event = apptrace.HeapTraceEvent(event, True, toolchain=self.toolchain, - elf_path=self.elf_path) + heap_event = apptrace.HeapTraceEvent(event, True, toolchain=self.toolchain, elf_path=self.elf_path) else: - heap_event = apptrace.HeapTraceEvent(event, False, toolchain=self.toolchain, - elf_path=self.elf_path) + heap_event = apptrace.HeapTraceEvent(event, False, toolchain=self.toolchain, elf_path=self.elf_path) apptrace.BaseHeapTraceDataProcessorImpl.on_new_event(self, heap_event) def print_report(self): """ - see apptrace.TraceDataProcessor.print_report() + see apptrace.TraceDataProcessor.print_report() """ if self.root_proc == self: SysViewTraceDataProcessor.print_report(self) @@ -1311,42 +1400,44 @@ class SysViewHeapTraceDataProcessor(SysViewTraceDataProcessor, apptrace.BaseHeap class SysViewLogTraceEvent(apptrace.LogTraceEvent): """ - SystemView log event. + SystemView log event. """ + def __init__(self, ts, msg): """ - Constructor. + Constructor. - Parameters - ---------- - msg : string - Log message string. + Parameters + ---------- + msg : string + Log message string. """ self.msg = msg self.ts = ts def get_message(self, unused): """ - Retrieves log message. + Retrieves log message. - Returns - ------- - string - formatted log message + Returns + ------- + string + formatted log message """ return '[{:.9f}] LOG: {}'.format(self.ts, self.msg) class SysViewLogTraceDataParser(SysViewTraceDataParser): """ - SystemView trace data parser supporting log events. + SystemView trace data parser supporting log events. """ + def event_supported(self, event): return event.id == SYSVIEW_EVTID_PRINT_FORMATTED def on_new_event(self, event): """ - see SysViewTraceDataParser.on_new_event() + see SysViewTraceDataParser.on_new_event() """ if self.root_proc == self: SysViewTraceDataParser.on_new_event(self, event) @@ -1354,13 +1445,14 @@ class SysViewLogTraceDataParser(SysViewTraceDataParser): class SysViewLogTraceDataProcessor(SysViewTraceDataProcessor, apptrace.BaseLogTraceDataProcessorImpl): """ - SystemView trace data processor supporting heap events. + SystemView trace data processor supporting heap events. """ + def __init__(self, traces=[], root_proc=None, print_events=False, print_log_events=False): """ - Constructor. - see SysViewTraceDataProcessor.__init__() - see apptrace.BaseLogTraceDataProcessorImpl.__init__() + Constructor. + see SysViewTraceDataProcessor.__init__() + see apptrace.BaseLogTraceDataProcessorImpl.__init__() """ SysViewTraceDataProcessor.__init__(self, traces, root_proc=root_proc, print_events=print_events) apptrace.BaseLogTraceDataProcessorImpl.__init__(self, print_log_events) @@ -1372,7 +1464,7 @@ class SysViewLogTraceDataProcessor(SysViewTraceDataProcessor, apptrace.BaseLogTr def on_new_event(self, event): """ - Processes log events. + Processes log events. """ if self.root_proc == self: SysViewTraceDataProcessor.on_new_event(self, event) @@ -1382,7 +1474,7 @@ class SysViewLogTraceDataProcessor(SysViewTraceDataProcessor, apptrace.BaseLogTr def print_report(self): """ - see apptrace.TraceDataProcessor.print_report() + see apptrace.TraceDataProcessor.print_report() """ if self.root_proc == self: SysViewTraceDataProcessor.print_report(self) diff --git a/tools/esp_app_trace/sysviewtrace_proc.py b/tools/esp_app_trace/sysviewtrace_proc.py index d442dfc233..7a03653f87 100755 --- a/tools/esp_app_trace/sysviewtrace_proc.py +++ b/tools/esp_app_trace/sysviewtrace_proc.py @@ -1,47 +1,149 @@ #!/usr/bin/env python # -# SPDX-FileCopyrightText: 2019-2022 Espressif Systems (Shanghai) CO LTD +# SPDX-FileCopyrightText: 2019-2025 Espressif Systems (Shanghai) CO LTD # SPDX-License-Identifier: Apache-2.0 # # This is python script to process various types trace data streams in SystemView format. # Trace data can be provided in multiple trace files (one per CPU). After processing phase # script prints report for every type of trace data stream which was found. # - import argparse import json import logging import os.path import signal import sys +import tempfile import traceback +from urllib.parse import urlparse import espytrace.apptrace as apptrace import espytrace.sysview as sysview -def main(): +def is_segger_multicore_format(file_path): + """Check if the file has offsets in header""" + try: + url = urlparse(file_path) + if len(url.scheme) == 0 or url.scheme == 'file': + with open(url.path, 'rb') as f: + header = f.read(200) + header_str = header.decode('utf-8', errors='ignore') + if ( + '; Version SEGGER SystemViewer' in header_str + and '; Author Espressif Inc' in header_str + and '; Offset Core0' in header_str + and '; Offset Core1' in header_str + ): + return True + except Exception as e: + logging.error('Error checking SEGGER multicore file format:', e) + return False - verbosity_levels = [ - logging.CRITICAL, - logging.ERROR, - logging.WARNING, - logging.INFO, - logging.DEBUG - ] + +def split_segger_multicore_file(file_path): + """Split SEGGER multicore file into separate core files.""" + try: + with open(urlparse(file_path).path, 'rb') as f: + # Read first few lines to get offsets for each core + header = f.read(200) + header_str = header.decode('utf-8', errors='ignore') + + core1_offset = None + for line in header_str.split('\n'): + if '; Offset Core1' in line: + core1_offset = int(line.strip().split()[-1]) + + if core1_offset is None: + logging.error('Failed to parse core1 offset') + return None, None + + # Read the entire file + f.seek(0) + data = f.read() + + # Find first 10 sync bytes start offset + sync_start = data.find(b'\x00' * 10) + if sync_start == -1: + logging.error('Sync bytes not found') + return None, None + + core0_offset = sync_start + core1_offset += sync_start + + # Parse original header and get version from there, if not found, use default version + version = 'V3.60' + for line in header_str.split('\n'): + if '; Version SEGGER SystemViewer' in line: + version = line.strip().split()[-1] + break + + # Rebuild header without offset lines + core_header = f';\n; Version SEGGER SystemViewer {version}\n; Author Espressif Inc\n;\n' + core_header = core_header.encode('utf-8') + core_base = core_header + b'\x00' * 10 + + core0_data = core_base + data[core0_offset:core1_offset] + core1_data = core_base + data[core1_offset:] + + core0_file = tempfile.NamedTemporaryFile(delete=False, suffix='.svdat') + core1_file = tempfile.NamedTemporaryFile(delete=False, suffix='.svdat') + + core0_file.write(core0_data) + core1_file.write(core1_data) + + core0_file.close() + core1_file.close() + + return core0_file.name, core1_file.name + + except Exception as e: + logging.error('Failed to process files:', e) + return None, None + + +def main(): + verbosity_levels = [logging.CRITICAL, logging.ERROR, logging.WARNING, logging.INFO, logging.DEBUG] parser = argparse.ArgumentParser(description='ESP32 SEGGER SystemView Trace Parsing Tool') - parser.add_argument('trace_sources', help='Trace data sources. Format: [file://]/path/to/file.', nargs='+', type=str) + parser.add_argument( + 'trace_sources', help='Trace data sources. Format: [file://]/path/to/file.', nargs='+', type=str + ) parser.add_argument('--elf-file', '-b', help='Path to program ELF file.', type=str, default='') parser.add_argument('--tmo', '-w', help='Data wait timeout in sec. -1: infinite, 0: no wait', type=int, default=0) parser.add_argument('--dump-events', '-d', help='Dump all events.', action='store_true') - parser.add_argument('--print-events', '-p', help='Print events of selected types. By default only reports are printed', action='store_true') - parser.add_argument('--include-events', '-i', help='Events types to be included into report.', type=str, choices=['heap', 'log', 'all'], default='all') + parser.add_argument( + '--print-events', + '-p', + help='Print events of selected types. By default only reports are printed', + action='store_true', + ) + parser.add_argument( + '--include-events', + '-i', + help='Events types to be included into report.', + type=str, + choices=['heap', 'log', 'all'], + default='all', + ) parser.add_argument('--toolchain', '-t', help='Toolchain prefix.', type=str, default='xtensa-esp32-elf-') - parser.add_argument('--events-map', '-e', help='Events map file.', type=str, default=os.path.join(os.path.dirname(__file__), 'SYSVIEW_FreeRTOS.txt')) + parser.add_argument( + '--events-map', + '-e', + help='Events map file.', + type=str, + default=os.path.join(os.path.dirname(__file__), 'SYSVIEW_FreeRTOS.txt'), + ) parser.add_argument('--to-json', '-j', help='Print JSON.', action='store_true', default=False) - parser.add_argument('--verbose', '-v', help='Verbosity level. Default 1', choices=range(0, len(verbosity_levels)), type=int, default=1) + parser.add_argument( + '--verbose', + '-v', + help='Verbosity level. Default 1', + choices=range(0, len(verbosity_levels)), + type=int, + default=1, + ) args = parser.parse_args() def sig_int_handler(signum, frame): @@ -60,17 +162,33 @@ def main(): logging.basicConfig(level=verbosity_levels[args.verbose], format='[%(levelname)s] %(message)s') + temp_files = [] + # Only check for SEGGER format if there's exactly one trace source + if len(args.trace_sources) == 1: + trace_source = args.trace_sources[0] + if is_segger_multicore_format(trace_source): + core0_file, core1_file = split_segger_multicore_file(trace_source) + if core0_file and core1_file: + temp_files.extend([core0_file, core1_file]) + args.trace_sources = temp_files + else: + sys.exit(2) + # parse trace files parsers = [] for i, trace_source in enumerate(args.trace_sources): try: parser = sysview.SysViewMultiTraceDataParser(print_events=False, core_id=i) if include_events['heap']: - parser.add_stream_parser(sysview.SysViewTraceDataParser.STREAMID_HEAP, - sysview.SysViewHeapTraceDataParser(print_events=False, core_id=i)) + parser.add_stream_parser( + sysview.SysViewTraceDataParser.STREAMID_HEAP, + sysview.SysViewHeapTraceDataParser(print_events=False, core_id=i), + ) if include_events['log']: - parser.add_stream_parser(sysview.SysViewTraceDataParser.STREAMID_LOG, - sysview.SysViewLogTraceDataParser(print_events=False, core_id=i)) + parser.add_stream_parser( + sysview.SysViewTraceDataParser.STREAMID_LOG, + sysview.SysViewLogTraceDataParser(print_events=False, core_id=i), + ) parsers.append(parser) except Exception as e: logging.error('Failed to create data parser (%s)!', e) @@ -97,13 +215,21 @@ def main(): # merge and process traces try: - proc = sysview.SysViewMultiStreamTraceDataProcessor(traces=parsers, print_events=args.dump_events, keep_all_events=True if args.to_json else False) + proc = sysview.SysViewMultiStreamTraceDataProcessor( + traces=parsers, print_events=args.dump_events, keep_all_events=True if args.to_json else False + ) if include_events['heap']: - proc.add_stream_processor(sysview.SysViewTraceDataParser.STREAMID_HEAP, - sysview.SysViewHeapTraceDataProcessor(args.toolchain, args.elf_file, root_proc=proc, print_heap_events=args.print_events)) + proc.add_stream_processor( + sysview.SysViewTraceDataParser.STREAMID_HEAP, + sysview.SysViewHeapTraceDataProcessor( + args.toolchain, args.elf_file, root_proc=proc, print_heap_events=args.print_events + ), + ) if include_events['log']: - proc.add_stream_processor(sysview.SysViewTraceDataParser.STREAMID_LOG, - sysview.SysViewLogTraceDataProcessor(root_proc=proc, print_log_events=args.print_events)) + proc.add_stream_processor( + sysview.SysViewTraceDataParser.STREAMID_LOG, + sysview.SysViewLogTraceDataProcessor(root_proc=proc, print_log_events=args.print_events), + ) except Exception as e: logging.error('Failed to create data processor (%s)!', e) traceback.print_exc() @@ -119,11 +245,21 @@ def main(): sys.exit(2) finally: if args.to_json: - print(json.dumps(proc, cls=sysview.SysViewTraceDataJsonEncoder, indent=4, separators=(',', ': '), sort_keys=True)) + print( + json.dumps( + proc, cls=sysview.SysViewTraceDataJsonEncoder, indent=4, separators=(',', ': '), sort_keys=True + ) + ) else: proc.print_report() proc.cleanup() + for file in temp_files: + try: + os.remove(file) + except Exception as e: + logging.warning('Failed to remove temporary file %s: %s', file, e) + if __name__ == '__main__': main() diff --git a/tools/esp_app_trace/test/sysview/README.md b/tools/esp_app_trace/test/sysview/README.md index 4f09f1677c..b370b03613 100644 --- a/tools/esp_app_trace/test/sysview/README.md +++ b/tools/esp_app_trace/test/sysview/README.md @@ -24,7 +24,7 @@ ``` cd $IDF_PATH/examples/system/sysview_tracing_heap_log - xtensa-esp32-elf-gdb -x gdbinit build/sysview_tracing_heap_log.elf + xtensa-esp32-elf-gdb -x $IDF_PATH/tools/esp_app_trace/test/sysview/gdbinit build/sysview_tracing_heap_log.elf ``` When program stops at `heap_trace_stop` quit GDB and OpenOCD @@ -45,7 +45,7 @@ ``` cd $IDF_PATH/examples/system/sysview_tracing_heap_log - xtensa-esp32-elf-gdb -x gdbinit-mcore build/sysview_tracing_heap_log.elf + xtensa-esp32-elf-gdb -x $IDF_PATH/tools/esp_app_trace/test/sysview/gdbinit-mcore build/sysview_tracing_heap_log.elf ``` When program stops at `heap_trace_stop` quit GDB and OpenOCD @@ -59,6 +59,7 @@ You can use the commands from the `test.sh` to generate expected result files ``` + cd $IDF_PATH/tools/esp_app_trace/test/sysview/ $IDF_PATH/tools/esp_app_trace/sysviewtrace_proc.py -d -p -b sysview_tracing_heap_log.elf heap_log0.svdat heap_log1.svdat &> expected_output $IDF_PATH/tools/esp_app_trace/sysviewtrace_proc.py -j -b sysview_tracing_heap_log.elf heap_log0.svdat heap_log1.svdat &> expected_output.json $IDF_PATH/tools/esp_app_trace/sysviewtrace_proc.py -d -p -b sysview_tracing_heap_log.elf heap_log_mcore.svdat &> expected_output_mcore diff --git a/tools/esp_app_trace/test/sysview/expected_output b/tools/esp_app_trace/test/sysview/expected_output index a342a494cd..7d5de4e83b 100644 --- a/tools/esp_app_trace/test/sysview/expected_output +++ b/tools/esp_app_trace/test/sysview/expected_output @@ -1,3721 +1,3738 @@ EVENT[0]: 0.000000000 - core[0].svTraceStart(10), plen 0: [] EVENT[1]: 0.000000000 - core[1].svTraceStart(10), plen 0: [] -EVENT[2]: 0.000006650 - core[0].svInit(24), plen 14: [sys_freq: 40000000, cpu_freq: 160000000, ram_base: 1061158912, id_shift: 0] -EVENT[3]: 0.000006650 - core[1].svInit(24), plen 14: [sys_freq: 40000000, cpu_freq: 160000000, ram_base: 1061158912, id_shift: 0] -EVENT[4]: 0.000018550 - core[0].svSysDesc(14), plen 0: [desc: N=FreeRTOS Application,D=esp32,C=xtensa,O=FreeRTOS] -EVENT[5]: 0.000018550 - core[1].svSysDesc(14), plen 0: [desc: N=FreeRTOS Application,D=esp32,C=xtensa,O=FreeRTOS] -EVENT[6]: 0.000027675 - core[0].svSysDesc(14), plen 0: [desc: I#5=SysTick] -EVENT[7]: 0.000027675 - core[1].svSysDesc(14), plen 0: [desc: I#5=SysTick] -EVENT[8]: 0.000049775 - core[0].svSysDesc(14), plen 0: [desc: I#6=WIFI_MAC] -EVENT[9]: 0.000049775 - core[1].svSysDesc(14), plen 0: [desc: I#6=WIFI_MAC] -EVENT[10]: 0.000063875 - core[0].svSysDesc(14), plen 0: [desc: I#7=WIFI_NMI] -EVENT[11]: 0.000063875 - core[1].svSysDesc(14), plen 0: [desc: I#7=WIFI_NMI] -EVENT[12]: 0.000073825 - core[0].svSysDesc(14), plen 0: [desc: I#8=WIFI_BB] -EVENT[13]: 0.000073825 - core[1].svSysDesc(14), plen 0: [desc: I#8=WIFI_BB] -EVENT[14]: 0.000087500 - core[0].svSysDesc(14), plen 0: [desc: I#9=BT_MAC] -EVENT[15]: 0.000087500 - core[1].svSysDesc(14), plen 0: [desc: I#9=BT_MAC] -EVENT[16]: 0.000101575 - core[0].svSysDesc(14), plen 0: [desc: I#10=BT_BB] -EVENT[17]: 0.000101575 - core[1].svSysDesc(14), plen 0: [desc: I#10=BT_BB] -EVENT[18]: 0.000112375 - core[0].svSysDesc(14), plen 0: [desc: I#11=BT_BB_NMI] -EVENT[19]: 0.000112375 - core[1].svSysDesc(14), plen 0: [desc: I#11=BT_BB_NMI] -EVENT[20]: 0.000122300 - core[0].svSysDesc(14), plen 0: [desc: I#12=RWBT] -EVENT[21]: 0.000122300 - core[1].svSysDesc(14), plen 0: [desc: I#12=RWBT] -EVENT[22]: 0.000132300 - core[0].svSysDesc(14), plen 0: [desc: I#13=RWBLE] -EVENT[23]: 0.000132300 - core[1].svSysDesc(14), plen 0: [desc: I#13=RWBLE] -EVENT[24]: 0.000146800 - core[0].svSysDesc(14), plen 0: [desc: I#14=RWBT_NMI] -EVENT[25]: 0.000146800 - core[1].svSysDesc(14), plen 0: [desc: I#14=RWBT_NMI] -EVENT[26]: 0.000157600 - core[0].svSysDesc(14), plen 0: [desc: I#15=RWBLE_NMI] -EVENT[27]: 0.000157600 - core[1].svSysDesc(14), plen 0: [desc: I#15=RWBLE_NMI] -EVENT[28]: 0.000171900 - core[0].svSysDesc(14), plen 0: [desc: I#16=SLC0] -EVENT[29]: 0.000171900 - core[1].svSysDesc(14), plen 0: [desc: I#16=SLC0] -EVENT[30]: 0.000189550 - core[0].svSysDesc(14), plen 0: [desc: I#17=SLC1] -EVENT[31]: 0.000189550 - core[1].svSysDesc(14), plen 0: [desc: I#17=SLC1] -EVENT[32]: 0.000199525 - core[0].svSysDesc(14), plen 0: [desc: I#18=UHCI0] -EVENT[33]: 0.000199525 - core[1].svSysDesc(14), plen 0: [desc: I#18=UHCI0] -EVENT[34]: 0.000209500 - core[0].svSysDesc(14), plen 0: [desc: I#19=UHCI1] -EVENT[35]: 0.000209500 - core[1].svSysDesc(14), plen 0: [desc: I#19=UHCI1] -EVENT[36]: 0.000224750 - core[0].svSysDesc(14), plen 0: [desc: I#20=TG0_T0_LEVEL] -EVENT[37]: 0.000224750 - core[1].svSysDesc(14), plen 0: [desc: I#20=TG0_T0_LEVEL] -EVENT[38]: 0.000236150 - core[0].svSysDesc(14), plen 0: [desc: I#21=TG0_T1_LEVEL] -EVENT[39]: 0.000236150 - core[1].svSysDesc(14), plen 0: [desc: I#21=TG0_T1_LEVEL] -EVENT[40]: 0.000251850 - core[0].svSysDesc(14), plen 0: [desc: I#22=TG0_WDT_LEVEL] -EVENT[41]: 0.000251850 - core[1].svSysDesc(14), plen 0: [desc: I#22=TG0_WDT_LEVEL] -EVENT[42]: 0.000263625 - core[0].svSysDesc(14), plen 0: [desc: I#23=TG0_LACT_LEVEL] -EVENT[43]: 0.000263625 - core[1].svSysDesc(14), plen 0: [desc: I#23=TG0_LACT_LEVEL] -EVENT[44]: 0.000279050 - core[0].svSysDesc(14), plen 0: [desc: I#24=TG1_T0_LEVEL] -EVENT[45]: 0.000279050 - core[1].svSysDesc(14), plen 0: [desc: I#24=TG1_T0_LEVEL] -EVENT[46]: 0.000294450 - core[0].svSysDesc(14), plen 0: [desc: I#25=TG1_T1_LEVEL] -EVENT[47]: 0.000294450 - core[1].svSysDesc(14), plen 0: [desc: I#25=TG1_T1_LEVEL] -EVENT[48]: 0.000310000 - core[0].svSysDesc(14), plen 0: [desc: I#26=TG1_WDT_LEVEL] -EVENT[49]: 0.000310000 - core[1].svSysDesc(14), plen 0: [desc: I#26=TG1_WDT_LEVEL] -EVENT[50]: 0.000321975 - core[0].svSysDesc(14), plen 0: [desc: I#27=TG1_LACT_LEVEL] -EVENT[51]: 0.000321975 - core[1].svSysDesc(14), plen 0: [desc: I#27=TG1_LACT_LEVEL] -EVENT[52]: 0.000331875 - core[0].svSysDesc(14), plen 0: [desc: I#28=GPIO] -EVENT[53]: 0.000331875 - core[1].svSysDesc(14), plen 0: [desc: I#28=GPIO] -EVENT[54]: 0.000350775 - core[0].svSysDesc(14), plen 0: [desc: I#29=GPIO_NMI] -EVENT[55]: 0.000350775 - core[1].svSysDesc(14), plen 0: [desc: I#29=GPIO_NMI] -EVENT[56]: 0.000361675 - core[0].svSysDesc(14), plen 0: [desc: I#30=FROM_CPU0] -EVENT[57]: 0.000361675 - core[1].svSysDesc(14), plen 0: [desc: I#30=FROM_CPU0] -EVENT[58]: 0.000376375 - core[0].svSysDesc(14), plen 0: [desc: I#31=FROM_CPU1] -EVENT[59]: 0.000376375 - core[1].svSysDesc(14), plen 0: [desc: I#31=FROM_CPU1] -EVENT[60]: 0.000387200 - core[0].svSysDesc(14), plen 0: [desc: I#32=FROM_CPU2] -EVENT[61]: 0.000387200 - core[1].svSysDesc(14), plen 0: [desc: I#32=FROM_CPU2] -EVENT[62]: 0.000401900 - core[0].svSysDesc(14), plen 0: [desc: I#33=FROM_CPU3] -EVENT[63]: 0.000401900 - core[1].svSysDesc(14), plen 0: [desc: I#33=FROM_CPU3] -EVENT[64]: 0.000415650 - core[0].svSysDesc(14), plen 0: [desc: I#34=SPI0] -EVENT[65]: 0.000415650 - core[1].svSysDesc(14), plen 0: [desc: I#34=SPI0] -EVENT[66]: 0.000425400 - core[0].svSysDesc(14), plen 0: [desc: I#35=SPI1] -EVENT[67]: 0.000425400 - core[1].svSysDesc(14), plen 0: [desc: I#35=SPI1] -EVENT[68]: 0.000435175 - core[0].svSysDesc(14), plen 0: [desc: I#36=SPI2] -EVENT[69]: 0.000435175 - core[1].svSysDesc(14), plen 0: [desc: I#36=SPI2] +EVENT[2]: 0.000006675 - core[0].svInit(24), plen 14: [sys_freq: 40000000, cpu_freq: 160000000, ram_base: 1061158912, id_shift: 0] +EVENT[3]: 0.000006675 - core[1].svInit(24), plen 14: [sys_freq: 40000000, cpu_freq: 160000000, ram_base: 1061158912, id_shift: 0] +EVENT[4]: 0.000018600 - core[0].svSysDesc(14), plen 0: [desc: N=FreeRTOS Application,D=esp32,C=xtensa,O=FreeRTOS] +EVENT[5]: 0.000018600 - core[1].svSysDesc(14), plen 0: [desc: N=FreeRTOS Application,D=esp32,C=xtensa,O=FreeRTOS] +EVENT[6]: 0.000027750 - core[0].svSysDesc(14), plen 0: [desc: I#5=SysTick] +EVENT[7]: 0.000027750 - core[1].svSysDesc(14), plen 0: [desc: I#5=SysTick] +EVENT[8]: 0.000045925 - core[0].svSysDesc(14), plen 0: [desc: I#6=WIFI_MAC] +EVENT[9]: 0.000045925 - core[1].svSysDesc(14), plen 0: [desc: I#6=WIFI_MAC] +EVENT[10]: 0.000060025 - core[0].svSysDesc(14), plen 0: [desc: I#7=WIFI_NMI] +EVENT[11]: 0.000060025 - core[1].svSysDesc(14), plen 0: [desc: I#7=WIFI_NMI] +EVENT[12]: 0.000070125 - core[0].svSysDesc(14), plen 0: [desc: I#8=WIFI_BB] +EVENT[13]: 0.000070125 - core[1].svSysDesc(14), plen 0: [desc: I#8=WIFI_BB] +EVENT[14]: 0.000079875 - core[0].svSysDesc(14), plen 0: [desc: I#9=BT_MAC] +EVENT[15]: 0.000079875 - core[1].svSysDesc(14), plen 0: [desc: I#9=BT_MAC] +EVENT[16]: 0.000093950 - core[0].svSysDesc(14), plen 0: [desc: I#10=BT_BB] +EVENT[17]: 0.000093950 - core[1].svSysDesc(14), plen 0: [desc: I#10=BT_BB] +EVENT[18]: 0.000108725 - core[0].svSysDesc(14), plen 0: [desc: I#11=BT_BB_NMI] +EVENT[19]: 0.000108725 - core[1].svSysDesc(14), plen 0: [desc: I#11=BT_BB_NMI] +EVENT[20]: 0.000118675 - core[0].svSysDesc(14), plen 0: [desc: I#12=RWBT] +EVENT[21]: 0.000118675 - core[1].svSysDesc(14), plen 0: [desc: I#12=RWBT] +EVENT[22]: 0.000128675 - core[0].svSysDesc(14), plen 0: [desc: I#13=RWBLE] +EVENT[23]: 0.000128675 - core[1].svSysDesc(14), plen 0: [desc: I#13=RWBLE] +EVENT[24]: 0.000143225 - core[0].svSysDesc(14), plen 0: [desc: I#14=RWBT_NMI] +EVENT[25]: 0.000143225 - core[1].svSysDesc(14), plen 0: [desc: I#14=RWBT_NMI] +EVENT[26]: 0.000154025 - core[0].svSysDesc(14), plen 0: [desc: I#15=RWBLE_NMI] +EVENT[27]: 0.000154025 - core[1].svSysDesc(14), plen 0: [desc: I#15=RWBLE_NMI] +EVENT[28]: 0.000168350 - core[0].svSysDesc(14), plen 0: [desc: I#16=SLC0] +EVENT[29]: 0.000168350 - core[1].svSysDesc(14), plen 0: [desc: I#16=SLC0] +EVENT[30]: 0.000182075 - core[0].svSysDesc(14), plen 0: [desc: I#17=SLC1] +EVENT[31]: 0.000182075 - core[1].svSysDesc(14), plen 0: [desc: I#17=SLC1] +EVENT[32]: 0.000196025 - core[0].svSysDesc(14), plen 0: [desc: I#18=UHCI0] +EVENT[33]: 0.000196025 - core[1].svSysDesc(14), plen 0: [desc: I#18=UHCI0] +EVENT[34]: 0.000206000 - core[0].svSysDesc(14), plen 0: [desc: I#19=UHCI1] +EVENT[35]: 0.000206000 - core[1].svSysDesc(14), plen 0: [desc: I#19=UHCI1] +EVENT[36]: 0.000221275 - core[0].svSysDesc(14), plen 0: [desc: I#20=TG0_T0_LEVEL] +EVENT[37]: 0.000221275 - core[1].svSysDesc(14), plen 0: [desc: I#20=TG0_T0_LEVEL] +EVENT[38]: 0.000232700 - core[0].svSysDesc(14), plen 0: [desc: I#21=TG0_T1_LEVEL] +EVENT[39]: 0.000232700 - core[1].svSysDesc(14), plen 0: [desc: I#21=TG0_T1_LEVEL] +EVENT[40]: 0.000248425 - core[0].svSysDesc(14), plen 0: [desc: I#22=TG0_WDT_LEVEL] +EVENT[41]: 0.000248425 - core[1].svSysDesc(14), plen 0: [desc: I#22=TG0_WDT_LEVEL] +EVENT[42]: 0.000260225 - core[0].svSysDesc(14), plen 0: [desc: I#23=TG0_LACT_LEVEL] +EVENT[43]: 0.000260225 - core[1].svSysDesc(14), plen 0: [desc: I#23=TG0_LACT_LEVEL] +EVENT[44]: 0.000275650 - core[0].svSysDesc(14), plen 0: [desc: I#24=TG1_T0_LEVEL] +EVENT[45]: 0.000275650 - core[1].svSysDesc(14), plen 0: [desc: I#24=TG1_T0_LEVEL] +EVENT[46]: 0.000287250 - core[0].svSysDesc(14), plen 0: [desc: I#25=TG1_T1_LEVEL] +EVENT[47]: 0.000287250 - core[1].svSysDesc(14), plen 0: [desc: I#25=TG1_T1_LEVEL] +EVENT[48]: 0.000306775 - core[0].svSysDesc(14), plen 0: [desc: I#26=TG1_WDT_LEVEL] +EVENT[49]: 0.000306775 - core[1].svSysDesc(14), plen 0: [desc: I#26=TG1_WDT_LEVEL] +EVENT[50]: 0.000318775 - core[0].svSysDesc(14), plen 0: [desc: I#27=TG1_LACT_LEVEL] +EVENT[51]: 0.000318775 - core[1].svSysDesc(14), plen 0: [desc: I#27=TG1_LACT_LEVEL] +EVENT[52]: 0.000328700 - core[0].svSysDesc(14), plen 0: [desc: I#28=GPIO] +EVENT[53]: 0.000328700 - core[1].svSysDesc(14), plen 0: [desc: I#28=GPIO] +EVENT[54]: 0.000347625 - core[0].svSysDesc(14), plen 0: [desc: I#29=GPIO_NMI] +EVENT[55]: 0.000347625 - core[1].svSysDesc(14), plen 0: [desc: I#29=GPIO_NMI] +EVENT[56]: 0.000358550 - core[0].svSysDesc(14), plen 0: [desc: I#30=FROM_CPU0] +EVENT[57]: 0.000358550 - core[1].svSysDesc(14), plen 0: [desc: I#30=FROM_CPU0] +EVENT[58]: 0.000369300 - core[0].svSysDesc(14), plen 0: [desc: I#31=FROM_CPU1] +EVENT[59]: 0.000369300 - core[1].svSysDesc(14), plen 0: [desc: I#31=FROM_CPU1] +EVENT[60]: 0.000384075 - core[0].svSysDesc(14), plen 0: [desc: I#32=FROM_CPU2] +EVENT[61]: 0.000384075 - core[1].svSysDesc(14), plen 0: [desc: I#32=FROM_CPU2] +EVENT[62]: 0.000394825 - core[0].svSysDesc(14), plen 0: [desc: I#33=FROM_CPU3] +EVENT[63]: 0.000394825 - core[1].svSysDesc(14), plen 0: [desc: I#33=FROM_CPU3] +EVENT[64]: 0.000408600 - core[0].svSysDesc(14), plen 0: [desc: I#34=SPI0] +EVENT[65]: 0.000408600 - core[1].svSysDesc(14), plen 0: [desc: I#34=SPI0] +EVENT[66]: 0.000422675 - core[0].svSysDesc(14), plen 0: [desc: I#35=SPI1] +EVENT[67]: 0.000422675 - core[1].svSysDesc(14), plen 0: [desc: I#35=SPI1] +EVENT[68]: 0.000433900 - core[0].svSysDesc(14), plen 0: [desc: I#36=SPI2] +EVENT[69]: 0.000433900 - core[1].svSysDesc(14), plen 0: [desc: I#36=SPI2] EVENT[70]: 0.000444900 - core[0].svSysDesc(14), plen 0: [desc: I#37=SPI3] EVENT[71]: 0.000444900 - core[1].svSysDesc(14), plen 0: [desc: I#37=SPI3] -EVENT[72]: 0.000458850 - core[0].svSysDesc(14), plen 0: [desc: I#38=I2S0] -EVENT[73]: 0.000458850 - core[1].svSysDesc(14), plen 0: [desc: I#38=I2S0] -EVENT[74]: 0.000468600 - core[0].svSysDesc(14), plen 0: [desc: I#39=I2S1] -EVENT[75]: 0.000468600 - core[1].svSysDesc(14), plen 0: [desc: I#39=I2S1] -EVENT[76]: 0.000478575 - core[0].svSysDesc(14), plen 0: [desc: I#40=UART0] -EVENT[77]: 0.000478575 - core[1].svSysDesc(14), plen 0: [desc: I#40=UART0] -EVENT[78]: 0.000492500 - core[0].svSysDesc(14), plen 0: [desc: I#41=UART1] -EVENT[79]: 0.000492500 - core[1].svSysDesc(14), plen 0: [desc: I#41=UART1] -EVENT[80]: 0.000506375 - core[0].svSysDesc(14), plen 0: [desc: I#42=UART2] -EVENT[81]: 0.000506375 - core[1].svSysDesc(14), plen 0: [desc: I#42=UART2] -EVENT[82]: 0.000517150 - core[0].svSysDesc(14), plen 0: [desc: I#43=SDIO_HOST] -EVENT[83]: 0.000517150 - core[1].svSysDesc(14), plen 0: [desc: I#43=SDIO_HOST] -EVENT[84]: 0.000527475 - core[0].svSysDesc(14), plen 0: [desc: I#44=ETH_MAC] -EVENT[85]: 0.000527475 - core[1].svSysDesc(14), plen 0: [desc: I#44=ETH_MAC] -EVENT[86]: 0.000541625 - core[0].svSysDesc(14), plen 0: [desc: I#45=PWM0] -EVENT[87]: 0.000541625 - core[1].svSysDesc(14), plen 0: [desc: I#45=PWM0] -EVENT[88]: 0.000555300 - core[0].svSysDesc(14), plen 0: [desc: I#46=PWM1] -EVENT[89]: 0.000555300 - core[1].svSysDesc(14), plen 0: [desc: I#46=PWM1] -EVENT[90]: 0.000565975 - core[0].svSysDesc(14), plen 0: [desc: I#47=RESERVED] -EVENT[91]: 0.000565975 - core[1].svSysDesc(14), plen 0: [desc: I#47=RESERVED] -EVENT[92]: 0.000576550 - core[0].svSysDesc(14), plen 0: [desc: I#48=RESERVED] -EVENT[93]: 0.000576550 - core[1].svSysDesc(14), plen 0: [desc: I#48=RESERVED] -EVENT[94]: 0.000590325 - core[0].svSysDesc(14), plen 0: [desc: I#49=LEDC] -EVENT[95]: 0.000590325 - core[1].svSysDesc(14), plen 0: [desc: I#49=LEDC] -EVENT[96]: 0.000604225 - core[0].svSysDesc(14), plen 0: [desc: I#50=EFUSE] -EVENT[97]: 0.000604225 - core[1].svSysDesc(14), plen 0: [desc: I#50=EFUSE] -EVENT[98]: 0.000618075 - core[0].svSysDesc(14), plen 0: [desc: I#51=TWAI] -EVENT[99]: 0.000618075 - core[1].svSysDesc(14), plen 0: [desc: I#51=TWAI] -EVENT[100]: 0.000628650 - core[0].svSysDesc(14), plen 0: [desc: I#52=RTC_CORE] -EVENT[101]: 0.000628650 - core[1].svSysDesc(14), plen 0: [desc: I#52=RTC_CORE] -EVENT[102]: 0.000638250 - core[0].svSysDesc(14), plen 0: [desc: I#53=RMT] -EVENT[103]: 0.000638250 - core[1].svSysDesc(14), plen 0: [desc: I#53=RMT] -EVENT[104]: 0.000648075 - core[0].svSysDesc(14), plen 0: [desc: I#54=PCNT] -EVENT[105]: 0.000648075 - core[1].svSysDesc(14), plen 0: [desc: I#54=PCNT] -EVENT[106]: 0.000662700 - core[0].svSysDesc(14), plen 0: [desc: I#55=I2C_EXT0] -EVENT[107]: 0.000662700 - core[1].svSysDesc(14), plen 0: [desc: I#55=I2C_EXT0] -EVENT[108]: 0.000674475 - core[0].svSysDesc(14), plen 0: [desc: I#56=I2C_EXT1] -EVENT[109]: 0.000674475 - core[1].svSysDesc(14), plen 0: [desc: I#56=I2C_EXT1] -EVENT[110]: 0.000689475 - core[0].svSysDesc(14), plen 0: [desc: I#57=RSA] -EVENT[111]: 0.000689475 - core[1].svSysDesc(14), plen 0: [desc: I#57=RSA] -EVENT[112]: 0.000705425 - core[0].svSysDesc(14), plen 0: [desc: I#58=SPI1_DMA] -EVENT[113]: 0.000705425 - core[1].svSysDesc(14), plen 0: [desc: I#58=SPI1_DMA] -EVENT[114]: 0.000717350 - core[0].svSysDesc(14), plen 0: [desc: I#59=SPI2_DMA] -EVENT[115]: 0.000717350 - core[1].svSysDesc(14), plen 0: [desc: I#59=SPI2_DMA] -EVENT[116]: 0.000729475 - core[0].svSysDesc(14), plen 0: [desc: I#60=SPI3_DMA] -EVENT[117]: 0.000729475 - core[1].svSysDesc(14), plen 0: [desc: I#60=SPI3_DMA] -EVENT[118]: 0.000740300 - core[0].svSysDesc(14), plen 0: [desc: I#61=WDT] -EVENT[119]: 0.000740300 - core[1].svSysDesc(14), plen 0: [desc: I#61=WDT] -EVENT[120]: 0.000760650 - core[0].svSysDesc(14), plen 0: [desc: I#62=TIMER1] -EVENT[121]: 0.000760650 - core[1].svSysDesc(14), plen 0: [desc: I#62=TIMER1] -EVENT[122]: 0.000772200 - core[0].svSysDesc(14), plen 0: [desc: I#63=TIMER2] -EVENT[123]: 0.000772200 - core[1].svSysDesc(14), plen 0: [desc: I#63=TIMER2] -EVENT[124]: 0.000785150 - core[0].svSysDesc(14), plen 0: [desc: I#64=TG0_T0_EDGE] -EVENT[125]: 0.000785150 - core[1].svSysDesc(14), plen 0: [desc: I#64=TG0_T0_EDGE] -EVENT[126]: 0.000805850 - core[0].svSysDesc(14), plen 0: [desc: I#65=TG0_T1_EDGE] -EVENT[127]: 0.000805850 - core[1].svSysDesc(14), plen 0: [desc: I#65=TG0_T1_EDGE] -EVENT[128]: 0.000818750 - core[0].svSysDesc(14), plen 0: [desc: I#66=TG0_WDT_EDGE] -EVENT[129]: 0.000818750 - core[1].svSysDesc(14), plen 0: [desc: I#66=TG0_WDT_EDGE] -EVENT[130]: 0.000836050 - core[0].svSysDesc(14), plen 0: [desc: I#67=TG0_LACT_EDGE] -EVENT[131]: 0.000836050 - core[1].svSysDesc(14), plen 0: [desc: I#67=TG0_LACT_EDGE] -EVENT[132]: 0.000848850 - core[0].svSysDesc(14), plen 0: [desc: I#68=TG1_T0_EDGE] -EVENT[133]: 0.000848850 - core[1].svSysDesc(14), plen 0: [desc: I#68=TG1_T0_EDGE] -EVENT[134]: 0.000861475 - core[0].svSysDesc(14), plen 0: [desc: I#69=TG1_T1_EDGE] -EVENT[135]: 0.000861475 - core[1].svSysDesc(14), plen 0: [desc: I#69=TG1_T1_EDGE] -EVENT[136]: 0.000878425 - core[0].svSysDesc(14), plen 0: [desc: I#70=TG1_WDT_EDGE] -EVENT[137]: 0.000878425 - core[1].svSysDesc(14), plen 0: [desc: I#70=TG1_WDT_EDGE] -EVENT[138]: 0.000891925 - core[0].svSysDesc(14), plen 0: [desc: I#71=TG1_LACT_EDGE] -EVENT[139]: 0.000891925 - core[1].svSysDesc(14), plen 0: [desc: I#71=TG1_LACT_EDGE] -EVENT[140]: 0.000907825 - core[0].svSysDesc(14), plen 0: [desc: I#72=MMU_IA] -EVENT[141]: 0.000907825 - core[1].svSysDesc(14), plen 0: [desc: I#72=MMU_IA] -EVENT[142]: 0.000923300 - core[0].svSysDesc(14), plen 0: [desc: I#73=MPU_IA] -EVENT[143]: 0.000923300 - core[1].svSysDesc(14), plen 0: [desc: I#73=MPU_IA] -EVENT[144]: 0.000935450 - core[0].svSysDesc(14), plen 0: [desc: I#74=CACHE_IA] -EVENT[145]: 0.000935450 - core[1].svSysDesc(14), plen 0: [desc: I#74=CACHE_IA] -EVENT[146]: 0.000944000 - core[0].svSysTimeUs(13), plen 0: [time: 10000] -EVENT[147]: 0.000944000 - core[1].svSysTimeUs(13), plen 0: [time: 10000] -EVENT[148]: 0.001056000 - core[0].svTaskInfo(9), plen 0: [tid: 12253204, prio: 24, name: ipc0] -EVENT[149]: 0.001056000 - core[1].svTaskInfo(9), plen 0: [tid: 12253204, prio: 24, name: ipc0] -EVENT[150]: 0.001061525 - core[0].svStackInfo(21), plen 0: [tid: 12253204, base: 1073410064, sz: 1344, unused: 0] -EVENT[151]: 0.001061525 - core[1].svStackInfo(21), plen 0: [tid: 12253204, base: 1073410064, sz: 1344, unused: 0] -EVENT[152]: 0.001170650 - core[0].svTaskInfo(9), plen 0: [tid: 12253560, prio: 24, name: ipc1] -EVENT[153]: 0.001170650 - core[1].svTaskInfo(9), plen 0: [tid: 12253560, prio: 24, name: ipc1] -EVENT[154]: 0.001175900 - core[0].svStackInfo(21), plen 0: [tid: 12253560, base: 1073431024, sz: 1344, unused: 0] -EVENT[155]: 0.001175900 - core[1].svStackInfo(21), plen 0: [tid: 12253560, base: 1073431024, sz: 1344, unused: 0] -EVENT[156]: 0.001327475 - core[0].svTaskInfo(9), plen 0: [tid: 12254080, prio: 1, name: main] -EVENT[157]: 0.001327475 - core[1].svTaskInfo(9), plen 0: [tid: 12254080, prio: 1, name: main] -EVENT[158]: 0.001332900 - core[0].svStackInfo(21), plen 0: [tid: 12254080, base: 1073433076, sz: 1916, unused: 0] -EVENT[159]: 0.001332900 - core[1].svStackInfo(21), plen 0: [tid: 12254080, base: 1073433076, sz: 1916, unused: 0] -EVENT[160]: 0.001340650 - core[0].svNumModules(27), plen 1: [mod_cnt: 0] -EVENT[161]: 0.001340650 - core[1].svNumModules(27), plen 1: [mod_cnt: 0] -EVENT[162]: 0.001348325 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[163]: 0.001359700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[164]: 0.001370975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[165]: 0.001381825 - core[0].svTaskStartReady(6), plen 0: [tid: 12254080] -EVENT[166]: 0.001381825 - core[1].svTaskStartReady(6), plen 0: [tid: 12254080] -EVENT[167]: 0.001396900 - core[0].svIsrExit(3), plen 0: [] -EVENT[168]: 0.001407700 - core[1].svIdle(17), plen 0: [] -EVENT[169]: 0.001419225 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[170]: 0.001430725 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[171]: 0.001447075 - core[0].svTaskStartExec(4), plen 0: [tid: 12254080] -EVENT[172]: 0.001473950 - core[0].svModuleDesc(22), plen 0: [mod_id: 0, evt_off: 512, desc: M=ESP32 SystemView Heap Tracing Module] -EVENT[173]: 0.001473950 - core[1].svModuleDesc(22), plen 0: [mod_id: 0, evt_off: 512, desc: M=ESP32 SystemView Heap Tracing Module] -EVENT[174]: 0.001529550 - core[0].esp_sysview_heap_trace_alloc(512), plen 40: [addr: 1073443032, size: 8, callers: [1074274287, 1074274340, 1074325096, 1074621423, 1074686267, 1074302356, 0, 0, 0, 0]] -[0.001529550] HEAP: Allocated 8 bytes @ 0x3ffb70d8 from task "main" on core 0 by: +EVENT[72]: 0.000455975 - core[0].svSysDesc(14), plen 0: [desc: I#38=I2S0] +EVENT[73]: 0.000455975 - core[1].svSysDesc(14), plen 0: [desc: I#38=I2S0] +EVENT[74]: 0.000471025 - core[0].svSysDesc(14), plen 0: [desc: I#39=I2S1] +EVENT[75]: 0.000471025 - core[1].svSysDesc(14), plen 0: [desc: I#39=I2S1] +EVENT[76]: 0.000482575 - core[0].svSysDesc(14), plen 0: [desc: I#40=UART0] +EVENT[77]: 0.000482575 - core[1].svSysDesc(14), plen 0: [desc: I#40=UART0] +EVENT[78]: 0.000493675 - core[0].svSysDesc(14), plen 0: [desc: I#41=UART1] +EVENT[79]: 0.000493675 - core[1].svSysDesc(14), plen 0: [desc: I#41=UART1] +EVENT[80]: 0.000509025 - core[0].svSysDesc(14), plen 0: [desc: I#42=UART2] +EVENT[81]: 0.000509025 - core[1].svSysDesc(14), plen 0: [desc: I#42=UART2] +EVENT[82]: 0.000525125 - core[0].svSysDesc(14), plen 0: [desc: I#43=SDIO_HOST] +EVENT[83]: 0.000525125 - core[1].svSysDesc(14), plen 0: [desc: I#43=SDIO_HOST] +EVENT[84]: 0.000536650 - core[0].svSysDesc(14), plen 0: [desc: I#44=ETH_MAC] +EVENT[85]: 0.000536650 - core[1].svSysDesc(14), plen 0: [desc: I#44=ETH_MAC] +EVENT[86]: 0.000552750 - core[0].svSysDesc(14), plen 0: [desc: I#45=PWM0] +EVENT[87]: 0.000552750 - core[1].svSysDesc(14), plen 0: [desc: I#45=PWM0] +EVENT[88]: 0.000567600 - core[0].svSysDesc(14), plen 0: [desc: I#46=PWM1] +EVENT[89]: 0.000567600 - core[1].svSysDesc(14), plen 0: [desc: I#46=PWM1] +EVENT[90]: 0.000579950 - core[0].svSysDesc(14), plen 0: [desc: I#47=RESERVED] +EVENT[91]: 0.000579950 - core[1].svSysDesc(14), plen 0: [desc: I#47=RESERVED] +EVENT[92]: 0.000592100 - core[0].svSysDesc(14), plen 0: [desc: I#48=RESERVED] +EVENT[93]: 0.000592100 - core[1].svSysDesc(14), plen 0: [desc: I#48=RESERVED] +EVENT[94]: 0.000603425 - core[0].svSysDesc(14), plen 0: [desc: I#49=LEDC] +EVENT[95]: 0.000603425 - core[1].svSysDesc(14), plen 0: [desc: I#49=LEDC] +EVENT[96]: 0.000622525 - core[0].svSysDesc(14), plen 0: [desc: I#50=EFUSE] +EVENT[97]: 0.000622525 - core[1].svSysDesc(14), plen 0: [desc: I#50=EFUSE] +EVENT[98]: 0.000633950 - core[0].svSysDesc(14), plen 0: [desc: I#51=TWAI] +EVENT[99]: 0.000633950 - core[1].svSysDesc(14), plen 0: [desc: I#51=TWAI] +EVENT[100]: 0.000650200 - core[0].svSysDesc(14), plen 0: [desc: I#52=RTC_CORE] +EVENT[101]: 0.000650200 - core[1].svSysDesc(14), plen 0: [desc: I#52=RTC_CORE] +EVENT[102]: 0.000661100 - core[0].svSysDesc(14), plen 0: [desc: I#53=RMT] +EVENT[103]: 0.000661100 - core[1].svSysDesc(14), plen 0: [desc: I#53=RMT] +EVENT[104]: 0.000672100 - core[0].svSysDesc(14), plen 0: [desc: I#54=PCNT] +EVENT[105]: 0.000672100 - core[1].svSysDesc(14), plen 0: [desc: I#54=PCNT] +EVENT[106]: 0.000688050 - core[0].svSysDesc(14), plen 0: [desc: I#55=I2C_EXT0] +EVENT[107]: 0.000688050 - core[1].svSysDesc(14), plen 0: [desc: I#55=I2C_EXT0] +EVENT[108]: 0.000700025 - core[0].svSysDesc(14), plen 0: [desc: I#56=I2C_EXT1] +EVENT[109]: 0.000700025 - core[1].svSysDesc(14), plen 0: [desc: I#56=I2C_EXT1] +EVENT[110]: 0.000710825 - core[0].svSysDesc(14), plen 0: [desc: I#57=RSA] +EVENT[111]: 0.000710825 - core[1].svSysDesc(14), plen 0: [desc: I#57=RSA] +EVENT[112]: 0.000726900 - core[0].svSysDesc(14), plen 0: [desc: I#58=SPI1_DMA] +EVENT[113]: 0.000726900 - core[1].svSysDesc(14), plen 0: [desc: I#58=SPI1_DMA] +EVENT[114]: 0.000743075 - core[0].svSysDesc(14), plen 0: [desc: I#59=SPI2_DMA] +EVENT[115]: 0.000743075 - core[1].svSysDesc(14), plen 0: [desc: I#59=SPI2_DMA] +EVENT[116]: 0.000755050 - core[0].svSysDesc(14), plen 0: [desc: I#60=SPI3_DMA] +EVENT[117]: 0.000755050 - core[1].svSysDesc(14), plen 0: [desc: I#60=SPI3_DMA] +EVENT[118]: 0.000765950 - core[0].svSysDesc(14), plen 0: [desc: I#61=WDT] +EVENT[119]: 0.000765950 - core[1].svSysDesc(14), plen 0: [desc: I#61=WDT] +EVENT[120]: 0.000786350 - core[0].svSysDesc(14), plen 0: [desc: I#62=TIMER1] +EVENT[121]: 0.000786350 - core[1].svSysDesc(14), plen 0: [desc: I#62=TIMER1] +EVENT[122]: 0.000797875 - core[0].svSysDesc(14), plen 0: [desc: I#63=TIMER2] +EVENT[123]: 0.000797875 - core[1].svSysDesc(14), plen 0: [desc: I#63=TIMER2] +EVENT[124]: 0.000810900 - core[0].svSysDesc(14), plen 0: [desc: I#64=TG0_T0_EDGE] +EVENT[125]: 0.000810900 - core[1].svSysDesc(14), plen 0: [desc: I#64=TG0_T0_EDGE] +EVENT[126]: 0.000827775 - core[0].svSysDesc(14), plen 0: [desc: I#65=TG0_T1_EDGE] +EVENT[127]: 0.000827775 - core[1].svSysDesc(14), plen 0: [desc: I#65=TG0_T1_EDGE] +EVENT[128]: 0.000844550 - core[0].svSysDesc(14), plen 0: [desc: I#66=TG0_WDT_EDGE] +EVENT[129]: 0.000844550 - core[1].svSysDesc(14), plen 0: [desc: I#66=TG0_WDT_EDGE] +EVENT[130]: 0.000861800 - core[0].svSysDesc(14), plen 0: [desc: I#67=TG0_LACT_EDGE] +EVENT[131]: 0.000861800 - core[1].svSysDesc(14), plen 0: [desc: I#67=TG0_LACT_EDGE] +EVENT[132]: 0.000874625 - core[0].svSysDesc(14), plen 0: [desc: I#68=TG1_T0_EDGE] +EVENT[133]: 0.000874625 - core[1].svSysDesc(14), plen 0: [desc: I#68=TG1_T0_EDGE] +EVENT[134]: 0.000887300 - core[0].svSysDesc(14), plen 0: [desc: I#69=TG1_T1_EDGE] +EVENT[135]: 0.000887300 - core[1].svSysDesc(14), plen 0: [desc: I#69=TG1_T1_EDGE] +EVENT[136]: 0.000904250 - core[0].svSysDesc(14), plen 0: [desc: I#70=TG1_WDT_EDGE] +EVENT[137]: 0.000904250 - core[1].svSysDesc(14), plen 0: [desc: I#70=TG1_WDT_EDGE] +EVENT[138]: 0.000917900 - core[0].svSysDesc(14), plen 0: [desc: I#71=TG1_LACT_EDGE] +EVENT[139]: 0.000917900 - core[1].svSysDesc(14), plen 0: [desc: I#71=TG1_LACT_EDGE] +EVENT[140]: 0.000933200 - core[0].svSysDesc(14), plen 0: [desc: I#72=MMU_IA] +EVENT[141]: 0.000933200 - core[1].svSysDesc(14), plen 0: [desc: I#72=MMU_IA] +EVENT[142]: 0.000944575 - core[0].svSysDesc(14), plen 0: [desc: I#73=MPU_IA] +EVENT[143]: 0.000944575 - core[1].svSysDesc(14), plen 0: [desc: I#73=MPU_IA] +EVENT[144]: 0.000961050 - core[0].svSysDesc(14), plen 0: [desc: I#74=CACHE_IA] +EVENT[145]: 0.000961050 - core[1].svSysDesc(14), plen 0: [desc: I#74=CACHE_IA] +EVENT[146]: 0.000971475 - core[0].svSysTimeCycles(12), plen 0: [cycles: 2890156] +EVENT[147]: 0.000971475 - core[1].svSysTimeCycles(12), plen 0: [cycles: 2890156] +EVENT[148]: 0.001084025 - core[0].svTaskInfo(9), plen 0: [tid: 12252316, prio: 24, name: ipc0] +EVENT[149]: 0.001084025 - core[1].svTaskInfo(9), plen 0: [tid: 12252316, prio: 24, name: ipc0] +EVENT[150]: 0.001089250 - core[0].svStackInfo(21), plen 0: [tid: 12252316, base: 1073409176, sz: 1352, unused: 0] +EVENT[151]: 0.001089250 - core[1].svStackInfo(21), plen 0: [tid: 12252316, base: 1073409176, sz: 1352, unused: 0] +EVENT[152]: 0.001194900 - core[0].svTaskInfo(9), plen 0: [tid: 12254724, prio: 24, name: ipc1] +EVENT[153]: 0.001194900 - core[1].svTaskInfo(9), plen 0: [tid: 12254724, prio: 24, name: ipc1] +EVENT[154]: 0.001200350 - core[0].svStackInfo(21), plen 0: [tid: 12254724, base: 1073411584, sz: 1344, unused: 0] +EVENT[155]: 0.001200350 - core[1].svStackInfo(21), plen 0: [tid: 12254724, base: 1073411584, sz: 1344, unused: 0] +EVENT[156]: 0.001388300 - core[0].svTaskInfo(9), plen 0: [tid: 12274964, prio: 1, name: main] +EVENT[157]: 0.001388300 - core[1].svTaskInfo(9), plen 0: [tid: 12274964, prio: 1, name: main] +EVENT[158]: 0.001393525 - core[0].svStackInfo(21), plen 0: [tid: 12274964, base: 1073429776, sz: 2400, unused: 0] +EVENT[159]: 0.001393525 - core[1].svStackInfo(21), plen 0: [tid: 12274964, base: 1073429776, sz: 2400, unused: 0] +EVENT[160]: 0.001400850 - core[0].svNumModules(27), plen 1: [mod_cnt: 0] +EVENT[161]: 0.001400850 - core[1].svNumModules(27), plen 1: [mod_cnt: 0] +EVENT[162]: 0.001407600 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[163]: 0.001419325 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[164]: 0.001430350 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[165]: 0.001441425 - core[0].svTaskStartReady(6), plen 0: [tid: 12274964] +EVENT[166]: 0.001441425 - core[1].svTaskStartReady(6), plen 0: [tid: 12274964] +EVENT[167]: 0.001452425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[168]: 0.001463550 - core[0].svIsrExit(3), plen 0: [] +EVENT[169]: 0.001474825 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[170]: 0.001485875 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[171]: 0.001496375 - core[1].svIdle(17), plen 0: [] +EVENT[172]: 0.001507250 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[173]: 0.001523850 - core[0].svTaskStartExec(4), plen 0: [tid: 12274964] +EVENT[174]: 0.001550575 - core[0].svModuleDesc(22), plen 0: [mod_id: 0, evt_off: 512, desc: M=ESP32 SystemView Heap Tracing Module] +EVENT[175]: 0.001550575 - core[1].svModuleDesc(22), plen 0: [mod_id: 0, evt_off: 512, desc: M=ESP32 SystemView Heap Tracing Module] +EVENT[176]: 0.001564275 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[177]: 0.001579775 - core[0].svIsrExit(3), plen 0: [] +EVENT[178]: 0.001637325 - core[0].esp_sysview_heap_trace_alloc(512), plen 40: [addr: 1073440928, size: 8, callers: [1074274047, 1074274100, 1074321944, 1074609327, 1074673816, 1074299100, 0, 0, 0, 0]] +[0.001637325] HEAP: Allocated 8 bytes @ 0x3ffb68a0 from task "main" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:87 -/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 10) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[175]: 0.001669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[176]: 0.001682850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[177]: 0.001699500 - core[1].svIdle(17), plen 0: [] -EVENT[178]: 0.001812950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[179]: 0.001828450 - core[0].svIsrExit(3), plen 0: [] -EVENT[180]: 0.001864250 - core[0].esp_sysview_heap_trace_alloc(512), plen 41: [addr: 1073443048, size: 2500, callers: [1074274287, 1074304020, 1074311940, 1074621496, 1074686267, 1074302356, 0, 0, 0, 0]] -[0.001864250] HEAP: Allocated 2500 bytes @ 0x3ffb70e8 from task "main" on core 0 by: +EVENT[179]: 0.001939050 - core[0].esp_sysview_heap_trace_alloc(512), plen 41: [addr: 1073440944, size: 2500, callers: [1074274047, 1074300704, 1074308624, 1074609400, 1074673816, 1074299100, 0, 0, 0, 0]] +[0.001939050] HEAP: Allocated 2500 bytes @ 0x3ffb68b0 from task "main" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:231 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:86 (discriminator 2) -/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 10) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[181]: 0.001904100 - core[0].esp_sysview_heap_trace_alloc(512), plen 41: [addr: 1073445612, size: 340, callers: [1074274287, 1074304020, 1074311951, 1074621496, 1074686267, 1074302356, 0, 0, 0, 0]] -[0.001904100] HEAP: Allocated 340 bytes @ 0x3ffb7aec from task "main" on core 0 by: +EVENT[180]: 0.001979950 - core[0].esp_sysview_heap_trace_alloc(512), plen 41: [addr: 1073443508, size: 340, callers: [1074274047, 1074300704, 1074308635, 1074609400, 1074673816, 1074299100, 0, 0, 0, 0]] +[0.001979950] HEAP: Allocated 340 bytes @ 0x3ffb72b4 from task "main" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:236 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:86 (discriminator 2) -/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 10) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[182]: 0.001926775 - core[0].svTaskCreate(8), plen 0: [tid: 12286700] -EVENT[183]: 0.001939400 - core[0].svTaskInfo(9), plen 0: [tid: 12286700, prio: 5, name: alloc0] -EVENT[184]: 0.001939400 - core[1].svTaskInfo(9), plen 0: [tid: 12286700, prio: 5, name: alloc0] -EVENT[185]: 0.001948500 - core[0].svStackInfo(21), plen 0: [tid: 12286700, base: 1073443048, sz: 4294965096, unused: 0] -EVENT[186]: 0.001948500 - core[1].svStackInfo(21), plen 0: [tid: 12286700, base: 1073443048, sz: 4294965096, unused: 0] -EVENT[187]: 0.001959200 - core[0].svTaskStartReady(6), plen 0: [tid: 12286700] -EVENT[188]: 0.001959200 - core[1].svTaskStartReady(6), plen 0: [tid: 12286700] -EVENT[189]: 0.001974775 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[190]: 0.001986150 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[191]: 0.002002500 - core[0].svTaskStartExec(4), plen 0: [tid: 12286700] -EVENT[192]: 0.002037875 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073445968, size: 124, callers: [1074274287, 1074304020, 1074300537, 1074621092, 1074302356, 0, 0, 0, 0, 0]] -[0.002037875] HEAP: Allocated 124 bytes @ 0x3ffb7c50 from task "alloc0" on core 0 by: +EVENT[181]: 0.002010625 - core[0].svTaskCreate(8), plen 0: [tid: 12284596] +EVENT[182]: 0.002023275 - core[0].svTaskInfo(9), plen 0: [tid: 12284596, prio: 5, name: alloc0] +EVENT[183]: 0.002023275 - core[1].svTaskInfo(9), plen 0: [tid: 12284596, prio: 5, name: alloc0] +EVENT[184]: 0.002032525 - core[0].svStackInfo(21), plen 0: [tid: 12284596, base: 1073440944, sz: 4294965088, unused: 0] +EVENT[185]: 0.002032525 - core[1].svStackInfo(21), plen 0: [tid: 12284596, base: 1073440944, sz: 4294965088, unused: 0] +EVENT[186]: 0.002043250 - core[0].svTaskStartReady(6), plen 0: [tid: 12284596] +EVENT[187]: 0.002043250 - core[1].svTaskStartReady(6), plen 0: [tid: 12284596] +EVENT[188]: 0.002058825 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[189]: 0.002070175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[190]: 0.002086525 - core[0].svTaskStartExec(4), plen 0: [tid: 12284596] +EVENT[191]: 0.002130925 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073443864, size: 124, callers: [1074274047, 1074300704, 1074297281, 1074608996, 1074299100, 0, 0, 0, 0, 0]] +[0.002130925] HEAP: Allocated 124 bytes @ 0x3ffb7418 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/queue.c:545 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:48 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[193]: 0.002052175 - core[0].xQueueGenericCreate(47), plen 3: [uxQueueLength: 10, uxItemSize: 4, ucQueueType: 0] -EVENT[194]: 0.002107400 - core[0].esp_sysview_heap_trace_alloc(512), plen 37: [addr: 1073446096, size: 2500, callers: [1074274287, 1074304020, 1074311940, 1074621152, 1074302356, 0, 0, 0, 0, 0]] -[0.002107400] HEAP: Allocated 2500 bytes @ 0x3ffb7cd0 from task "alloc0" on core 0 by: +EVENT[192]: 0.002145225 - core[0].xQueueGenericCreate(47), plen 3: [uxQueueLength: 10, uxItemSize: 4, ucQueueType: 0] +EVENT[193]: 0.002205450 - core[0].esp_sysview_heap_trace_alloc(512), plen 37: [addr: 1073443992, size: 2500, callers: [1074274047, 1074300704, 1074308624, 1074609056, 1074299100, 0, 0, 0, 0, 0]] +[0.002205450] HEAP: Allocated 2500 bytes @ 0x3ffb7498 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:231 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:57 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[195]: 0.002141800 - core[0].esp_sysview_heap_trace_alloc(512), plen 37: [addr: 1073448660, size: 340, callers: [1074274287, 1074304020, 1074311951, 1074621152, 1074302356, 0, 0, 0, 0, 0]] -[0.002141800] HEAP: Allocated 340 bytes @ 0x3ffb86d4 from task "alloc0" on core 0 by: +EVENT[194]: 0.002240900 - core[0].esp_sysview_heap_trace_alloc(512), plen 37: [addr: 1073446556, size: 340, callers: [1074274047, 1074300704, 1074308635, 1074609056, 1074299100, 0, 0, 0, 0, 0]] +[0.002240900] HEAP: Allocated 340 bytes @ 0x3ffb7e9c from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:236 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:57 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[196]: 0.002168500 - core[0].svTaskCreate(8), plen 0: [tid: 12289748] -EVENT[197]: 0.002181000 - core[0].svTaskInfo(9), plen 0: [tid: 12289748, prio: 5, name: free0] -EVENT[198]: 0.002181000 - core[1].svTaskInfo(9), plen 0: [tid: 12289748, prio: 5, name: free0] -EVENT[199]: 0.002190150 - core[0].svStackInfo(21), plen 0: [tid: 12289748, base: 1073446096, sz: 4294965088, unused: 0] -EVENT[200]: 0.002190150 - core[1].svStackInfo(21), plen 0: [tid: 12289748, base: 1073446096, sz: 4294965088, unused: 0] -EVENT[201]: 0.002200975 - core[0].svTaskStartReady(6), plen 0: [tid: 12289748] -EVENT[202]: 0.002200975 - core[1].svTaskStartReady(6), plen 0: [tid: 12289748] -EVENT[203]: 0.002216350 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[204]: 0.002229250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[205]: 0.002245650 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073449016, size: 1, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.002245650] HEAP: Allocated 1 bytes @ 0x3ffb8838 from task "alloc0" on core 0 by: +EVENT[195]: 0.002267725 - core[0].svTaskCreate(8), plen 0: [tid: 12287644] +EVENT[196]: 0.002280250 - core[0].svTaskInfo(9), plen 0: [tid: 12287644, prio: 5, name: free0] +EVENT[197]: 0.002280250 - core[1].svTaskInfo(9), plen 0: [tid: 12287644, prio: 5, name: free0] +EVENT[198]: 0.002289425 - core[0].svStackInfo(21), plen 0: [tid: 12287644, base: 1073443992, sz: 4294965096, unused: 0] +EVENT[199]: 0.002289425 - core[1].svStackInfo(21), plen 0: [tid: 12287644, base: 1073443992, sz: 4294965096, unused: 0] +EVENT[200]: 0.002300275 - core[0].svTaskStartReady(6), plen 0: [tid: 12287644] +EVENT[201]: 0.002300275 - core[1].svTaskStartReady(6), plen 0: [tid: 12287644] +EVENT[202]: 0.002315625 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[203]: 0.002328675 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[204]: 0.002345850 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073446912, size: 1, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.002345850] HEAP: Allocated 1 bytes @ 0x3ffb8000 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[206]: 0.002256950 - core[1].svTaskStartExec(4), plen 0: [tid: 12289748] -EVENT[207]: 0.002286975 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[208]: 0.002297900 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073449032, size: 2, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.002297900] HEAP: Allocated 2 bytes @ 0x3ffb8848 from task "alloc0" on core 0 by: +EVENT[205]: 0.002358000 - core[1].svTaskStartExec(4), plen 0: [tid: 12287644] +EVENT[206]: 0.002387975 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[207]: 0.002399325 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073446928, size: 2, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.002399325] HEAP: Allocated 2 bytes @ 0x3ffb8010 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[209]: 0.002308975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[210]: 0.002321625 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[211]: 0.002332075 - core[1].svIdle(17), plen 0: [] -EVENT[212]: 0.002366250 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[213]: 0.002605525 - core[0].svPrint(26), plen 69: [msg: I (310) example: Task[0x3ffb7aec]: allocated 2 bytes @ 0x3ffb8848 +EVENT[208]: 0.002410900 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[209]: 0.002423150 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[210]: 0.002440625 - core[1].svIdle(17), plen 0: [] +EVENT[211]: 0.002456600 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[212]: 0.002470175 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[213]: 0.002481550 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[214]: 0.002492700 - core[1].svIdle(17), plen 0: [] +EVENT[215]: 0.002742275 - core[0].svPrint(26), plen 69: [msg: I (297) example: Task[0x3ffb72b4]: allocated 2 bytes @ 0x3ffb8010 , lvl: 0, unused: 0] -[0.002605525] LOG: I (310) example: Task[0x3ffb7aec]: allocated 2 bytes @ 0x3ffb8848 -EVENT[214]: 0.002627100 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12287056, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[215]: 0.002640225 - core[0].svTaskStartReady(6), plen 0: [tid: 12289748] -EVENT[216]: 0.002640225 - core[1].svTaskStartReady(6), plen 0: [tid: 12289748] -EVENT[217]: 0.002656425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[218]: 0.002667300 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[219]: 0.002678075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[220]: 0.002692250 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[221]: 0.002703000 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[222]: 0.002713925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[223]: 0.002725475 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[224]: 0.002735950 - core[0].svTaskStartExec(4), plen 0: [tid: 12254080] -EVENT[225]: 0.002753450 - core[1].svTaskStartExec(4), plen 0: [tid: 12289748] -EVENT[226]: 0.002770250 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12287056, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[227]: 0.002782075 - core[0].esp_sysview_heap_trace_alloc(512), plen 40: [addr: 1073449048, size: 8, callers: [1074274287, 1074274340, 1074325096, 1074621423, 1074686267, 1074302356, 0, 0, 0, 0]] -[0.002782075] HEAP: Allocated 8 bytes @ 0x3ffb8858 from task "main" on core 0 by: +[0.002742275] LOG: I (297) example: Task[0x3ffb72b4]: allocated 2 bytes @ 0x3ffb8010 +EVENT[216]: 0.002759000 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[217]: 0.002774375 - core[0].svIsrExit(3), plen 0: [] +EVENT[218]: 0.002788425 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12284952, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[219]: 0.002801625 - core[0].svTaskStartReady(6), plen 0: [tid: 12287644] +EVENT[220]: 0.002801625 - core[1].svTaskStartReady(6), plen 0: [tid: 12287644] +EVENT[221]: 0.002817875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[222]: 0.002828825 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[223]: 0.002839525 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[224]: 0.002853300 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[225]: 0.002864225 - core[1].svTaskStartExec(4), plen 0: [tid: 12287644] +EVENT[226]: 0.002875075 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[227]: 0.002887100 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12284952, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[228]: 0.002897825 - core[0].svTaskStartExec(4), plen 0: [tid: 12274964] +EVENT[229]: 0.002937850 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[230]: 0.002949925 - core[0].esp_sysview_heap_trace_alloc(512), plen 40: [addr: 1073446944, size: 8, callers: [1074274047, 1074274100, 1074321944, 1074609327, 1074673816, 1074299100, 0, 0, 0, 0]] +[0.002949925] HEAP: Allocated 8 bytes @ 0x3ffb8020 from task "main" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:87 -/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 10) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[228]: 0.002813350 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[229]: 0.002824975 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[230]: 0.002835950 - core[0].svIsrExit(3), plen 0: [] -EVENT[231]: 0.002860725 - core[0].esp_sysview_heap_trace_alloc(512), plen 41: [addr: 1073449064, size: 2500, callers: [1074274287, 1074304020, 1074311940, 1074621496, 1074686267, 1074302356, 0, 0, 0, 0]] -[0.002860725] HEAP: Allocated 2500 bytes @ 0x3ffb8868 from task "main" on core 0 by: +EVENT[231]: 0.002992925 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[232]: 0.003004025 - core[0].esp_sysview_heap_trace_alloc(512), plen 41: [addr: 1073446960, size: 2500, callers: [1074274047, 1074300704, 1074308624, 1074609400, 1074673816, 1074299100, 0, 0, 0, 0]] +[0.003004025] HEAP: Allocated 2500 bytes @ 0x3ffb8030 from task "main" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:231 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:86 (discriminator 2) -/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 10) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[232]: 0.002875775 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[233]: 0.002902375 - core[0].esp_sysview_heap_trace_alloc(512), plen 41: [addr: 1073451628, size: 340, callers: [1074274287, 1074304020, 1074311951, 1074621496, 1074686267, 1074302356, 0, 0, 0, 0]] -[0.002902375] HEAP: Allocated 340 bytes @ 0x3ffb926c from task "main" on core 0 by: +EVENT[233]: 0.003044650 - core[0].esp_sysview_heap_trace_alloc(512), plen 41: [addr: 1073449524, size: 340, callers: [1074274047, 1074300704, 1074308635, 1074609400, 1074673816, 1074299100, 0, 0, 0, 0]] +[0.003044650] HEAP: Allocated 340 bytes @ 0x3ffb8a34 from task "main" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:236 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:86 (discriminator 2) -/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 10) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[234]: 0.002925000 - core[0].svTaskCreate(8), plen 0: [tid: 12292716] -EVENT[235]: 0.002937650 - core[0].svTaskInfo(9), plen 0: [tid: 12292716, prio: 5, name: alloc1] -EVENT[236]: 0.002937650 - core[1].svTaskInfo(9), plen 0: [tid: 12292716, prio: 5, name: alloc1] -EVENT[237]: 0.002946800 - core[0].svStackInfo(21), plen 0: [tid: 12292716, base: 1073449064, sz: 4294965096, unused: 0] -EVENT[238]: 0.002946800 - core[1].svStackInfo(21), plen 0: [tid: 12292716, base: 1073449064, sz: 4294965096, unused: 0] -EVENT[239]: 0.002957675 - core[0].svTaskStartReady(6), plen 0: [tid: 12292716] -EVENT[240]: 0.002957675 - core[1].svTaskStartReady(6), plen 0: [tid: 12292716] -EVENT[241]: 0.002973300 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[242]: 0.002984800 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[243]: 0.003001650 - core[0].svTaskStartExec(4), plen 0: [tid: 12292716] -EVENT[244]: 0.003037100 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073451984, size: 124, callers: [1074274287, 1074304020, 1074300537, 1074621092, 1074302356, 0, 0, 0, 0, 0]] -[0.003037100] HEAP: Allocated 124 bytes @ 0x3ffb93d0 from task "alloc1" on core 0 by: +EVENT[234]: 0.003067500 - core[0].svTaskCreate(8), plen 0: [tid: 12290612] +EVENT[235]: 0.003080150 - core[0].svTaskInfo(9), plen 0: [tid: 12290612, prio: 5, name: alloc1] +EVENT[236]: 0.003080150 - core[1].svTaskInfo(9), plen 0: [tid: 12290612, prio: 5, name: alloc1] +EVENT[237]: 0.003089275 - core[0].svStackInfo(21), plen 0: [tid: 12290612, base: 1073446960, sz: 4294965088, unused: 0] +EVENT[238]: 0.003089275 - core[1].svStackInfo(21), plen 0: [tid: 12290612, base: 1073446960, sz: 4294965088, unused: 0] +EVENT[239]: 0.003100000 - core[0].svTaskStartReady(6), plen 0: [tid: 12290612] +EVENT[240]: 0.003100000 - core[1].svTaskStartReady(6), plen 0: [tid: 12290612] +EVENT[241]: 0.003115575 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[242]: 0.003126925 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[243]: 0.003143300 - core[0].svTaskStartExec(4), plen 0: [tid: 12290612] +EVENT[244]: 0.003179725 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073449880, size: 124, callers: [1074274047, 1074300704, 1074297281, 1074608996, 1074299100, 0, 0, 0, 0, 0]] +[0.003179725] HEAP: Allocated 124 bytes @ 0x3ffb8b98 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/queue.c:545 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:48 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[245]: 0.003051375 - core[0].xQueueGenericCreate(47), plen 3: [uxQueueLength: 10, uxItemSize: 4, ucQueueType: 0] -EVENT[246]: 0.003090750 - core[0].esp_sysview_heap_trace_alloc(512), plen 37: [addr: 1073452112, size: 2500, callers: [1074274287, 1074304020, 1074311940, 1074621152, 1074302356, 0, 0, 0, 0, 0]] -[0.003090750] HEAP: Allocated 2500 bytes @ 0x3ffb9450 from task "alloc1" on core 0 by: +EVENT[245]: 0.003194025 - core[0].xQueueGenericCreate(47), plen 3: [uxQueueLength: 10, uxItemSize: 4, ucQueueType: 0] +EVENT[246]: 0.003234475 - core[0].esp_sysview_heap_trace_alloc(512), plen 37: [addr: 1073450008, size: 2500, callers: [1074274047, 1074300704, 1074308624, 1074609056, 1074299100, 0, 0, 0, 0, 0]] +[0.003234475] HEAP: Allocated 2500 bytes @ 0x3ffb8c18 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:231 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:57 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[247]: 0.003125150 - core[0].esp_sysview_heap_trace_alloc(512), plen 37: [addr: 1073454676, size: 340, callers: [1074274287, 1074304020, 1074311951, 1074621152, 1074302356, 0, 0, 0, 0, 0]] -[0.003125150] HEAP: Allocated 340 bytes @ 0x3ffb9e54 from task "alloc1" on core 0 by: +EVENT[247]: 0.003269925 - core[0].esp_sysview_heap_trace_alloc(512), plen 37: [addr: 1073452572, size: 340, callers: [1074274047, 1074300704, 1074308635, 1074609056, 1074299100, 0, 0, 0, 0, 0]] +[0.003269925] HEAP: Allocated 340 bytes @ 0x3ffb961c from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:236 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:57 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[248]: 0.003151900 - core[0].svTaskCreate(8), plen 0: [tid: 12295764] -EVENT[249]: 0.003164400 - core[0].svTaskInfo(9), plen 0: [tid: 12295764, prio: 5, name: free1] -EVENT[250]: 0.003164400 - core[1].svTaskInfo(9), plen 0: [tid: 12295764, prio: 5, name: free1] -EVENT[251]: 0.003173550 - core[0].svStackInfo(21), plen 0: [tid: 12295764, base: 1073452112, sz: 4294965088, unused: 0] -EVENT[252]: 0.003173550 - core[1].svStackInfo(21), plen 0: [tid: 12295764, base: 1073452112, sz: 4294965088, unused: 0] -EVENT[253]: 0.003184375 - core[0].svTaskStartReady(6), plen 0: [tid: 12295764] -EVENT[254]: 0.003184375 - core[1].svTaskStartReady(6), plen 0: [tid: 12295764] -EVENT[255]: 0.003220600 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073455032, size: 2, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.003220600] HEAP: Allocated 2 bytes @ 0x3ffb9fb8 from task "alloc1" on core 0 by: +EVENT[248]: 0.003296650 - core[0].svTaskCreate(8), plen 0: [tid: 12293660] +EVENT[249]: 0.003309150 - core[0].svTaskInfo(9), plen 0: [tid: 12293660, prio: 5, name: free1] +EVENT[250]: 0.003309150 - core[1].svTaskInfo(9), plen 0: [tid: 12293660, prio: 5, name: free1] +EVENT[251]: 0.003318350 - core[0].svStackInfo(21), plen 0: [tid: 12293660, base: 1073450008, sz: 4294965096, unused: 0] +EVENT[252]: 0.003318350 - core[1].svStackInfo(21), plen 0: [tid: 12293660, base: 1073450008, sz: 4294965096, unused: 0] +EVENT[253]: 0.003329175 - core[0].svTaskStartReady(6), plen 0: [tid: 12293660] +EVENT[254]: 0.003329175 - core[1].svTaskStartReady(6), plen 0: [tid: 12293660] +EVENT[255]: 0.003366350 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073452928, size: 2, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.003366350] HEAP: Allocated 2 bytes @ 0x3ffb9780 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[256]: 0.003255050 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073455048, size: 4, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.003255050] HEAP: Allocated 4 bytes @ 0x3ffb9fc8 from task "alloc1" on core 0 by: +EVENT[256]: 0.003401775 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073452944, size: 4, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.003401775] HEAP: Allocated 4 bytes @ 0x3ffb9790 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[257]: 0.003271950 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[258]: 0.003294125 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[259]: 0.003336850 - core[1].svPrint(26), plen 63: [msg: I (310) example: Task[0x3ffb86d4]: free memory @ 0x3ffb8848 +EVENT[257]: 0.003418700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[258]: 0.003438675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[259]: 0.003462300 - core[1].svPrint(26), plen 63: [msg: I (298) example: Task[0x3ffb7e9c]: free memory @ 0x3ffb8010 , lvl: 0, unused: 0] -[0.003336850] LOG: I (310) example: Task[0x3ffb86d4]: free memory @ 0x3ffb8848 -EVENT[260]: 0.003357000 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[261]: 0.003368450 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[262]: 0.003385425 - core[1].svTaskStartExec(4), plen 0: [tid: 12289748] -EVENT[263]: 0.003404250 - core[0].svPrint(26), plen 69: [msg: I (311) example: Task[0x3ffb926c]: allocated 4 bytes @ 0x3ffb9fc8 +[0.003462300] LOG: I (298) example: Task[0x3ffb7e9c]: free memory @ 0x3ffb8010 +EVENT[260]: 0.003481375 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[261]: 0.003494825 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[262]: 0.003506650 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[263]: 0.003526375 - core[0].svPrint(26), plen 69: [msg: I (298) example: Task[0x3ffb8a34]: allocated 4 bytes @ 0x3ffb9790 , lvl: 0, unused: 0] -[0.003404250] LOG: I (311) example: Task[0x3ffb926c]: allocated 4 bytes @ 0x3ffb9fc8 -EVENT[264]: 0.003418350 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12293072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[265]: 0.003431500 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073449032, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.003431500] HEAP: Freed bytes @ 0x3ffb8848 from task "free0" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +[0.003526375] LOG: I (298) example: Task[0x3ffb8a34]: allocated 4 bytes @ 0x3ffb9790 +EVENT[264]: 0.003537925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[265]: 0.003550050 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12290968, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[266]: 0.003567875 - core[1].svTaskStartExec(4), plen 0: [tid: 12287644] +EVENT[267]: 0.003578850 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[268]: 0.003595750 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[269]: 0.003606975 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073446928, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.003606975] HEAP: Freed bytes @ 0x3ffb8010 from task "free0" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[266]: 0.003443325 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[267]: 0.003462000 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[268]: 0.003475950 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[269]: 0.003490025 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[270]: 0.003501925 - core[0].svTaskStartExec(4), plen 0: [tid: 12254080] -EVENT[271]: 0.003512800 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[272]: 0.003532050 - core[1].svTaskStartExec(4), plen 0: [tid: 12295764] -EVENT[273]: 0.003544375 - core[0].esp_sysview_heap_trace_alloc(512), plen 40: [addr: 1073449032, size: 8, callers: [1074274287, 1074274340, 1074325096, 1074621423, 1074686267, 1074302356, 0, 0, 0, 0]] -[0.003544375] HEAP: Allocated 8 bytes @ 0x3ffb8848 from task "main" on core 0 by: +EVENT[270]: 0.003617975 - core[0].svTaskStartExec(4), plen 0: [tid: 12290612] +EVENT[271]: 0.003633200 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[272]: 0.003652900 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[273]: 0.003667050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[274]: 0.003680950 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[275]: 0.003692800 - core[0].svTaskStartExec(4), plen 0: [tid: 12274964] +EVENT[276]: 0.003703850 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[277]: 0.003723175 - core[1].svTaskStartExec(4), plen 0: [tid: 12293660] +EVENT[278]: 0.003736750 - core[0].esp_sysview_heap_trace_alloc(512), plen 40: [addr: 1073446928, size: 8, callers: [1074274047, 1074274100, 1074321944, 1074609327, 1074673816, 1074299100, 0, 0, 0, 0]] +[0.003736750] HEAP: Allocated 8 bytes @ 0x3ffb8010 from task "main" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:87 -/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 10) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[274]: 0.003561425 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12293072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[275]: 0.003580100 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[276]: 0.003597875 - core[0].esp_sysview_heap_trace_alloc(512), plen 41: [addr: 1073455064, size: 2500, callers: [1074274287, 1074304020, 1074311940, 1074621496, 1074686267, 1074302356, 0, 0, 0, 0]] -[0.003597875] HEAP: Allocated 2500 bytes @ 0x3ffb9fd8 from task "main" on core 0 by: +EVENT[279]: 0.003753800 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12290968, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[280]: 0.003772075 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[281]: 0.003791150 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[282]: 0.003802900 - core[0].esp_sysview_heap_trace_alloc(512), plen 41: [addr: 1073452960, size: 2500, callers: [1074274047, 1074300704, 1074308624, 1074609400, 1074673816, 1074299100, 0, 0, 0, 0]] +[0.003802900] HEAP: Allocated 2500 bytes @ 0x3ffb97a0 from task "main" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:231 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:86 (discriminator 2) -/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 10) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[277]: 0.003610600 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[278]: 0.003637125 - core[0].esp_sysview_heap_trace_alloc(512), plen 41: [addr: 1073457628, size: 340, callers: [1074274287, 1074304020, 1074311951, 1074621496, 1074686267, 1074302356, 0, 0, 0, 0]] -[0.003637125] HEAP: Allocated 340 bytes @ 0x3ffba9dc from task "main" on core 0 by: +EVENT[283]: 0.003844025 - core[1].svPrint(26), plen 63: [msg: I (299) example: Task[0x3ffb961c]: free memory @ 0x3ffb9790 +, lvl: 0, unused: 0] +[0.003844025] LOG: I (299) example: Task[0x3ffb961c]: free memory @ 0x3ffb9790 +EVENT[284]: 0.003855950 - core[0].esp_sysview_heap_trace_alloc(512), plen 41: [addr: 1073455524, size: 340, callers: [1074274047, 1074300704, 1074308635, 1074609400, 1074673816, 1074299100, 0, 0, 0, 0]] +[0.003855950] HEAP: Allocated 340 bytes @ 0x3ffba1a4 from task "main" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:236 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:86 (discriminator 2) -/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 10) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[279]: 0.003660625 - core[1].svPrint(26), plen 63: [msg: I (311) example: Task[0x3ffb9e54]: free memory @ 0x3ffb9fc8 -, lvl: 0, unused: 0] -[0.003660625] LOG: I (311) example: Task[0x3ffb9e54]: free memory @ 0x3ffb9fc8 -EVENT[280]: 0.003672000 - core[0].svTaskCreate(8), plen 0: [tid: 12298716] -EVENT[281]: 0.003688200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[282]: 0.003700975 - core[0].svTaskInfo(9), plen 0: [tid: 12298716, prio: 5, name: alloc2] -EVENT[283]: 0.003700975 - core[1].svTaskInfo(9), plen 0: [tid: 12298716, prio: 5, name: alloc2] -EVENT[284]: 0.003711950 - core[0].svStackInfo(21), plen 0: [tid: 12298716, base: 1073455064, sz: 4294965096, unused: 0] -EVENT[285]: 0.003711950 - core[1].svStackInfo(21), plen 0: [tid: 12298716, base: 1073455064, sz: 4294965096, unused: 0] -EVENT[286]: 0.003724850 - core[0].svTaskStartReady(6), plen 0: [tid: 12298716] -EVENT[287]: 0.003724850 - core[1].svTaskStartReady(6), plen 0: [tid: 12298716] -EVENT[288]: 0.003742300 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[289]: 0.003753150 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[290]: 0.003765400 - core[1].svTaskStartExec(4), plen 0: [tid: 12295764] -EVENT[291]: 0.003776400 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[292]: 0.003791750 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073455048, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.003791750] HEAP: Freed bytes @ 0x3ffb9fc8 from task "free1" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +EVENT[285]: 0.003869550 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073452944, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.003869550] HEAP: Freed bytes @ 0x3ffb9790 from task "free1" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[293]: 0.003803375 - core[0].svTaskStartExec(4), plen 0: [tid: 12298716] -EVENT[294]: 0.003819875 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[295]: 0.003831475 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[296]: 0.003843175 - core[0].svIsrExit(3), plen 0: [] -EVENT[297]: 0.003853725 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[298]: 0.003875450 - core[1].svIdle(17), plen 0: [] -EVENT[299]: 0.003887725 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073457984, size: 124, callers: [1074274287, 1074304020, 1074300537, 1074621092, 1074302356, 0, 0, 0, 0, 0]] -[0.003887725] HEAP: Allocated 124 bytes @ 0x3ffbab40 from task "alloc2" on core 0 by: +EVENT[286]: 0.003885400 - core[0].svTaskCreate(8), plen 0: [tid: 12296612] +EVENT[287]: 0.003900350 - core[0].svTaskInfo(9), plen 0: [tid: 12296612, prio: 5, name: alloc2] +EVENT[288]: 0.003900350 - core[1].svTaskInfo(9), plen 0: [tid: 12296612, prio: 5, name: alloc2] +EVENT[289]: 0.003911525 - core[0].svStackInfo(21), plen 0: [tid: 12296612, base: 1073452960, sz: 4294965088, unused: 0] +EVENT[290]: 0.003911525 - core[1].svStackInfo(21), plen 0: [tid: 12296612, base: 1073452960, sz: 4294965088, unused: 0] +EVENT[291]: 0.003924550 - core[0].svTaskStartReady(6), plen 0: [tid: 12296612] +EVENT[292]: 0.003924550 - core[1].svTaskStartReady(6), plen 0: [tid: 12296612] +EVENT[293]: 0.003943225 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[294]: 0.003957125 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[295]: 0.003970975 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[296]: 0.003981850 - core[0].svTaskStartExec(4), plen 0: [tid: 12296612] +EVENT[297]: 0.003992875 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[298]: 0.004014925 - core[1].svIdle(17), plen 0: [] +EVENT[299]: 0.004030875 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073455880, size: 124, callers: [1074274047, 1074300704, 1074297281, 1074608996, 1074299100, 0, 0, 0, 0, 0]] +[0.004030875] HEAP: Allocated 124 bytes @ 0x3ffba308 from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/queue.c:545 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:48 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[300]: 0.003902275 - core[0].xQueueGenericCreate(47), plen 3: [uxQueueLength: 10, uxItemSize: 4, ucQueueType: 0] -EVENT[301]: 0.003941625 - core[0].esp_sysview_heap_trace_alloc(512), plen 37: [addr: 1073458112, size: 2500, callers: [1074274287, 1074304020, 1074311940, 1074621152, 1074302356, 0, 0, 0, 0, 0]] -[0.003941625] HEAP: Allocated 2500 bytes @ 0x3ffbabc0 from task "alloc2" on core 0 by: +EVENT[300]: 0.004045200 - core[0].xQueueGenericCreate(47), plen 3: [uxQueueLength: 10, uxItemSize: 4, ucQueueType: 0] +EVENT[301]: 0.004085625 - core[0].esp_sysview_heap_trace_alloc(512), plen 37: [addr: 1073456008, size: 2500, callers: [1074274047, 1074300704, 1074308624, 1074609056, 1074299100, 0, 0, 0, 0, 0]] +[0.004085625] HEAP: Allocated 2500 bytes @ 0x3ffba388 from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:231 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:57 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[302]: 0.003976025 - core[0].esp_sysview_heap_trace_alloc(512), plen 37: [addr: 1073460676, size: 340, callers: [1074274287, 1074304020, 1074311951, 1074621152, 1074302356, 0, 0, 0, 0, 0]] -[0.003976025] HEAP: Allocated 340 bytes @ 0x3ffbb5c4 from task "alloc2" on core 0 by: +EVENT[302]: 0.004121100 - core[0].esp_sysview_heap_trace_alloc(512), plen 37: [addr: 1073458572, size: 340, callers: [1074274047, 1074300704, 1074308635, 1074609056, 1074299100, 0, 0, 0, 0, 0]] +[0.004121100] HEAP: Allocated 340 bytes @ 0x3ffbad8c from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:236 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:57 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[303]: 0.004002000 - core[0].svTaskCreate(8), plen 0: [tid: 12301764] -EVENT[304]: 0.004014625 - core[0].svTaskInfo(9), plen 0: [tid: 12301764, prio: 5, name: free2] -EVENT[305]: 0.004014625 - core[1].svTaskInfo(9), plen 0: [tid: 12301764, prio: 5, name: free2] -EVENT[306]: 0.004023800 - core[0].svStackInfo(21), plen 0: [tid: 12301764, base: 1073458112, sz: 4294965088, unused: 0] -EVENT[307]: 0.004023800 - core[1].svStackInfo(21), plen 0: [tid: 12301764, base: 1073458112, sz: 4294965088, unused: 0] -EVENT[308]: 0.004034600 - core[0].svTaskStartReady(6), plen 0: [tid: 12301764] -EVENT[309]: 0.004034600 - core[1].svTaskStartReady(6), plen 0: [tid: 12301764] -EVENT[310]: 0.004050850 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[311]: 0.004063700 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[312]: 0.004075375 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073455048, size: 3, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.004075375] HEAP: Allocated 3 bytes @ 0x3ffb9fc8 from task "alloc2" on core 0 by: +EVENT[303]: 0.004143675 - core[0].svTaskCreate(8), plen 0: [tid: 12299660] +EVENT[304]: 0.004156250 - core[0].svTaskInfo(9), plen 0: [tid: 12299660, prio: 5, name: free2] +EVENT[305]: 0.004156250 - core[1].svTaskInfo(9), plen 0: [tid: 12299660, prio: 5, name: free2] +EVENT[306]: 0.004169425 - core[0].svStackInfo(21), plen 0: [tid: 12299660, base: 1073456008, sz: 4294965096, unused: 0] +EVENT[307]: 0.004169425 - core[1].svStackInfo(21), plen 0: [tid: 12299660, base: 1073456008, sz: 4294965096, unused: 0] +EVENT[308]: 0.004180150 - core[0].svTaskStartReady(6), plen 0: [tid: 12299660] +EVENT[309]: 0.004180150 - core[1].svTaskStartReady(6), plen 0: [tid: 12299660] +EVENT[310]: 0.004196250 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[311]: 0.004209125 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[312]: 0.004221350 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073452944, size: 3, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.004221350] HEAP: Allocated 3 bytes @ 0x3ffb9790 from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[313]: 0.004086825 - core[1].svTaskStartExec(4), plen 0: [tid: 12301764] -EVENT[314]: 0.004113200 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[315]: 0.004124950 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461032, size: 6, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.004124950] HEAP: Allocated 6 bytes @ 0x3ffbb728 from task "alloc2" on core 0 by: +EVENT[313]: 0.004233575 - core[1].svTaskStartExec(4), plen 0: [tid: 12299660] +EVENT[314]: 0.004259950 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[315]: 0.004271525 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073458928, size: 6, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.004271525] HEAP: Allocated 6 bytes @ 0x3ffbaef0 from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[316]: 0.004136375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[317]: 0.004148350 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[318]: 0.004158625 - core[1].svIdle(17), plen 0: [] -EVENT[319]: 0.004177025 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[320]: 0.004229325 - core[0].svPrint(26), plen 69: [msg: I (312) example: Task[0x3ffba9dc]: allocated 6 bytes @ 0x3ffbb728 +EVENT[316]: 0.004282925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[317]: 0.004294950 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[318]: 0.004306150 - core[1].svIdle(17), plen 0: [] +EVENT[319]: 0.004324575 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[320]: 0.004377100 - core[0].svPrint(26), plen 69: [msg: I (299) example: Task[0x3ffba1a4]: allocated 6 bytes @ 0x3ffbaef0 , lvl: 0, unused: 0] -[0.004229325] LOG: I (312) example: Task[0x3ffba9dc]: allocated 6 bytes @ 0x3ffbb728 -EVENT[321]: 0.004246325 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12299072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[322]: 0.004259475 - core[0].svTaskStartReady(6), plen 0: [tid: 12301764] -EVENT[323]: 0.004259475 - core[1].svTaskStartReady(6), plen 0: [tid: 12301764] -EVENT[324]: 0.004275750 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[325]: 0.004286600 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[326]: 0.004297375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[327]: 0.004311250 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[328]: 0.004322050 - core[1].svTaskStartExec(4), plen 0: [tid: 12301764] -EVENT[329]: 0.004332900 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[330]: 0.004344800 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12299072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[331]: 0.004355375 - core[0].svTaskStartExec(4), plen 0: [tid: 12254080] -EVENT[332]: 0.004367550 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[333]: 0.004394600 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[334]: 0.004405450 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[335]: 0.004417125 - core[0].svTaskStartReady(6), plen 0: [tid: 12254080] -EVENT[336]: 0.004417125 - core[1].svTaskStartReady(6), plen 0: [tid: 12254080] -EVENT[337]: 0.004428475 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[338]: 0.004446600 - core[0].svTaskStartExec(4), plen 0: [tid: 12254080] -EVENT[339]: 0.004461050 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[340]: 0.004485000 - core[1].svPrint(26), plen 63: [msg: I (312) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb728 +[0.004377100] LOG: I (299) example: Task[0x3ffba1a4]: allocated 6 bytes @ 0x3ffbaef0 +EVENT[321]: 0.004390575 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12296968, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[322]: 0.004403775 - core[0].svTaskStartReady(6), plen 0: [tid: 12299660] +EVENT[323]: 0.004403775 - core[1].svTaskStartReady(6), plen 0: [tid: 12299660] +EVENT[324]: 0.004424325 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[325]: 0.004435175 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[326]: 0.004445975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[327]: 0.004460225 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[328]: 0.004471900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[329]: 0.004482925 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[330]: 0.004494925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[331]: 0.004505375 - core[0].svTaskStartExec(4), plen 0: [tid: 12274964] +EVENT[332]: 0.004522150 - core[1].svTaskStartExec(4), plen 0: [tid: 12299660] +EVENT[333]: 0.004534325 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[334]: 0.004546275 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12296968, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[335]: 0.004557600 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[336]: 0.004568700 - core[0].svTaskStartReady(6), plen 0: [tid: 12274964] +EVENT[337]: 0.004568700 - core[1].svTaskStartReady(6), plen 0: [tid: 12274964] +EVENT[338]: 0.004582350 - core[1].vTaskPriorityInherit(39), plen 5: [pxMutexHolder: 1073433876] +EVENT[339]: 0.004597425 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[340]: 0.004608000 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[341]: 0.004618825 - core[0].svTaskStartExec(4), plen 0: [tid: 12274964] +EVENT[342]: 0.004629700 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[343]: 0.004641000 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[344]: 0.004656550 - core[1].svIdle(17), plen 0: [] +EVENT[345]: 0.004671050 - core[0].xTaskPriorityDisinherit(42), plen 5: [pxMutexHolder: 1073433876] +EVENT[346]: 0.004681725 - core[0].svTaskStartReady(6), plen 0: [tid: 12274964] +EVENT[347]: 0.004681725 - core[1].svTaskStartReady(6), plen 0: [tid: 12274964] +EVENT[348]: 0.004695500 - core[0].svTaskStartReady(6), plen 0: [tid: 12299660] +EVENT[349]: 0.004695500 - core[1].svTaskStartReady(6), plen 0: [tid: 12299660] +EVENT[350]: 0.004711225 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[351]: 0.004722700 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[352]: 0.004739300 - core[0].svPrint(26), plen 34: [msg: I (299) example: Wait notify 0 , lvl: 0, unused: 0] -[0.004485000] LOG: I (312) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb728 -EVENT[341]: 0.004501225 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[342]: 0.004514850 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461032, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.004514850] HEAP: Freed bytes @ 0x3ffbb728 from task "free2" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +[0.004739300] LOG: I (299) example: Wait notify 0 +EVENT[353]: 0.004750500 - core[1].svTaskStartExec(4), plen 0: [tid: 12299660] +EVENT[354]: 0.004767725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[355]: 0.004778650 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[356]: 0.004790975 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[357]: 0.004801725 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[358]: 0.004819425 - core[0].svIdle(17), plen 0: [] +EVENT[359]: 0.004840550 - core[1].svPrint(26), plen 63: [msg: I (299) example: Task[0x3ffbad8c]: free memory @ 0x3ffbaef0 +, lvl: 0, unused: 0] +[0.004840550] LOG: I (299) example: Task[0x3ffbad8c]: free memory @ 0x3ffbaef0 +EVENT[360]: 0.004866125 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073458928, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.004866125] HEAP: Freed bytes @ 0x3ffbaef0 from task "free2" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[343]: 0.004542000 - core[0].svPrint(26), plen 34: [msg: I (312) example: Wait notify 0 -, lvl: 0, unused: 0] -[0.004542000] LOG: I (312) example: Wait notify 0 -EVENT[344]: 0.004553025 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[345]: 0.004566700 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[346]: 0.004580775 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[347]: 0.004591450 - core[1].svIdle(17), plen 0: [] -EVENT[348]: 0.004602475 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[349]: 0.004618600 - core[0].svIdle(17), plen 0: [] -EVENT[350]: 0.004669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[351]: 0.004682875 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[352]: 0.004698150 - core[1].svIdle(17), plen 0: [] -EVENT[353]: 0.004813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[354]: 0.004828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[355]: 0.004843775 - core[0].svIdle(17), plen 0: [] -EVENT[356]: 0.005669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[357]: 0.005682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[358]: 0.005698100 - core[1].svIdle(17), plen 0: [] -EVENT[359]: 0.005813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[360]: 0.005828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[361]: 0.005843775 - core[0].svIdle(17), plen 0: [] -EVENT[362]: 0.006669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[363]: 0.006682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[364]: 0.006698075 - core[1].svIdle(17), plen 0: [] -EVENT[365]: 0.006813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[366]: 0.006828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[367]: 0.006843825 - core[0].svIdle(17), plen 0: [] -EVENT[368]: 0.007669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[369]: 0.007682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[370]: 0.007698075 - core[1].svIdle(17), plen 0: [] -EVENT[371]: 0.007813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[372]: 0.007828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[373]: 0.007843775 - core[0].svIdle(17), plen 0: [] -EVENT[374]: 0.008669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[375]: 0.008687175 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[376]: 0.008702325 - core[1].svIdle(17), plen 0: [] -EVENT[377]: 0.008813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[378]: 0.008828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[379]: 0.008843775 - core[0].svIdle(17), plen 0: [] -EVENT[380]: 0.009669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[381]: 0.009682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[382]: 0.009698075 - core[1].svIdle(17), plen 0: [] -EVENT[383]: 0.009813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[384]: 0.009828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[385]: 0.009843825 - core[0].svIdle(17), plen 0: [] -EVENT[386]: 0.010669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[387]: 0.010682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[388]: 0.010698075 - core[1].svIdle(17), plen 0: [] -EVENT[389]: 0.010813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[390]: 0.010828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[391]: 0.010843775 - core[0].svIdle(17), plen 0: [] -EVENT[392]: 0.011669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[393]: 0.011682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[394]: 0.011698325 - core[1].svIdle(17), plen 0: [] -EVENT[395]: 0.011813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[396]: 0.011828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[397]: 0.011843775 - core[0].svIdle(17), plen 0: [] -EVENT[398]: 0.012669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[399]: 0.012682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[400]: 0.012698100 - core[1].svIdle(17), plen 0: [] -EVENT[401]: 0.012813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[402]: 0.012828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[403]: 0.012843775 - core[0].svIdle(17), plen 0: [] -EVENT[404]: 0.013669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[405]: 0.013682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[406]: 0.013698075 - core[1].svIdle(17), plen 0: [] -EVENT[407]: 0.013813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[408]: 0.013828850 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[409]: 0.013844050 - core[0].svIdle(17), plen 0: [] -EVENT[410]: 0.014669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[411]: 0.014682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[412]: 0.014698075 - core[1].svIdle(17), plen 0: [] -EVENT[413]: 0.014813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[414]: 0.014828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[415]: 0.014843775 - core[0].svIdle(17), plen 0: [] -EVENT[416]: 0.015669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[417]: 0.015682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[418]: 0.015698325 - core[1].svIdle(17), plen 0: [] -EVENT[419]: 0.015813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[420]: 0.015828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[421]: 0.015843775 - core[0].svIdle(17), plen 0: [] -EVENT[422]: 0.016669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[423]: 0.016682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[424]: 0.016698100 - core[1].svIdle(17), plen 0: [] -EVENT[425]: 0.016813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[426]: 0.016828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[427]: 0.016843775 - core[0].svIdle(17), plen 0: [] -EVENT[428]: 0.017669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[429]: 0.017682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[430]: 0.017698075 - core[1].svIdle(17), plen 0: [] -EVENT[431]: 0.017813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[432]: 0.017828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[433]: 0.017843825 - core[0].svIdle(17), plen 0: [] -EVENT[434]: 0.018669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[435]: 0.018682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[436]: 0.018698075 - core[1].svIdle(17), plen 0: [] -EVENT[437]: 0.018813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[438]: 0.018828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[439]: 0.018843775 - core[0].svIdle(17), plen 0: [] -EVENT[440]: 0.019669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[441]: 0.019682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[442]: 0.019698325 - core[1].svIdle(17), plen 0: [] -EVENT[443]: 0.019813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[444]: 0.019828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[445]: 0.019843775 - core[0].svIdle(17), plen 0: [] -EVENT[446]: 0.020669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[447]: 0.020687200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[448]: 0.020702325 - core[1].svIdle(17), plen 0: [] -EVENT[449]: 0.020813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[450]: 0.020828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[451]: 0.020843775 - core[0].svIdle(17), plen 0: [] -EVENT[452]: 0.021669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[453]: 0.021682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[454]: 0.021698075 - core[1].svIdle(17), plen 0: [] -EVENT[455]: 0.021813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[456]: 0.021828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[457]: 0.021843825 - core[0].svIdle(17), plen 0: [] -EVENT[458]: 0.022669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[459]: 0.022682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[460]: 0.022698075 - core[1].svIdle(17), plen 0: [] -EVENT[461]: 0.022813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[462]: 0.022828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[463]: 0.022843775 - core[0].svIdle(17), plen 0: [] -EVENT[464]: 0.023669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[465]: 0.023682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[466]: 0.023698325 - core[1].svIdle(17), plen 0: [] -EVENT[467]: 0.023813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[468]: 0.023828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[469]: 0.023843775 - core[0].svIdle(17), plen 0: [] -EVENT[470]: 0.024669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[471]: 0.024682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[472]: 0.024698100 - core[1].svIdle(17), plen 0: [] -EVENT[473]: 0.024813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[474]: 0.024828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[475]: 0.024843775 - core[0].svIdle(17), plen 0: [] -EVENT[476]: 0.025669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[477]: 0.025682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[478]: 0.025698075 - core[1].svIdle(17), plen 0: [] -EVENT[479]: 0.025813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[480]: 0.025828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[481]: 0.025843825 - core[0].svIdle(17), plen 0: [] -EVENT[482]: 0.026669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[483]: 0.026682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[484]: 0.026698075 - core[1].svIdle(17), plen 0: [] -EVENT[485]: 0.026813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[486]: 0.026828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[487]: 0.026843775 - core[0].svIdle(17), plen 0: [] -EVENT[488]: 0.027669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[489]: 0.027682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[490]: 0.027698325 - core[1].svIdle(17), plen 0: [] -EVENT[491]: 0.027813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[492]: 0.027828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[493]: 0.027843775 - core[0].svIdle(17), plen 0: [] -EVENT[494]: 0.028669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[495]: 0.028682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[496]: 0.028698100 - core[1].svIdle(17), plen 0: [] -EVENT[497]: 0.028813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[498]: 0.028828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[499]: 0.028843775 - core[0].svIdle(17), plen 0: [] -EVENT[500]: 0.029669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[501]: 0.029682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[502]: 0.029698075 - core[1].svIdle(17), plen 0: [] -EVENT[503]: 0.029813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[504]: 0.029828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[505]: 0.029843825 - core[0].svIdle(17), plen 0: [] -EVENT[506]: 0.030669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[507]: 0.030682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[508]: 0.030698075 - core[1].svIdle(17), plen 0: [] -EVENT[509]: 0.030813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[510]: 0.030828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[511]: 0.030843775 - core[0].svIdle(17), plen 0: [] -EVENT[512]: 0.031669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[513]: 0.031682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[514]: 0.031698325 - core[1].svIdle(17), plen 0: [] -EVENT[515]: 0.031813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[516]: 0.031828325 - core[0].svTaskStartReady(6), plen 0: [tid: 12286700] -EVENT[517]: 0.031828325 - core[1].svTaskStartReady(6), plen 0: [tid: 12286700] -EVENT[518]: 0.031840900 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[519]: 0.031860400 - core[0].svTaskStartExec(4), plen 0: [tid: 12286700] -EVENT[520]: 0.031895800 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461032, size: 2, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.031895800] HEAP: Allocated 2 bytes @ 0x3ffbb728 from task "alloc0" on core 0 by: +EVENT[361]: 0.004893775 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[362]: 0.004905175 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[363]: 0.004921750 - core[1].svIdle(17), plen 0: [] +EVENT[364]: 0.005425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[365]: 0.005439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[366]: 0.005454975 - core[1].svIdle(17), plen 0: [] +EVENT[367]: 0.005546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[368]: 0.005562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[369]: 0.005577425 - core[0].svIdle(17), plen 0: [] +EVENT[370]: 0.006425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[371]: 0.006439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[372]: 0.006454550 - core[1].svIdle(17), plen 0: [] +EVENT[373]: 0.006546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[374]: 0.006562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[375]: 0.006577125 - core[0].svIdle(17), plen 0: [] +EVENT[376]: 0.007425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[377]: 0.007439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[378]: 0.007454675 - core[1].svIdle(17), plen 0: [] +EVENT[379]: 0.007546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[380]: 0.007562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[381]: 0.007577150 - core[0].svIdle(17), plen 0: [] +EVENT[382]: 0.008425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[383]: 0.008439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[384]: 0.008454600 - core[1].svIdle(17), plen 0: [] +EVENT[385]: 0.008546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[386]: 0.008562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[387]: 0.008577125 - core[0].svIdle(17), plen 0: [] +EVENT[388]: 0.009425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[389]: 0.009439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[390]: 0.009454550 - core[1].svIdle(17), plen 0: [] +EVENT[391]: 0.009546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[392]: 0.009562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[393]: 0.009577425 - core[0].svIdle(17), plen 0: [] +EVENT[394]: 0.010425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[395]: 0.010439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[396]: 0.010454550 - core[1].svIdle(17), plen 0: [] +EVENT[397]: 0.010546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[398]: 0.010562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[399]: 0.010577125 - core[0].svIdle(17), plen 0: [] +EVENT[400]: 0.011425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[401]: 0.011439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[402]: 0.011454675 - core[1].svIdle(17), plen 0: [] +EVENT[403]: 0.011546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[404]: 0.011562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[405]: 0.011577150 - core[0].svIdle(17), plen 0: [] +EVENT[406]: 0.012425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[407]: 0.012439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[408]: 0.012454675 - core[1].svIdle(17), plen 0: [] +EVENT[409]: 0.012546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[410]: 0.012562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[411]: 0.012577150 - core[0].svIdle(17), plen 0: [] +EVENT[412]: 0.013425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[413]: 0.013439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[414]: 0.013454600 - core[1].svIdle(17), plen 0: [] +EVENT[415]: 0.013546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[416]: 0.013562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[417]: 0.013577125 - core[0].svIdle(17), plen 0: [] +EVENT[418]: 0.014425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[419]: 0.014439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[420]: 0.014454550 - core[1].svIdle(17), plen 0: [] +EVENT[421]: 0.014546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[422]: 0.014562325 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[423]: 0.014577550 - core[0].svIdle(17), plen 0: [] +EVENT[424]: 0.015425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[425]: 0.015439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[426]: 0.015454550 - core[1].svIdle(17), plen 0: [] +EVENT[427]: 0.015546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[428]: 0.015562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[429]: 0.015577125 - core[0].svIdle(17), plen 0: [] +EVENT[430]: 0.016425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[431]: 0.016439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[432]: 0.016454675 - core[1].svIdle(17), plen 0: [] +EVENT[433]: 0.016546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[434]: 0.016562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[435]: 0.016577150 - core[0].svIdle(17), plen 0: [] +EVENT[436]: 0.017425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[437]: 0.017439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[438]: 0.017454600 - core[1].svIdle(17), plen 0: [] +EVENT[439]: 0.017546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[440]: 0.017562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[441]: 0.017577125 - core[0].svIdle(17), plen 0: [] +EVENT[442]: 0.018425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[443]: 0.018439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[444]: 0.018454550 - core[1].svIdle(17), plen 0: [] +EVENT[445]: 0.018546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[446]: 0.018562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[447]: 0.018577425 - core[0].svIdle(17), plen 0: [] +EVENT[448]: 0.019425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[449]: 0.019439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[450]: 0.019454550 - core[1].svIdle(17), plen 0: [] +EVENT[451]: 0.019546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[452]: 0.019562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[453]: 0.019577125 - core[0].svIdle(17), plen 0: [] +EVENT[454]: 0.020425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[455]: 0.020439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[456]: 0.020454675 - core[1].svIdle(17), plen 0: [] +EVENT[457]: 0.020546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[458]: 0.020562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[459]: 0.020577150 - core[0].svIdle(17), plen 0: [] +EVENT[460]: 0.021425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[461]: 0.021439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[462]: 0.021454600 - core[1].svIdle(17), plen 0: [] +EVENT[463]: 0.021546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[464]: 0.021562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[465]: 0.021577125 - core[0].svIdle(17), plen 0: [] +EVENT[466]: 0.022425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[467]: 0.022439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[468]: 0.022454550 - core[1].svIdle(17), plen 0: [] +EVENT[469]: 0.022546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[470]: 0.022562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[471]: 0.022577425 - core[0].svIdle(17), plen 0: [] +EVENT[472]: 0.023425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[473]: 0.023439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[474]: 0.023454550 - core[1].svIdle(17), plen 0: [] +EVENT[475]: 0.023546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[476]: 0.023562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[477]: 0.023577125 - core[0].svIdle(17), plen 0: [] +EVENT[478]: 0.024425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[479]: 0.024443675 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[480]: 0.024458825 - core[1].svIdle(17), plen 0: [] +EVENT[481]: 0.024546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[482]: 0.024562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[483]: 0.024577125 - core[0].svIdle(17), plen 0: [] +EVENT[484]: 0.025425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[485]: 0.025439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[486]: 0.025454550 - core[1].svIdle(17), plen 0: [] +EVENT[487]: 0.025546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[488]: 0.025562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[489]: 0.025577425 - core[0].svIdle(17), plen 0: [] +EVENT[490]: 0.026425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[491]: 0.026439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[492]: 0.026454550 - core[1].svIdle(17), plen 0: [] +EVENT[493]: 0.026546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[494]: 0.026562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[495]: 0.026577125 - core[0].svIdle(17), plen 0: [] +EVENT[496]: 0.027425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[497]: 0.027439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[498]: 0.027454675 - core[1].svIdle(17), plen 0: [] +EVENT[499]: 0.027546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[500]: 0.027562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[501]: 0.027577150 - core[0].svIdle(17), plen 0: [] +EVENT[502]: 0.028425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[503]: 0.028439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[504]: 0.028454600 - core[1].svIdle(17), plen 0: [] +EVENT[505]: 0.028546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[506]: 0.028562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[507]: 0.028577125 - core[0].svIdle(17), plen 0: [] +EVENT[508]: 0.029425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[509]: 0.029439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[510]: 0.029454550 - core[1].svIdle(17), plen 0: [] +EVENT[511]: 0.029546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[512]: 0.029562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[513]: 0.029577425 - core[0].svIdle(17), plen 0: [] +EVENT[514]: 0.030425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[515]: 0.030439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[516]: 0.030454550 - core[1].svIdle(17), plen 0: [] +EVENT[517]: 0.030546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[518]: 0.030562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[519]: 0.030577125 - core[0].svIdle(17), plen 0: [] +EVENT[520]: 0.031425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[521]: 0.031439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[522]: 0.031454675 - core[1].svIdle(17), plen 0: [] +EVENT[523]: 0.031546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[524]: 0.031562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[525]: 0.031577150 - core[0].svIdle(17), plen 0: [] +EVENT[526]: 0.032425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[527]: 0.032439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[528]: 0.032454600 - core[1].svIdle(17), plen 0: [] +EVENT[529]: 0.032546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[530]: 0.032561650 - core[0].svTaskStartReady(6), plen 0: [tid: 12284596] +EVENT[531]: 0.032561650 - core[1].svTaskStartReady(6), plen 0: [tid: 12284596] +EVENT[532]: 0.032574300 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[533]: 0.032589975 - core[0].svTaskStartExec(4), plen 0: [tid: 12284596] +EVENT[534]: 0.032626425 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073458928, size: 2, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.032626425] HEAP: Allocated 2 bytes @ 0x3ffbaef0 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[521]: 0.031930350 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461048, size: 4, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.031930350] HEAP: Allocated 4 bytes @ 0x3ffbb738 from task "alloc0" on core 0 by: +EVENT[535]: 0.032661850 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073458944, size: 4, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.032661850] HEAP: Allocated 4 bytes @ 0x3ffbaf00 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[522]: 0.031947275 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[523]: 0.031963225 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[524]: 0.032027500 - core[0].svPrint(26), plen 69: [msg: I (340) example: Task[0x3ffb7aec]: allocated 4 bytes @ 0x3ffbb738 +EVENT[536]: 0.032682300 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[537]: 0.032698225 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[538]: 0.032750775 - core[0].svPrint(26), plen 69: [msg: I (328) example: Task[0x3ffb72b4]: allocated 4 bytes @ 0x3ffbaf00 , lvl: 0, unused: 0] -[0.032027500] LOG: I (340) example: Task[0x3ffb7aec]: allocated 4 bytes @ 0x3ffbb738 -EVENT[525]: 0.032041200 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12287056, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[526]: 0.032054450 - core[0].svTaskStartReady(6), plen 0: [tid: 12289748] -EVENT[527]: 0.032054450 - core[1].svTaskStartReady(6), plen 0: [tid: 12289748] -EVENT[528]: 0.032070625 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[529]: 0.032081475 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[530]: 0.032092275 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[531]: 0.032106075 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[532]: 0.032116925 - core[1].svTaskStartExec(4), plen 0: [tid: 12289748] -EVENT[533]: 0.032127825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[534]: 0.032139925 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12287056, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[535]: 0.032150500 - core[0].svIdle(17), plen 0: [] -EVENT[536]: 0.032166625 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[537]: 0.032182825 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[538]: 0.032246375 - core[1].svPrint(26), plen 63: [msg: I (340) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb738 +[0.032750775] LOG: I (328) example: Task[0x3ffb72b4]: allocated 4 bytes @ 0x3ffbaf00 +EVENT[539]: 0.032764225 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12284952, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[540]: 0.032777450 - core[0].svTaskStartReady(6), plen 0: [tid: 12287644] +EVENT[541]: 0.032777450 - core[1].svTaskStartReady(6), plen 0: [tid: 12287644] +EVENT[542]: 0.032793700 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[543]: 0.032804650 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[544]: 0.032815400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[545]: 0.032829150 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[546]: 0.032839875 - core[1].svTaskStartExec(4), plen 0: [tid: 12287644] +EVENT[547]: 0.032850675 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[548]: 0.032862750 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12284952, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[549]: 0.032873950 - core[0].svIdle(17), plen 0: [] +EVENT[550]: 0.032891200 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[551]: 0.032907525 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[552]: 0.032955300 - core[1].svPrint(26), plen 63: [msg: I (328) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbaf00 , lvl: 0, unused: 0] -[0.032246375] LOG: I (340) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb738 -EVENT[539]: 0.032267375 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461048, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.032267375] HEAP: Freed bytes @ 0x3ffbb738 from task "free0" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +[0.032955300] LOG: I (328) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbaf00 +EVENT[553]: 0.032980775 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073458944, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.032980775] HEAP: Freed bytes @ 0x3ffbaf00 from task "free0" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[540]: 0.032294250 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[541]: 0.032305725 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[542]: 0.032322425 - core[1].svIdle(17), plen 0: [] -EVENT[543]: 0.032669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[544]: 0.032682850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[545]: 0.032698425 - core[1].svIdle(17), plen 0: [] -EVENT[546]: 0.032813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[547]: 0.032828225 - core[0].svTaskStartReady(6), plen 0: [tid: 12292716] -EVENT[548]: 0.032828225 - core[1].svTaskStartReady(6), plen 0: [tid: 12292716] -EVENT[549]: 0.032840850 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[550]: 0.032856525 - core[0].svTaskStartExec(4), plen 0: [tid: 12292716] -EVENT[551]: 0.032891700 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461048, size: 4, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.032891700] HEAP: Allocated 4 bytes @ 0x3ffbb738 from task "alloc1" on core 0 by: +EVENT[554]: 0.033008200 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[555]: 0.033019600 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[556]: 0.033036175 - core[1].svIdle(17), plen 0: [] +EVENT[557]: 0.033425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[558]: 0.033439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[559]: 0.033455150 - core[1].svIdle(17), plen 0: [] +EVENT[560]: 0.033546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[561]: 0.033561650 - core[0].svTaskStartReady(6), plen 0: [tid: 12290612] +EVENT[562]: 0.033561650 - core[1].svTaskStartReady(6), plen 0: [tid: 12290612] +EVENT[563]: 0.033573550 - core[0].svTaskStartReady(6), plen 0: [tid: 12296612] +EVENT[564]: 0.033573550 - core[1].svTaskStartReady(6), plen 0: [tid: 12296612] +EVENT[565]: 0.033586100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[566]: 0.033601775 - core[0].svTaskStartExec(4), plen 0: [tid: 12290612] +EVENT[567]: 0.033638000 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073458944, size: 4, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.033638000] HEAP: Allocated 4 bytes @ 0x3ffbaf00 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[552]: 0.032926225 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461064, size: 8, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.032926225] HEAP: Allocated 8 bytes @ 0x3ffbb748 from task "alloc1" on core 0 by: +EVENT[568]: 0.033673475 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073458960, size: 8, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.033673475] HEAP: Allocated 8 bytes @ 0x3ffbaf10 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[553]: 0.032943250 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[554]: 0.032963425 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[555]: 0.033027675 - core[0].svPrint(26), plen 69: [msg: I (341) example: Task[0x3ffb926c]: allocated 8 bytes @ 0x3ffbb748 +EVENT[569]: 0.033690400 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[570]: 0.033706325 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[571]: 0.033758875 - core[0].svPrint(26), plen 69: [msg: I (329) example: Task[0x3ffb8a34]: allocated 8 bytes @ 0x3ffbaf10 , lvl: 0, unused: 0] -[0.033027675] LOG: I (341) example: Task[0x3ffb926c]: allocated 8 bytes @ 0x3ffbb748 -EVENT[556]: 0.033041400 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12293072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[557]: 0.033054625 - core[0].svTaskStartReady(6), plen 0: [tid: 12295764] -EVENT[558]: 0.033054625 - core[1].svTaskStartReady(6), plen 0: [tid: 12295764] -EVENT[559]: 0.033070875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[560]: 0.033081725 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[561]: 0.033092475 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[562]: 0.033106200 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[563]: 0.033116975 - core[1].svTaskStartExec(4), plen 0: [tid: 12295764] -EVENT[564]: 0.033127725 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[565]: 0.033139725 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12293072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[566]: 0.033151025 - core[0].svIdle(17), plen 0: [] -EVENT[567]: 0.033162675 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[568]: 0.033179000 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[569]: 0.033242525 - core[1].svPrint(26), plen 63: [msg: I (341) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb748 -, lvl: 0, unused: 0] -[0.033242525] LOG: I (341) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb748 -EVENT[570]: 0.033267050 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461064, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.033267050] HEAP: Freed bytes @ 0x3ffbb748 from task "free1" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 -/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 -/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 - -EVENT[571]: 0.033294050 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[572]: 0.033305475 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[573]: 0.033322050 - core[1].svIdle(17), plen 0: [] -EVENT[574]: 0.033669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[575]: 0.033682950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[576]: 0.033698525 - core[1].svIdle(17), plen 0: [] -EVENT[577]: 0.033813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[578]: 0.033828325 - core[0].svTaskStartReady(6), plen 0: [tid: 12298716] -EVENT[579]: 0.033828325 - core[1].svTaskStartReady(6), plen 0: [tid: 12298716] -EVENT[580]: 0.033840975 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[581]: 0.033856650 - core[0].svTaskStartExec(4), plen 0: [tid: 12298716] -EVENT[582]: 0.033892175 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461064, size: 6, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.033892175] HEAP: Allocated 6 bytes @ 0x3ffbb748 from task "alloc2" on core 0 by: +[0.033758875] LOG: I (329) example: Task[0x3ffb8a34]: allocated 8 bytes @ 0x3ffbaf10 +EVENT[572]: 0.033776525 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12290968, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[573]: 0.033789675 - core[0].svTaskStartReady(6), plen 0: [tid: 12293660] +EVENT[574]: 0.033789675 - core[1].svTaskStartReady(6), plen 0: [tid: 12293660] +EVENT[575]: 0.033806000 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[576]: 0.033816850 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[577]: 0.033827650 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[578]: 0.033841700 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[579]: 0.033853500 - core[1].svTaskStartExec(4), plen 0: [tid: 12293660] +EVENT[580]: 0.033864750 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[581]: 0.033876675 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12290968, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[582]: 0.033888475 - core[0].svTaskStartExec(4), plen 0: [tid: 12296612] +EVENT[583]: 0.033901250 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[584]: 0.033919975 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[585]: 0.033931975 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073458976, size: 6, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.033931975] HEAP: Allocated 6 bytes @ 0x3ffbaf20 from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[583]: 0.033926575 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461080, size: 12, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.033926575] HEAP: Allocated 12 bytes @ 0x3ffbb758 from task "alloc2" on core 0 by: +EVENT[586]: 0.033973050 - core[1].svPrint(26), plen 63: [msg: I (329) example: Task[0x3ffb961c]: free memory @ 0x3ffbaf10 +, lvl: 0, unused: 0] +[0.033973050] LOG: I (329) example: Task[0x3ffb961c]: free memory @ 0x3ffbaf10 +EVENT[587]: 0.033988900 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073458992, size: 12, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.033988900] HEAP: Allocated 12 bytes @ 0x3ffbaf30 from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[584]: 0.033943475 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[585]: 0.033959450 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[586]: 0.034029800 - core[0].svPrint(26), plen 70: [msg: I (342) example: Task[0x3ffba9dc]: allocated 12 bytes @ 0x3ffbb758 -, lvl: 0, unused: 0] -[0.034029800] LOG: I (342) example: Task[0x3ffba9dc]: allocated 12 bytes @ 0x3ffbb758 -EVENT[587]: 0.034047625 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12299072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[588]: 0.034060850 - core[0].svTaskStartReady(6), plen 0: [tid: 12301764] -EVENT[589]: 0.034060850 - core[1].svTaskStartReady(6), plen 0: [tid: 12301764] -EVENT[590]: 0.034077150 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[591]: 0.034088000 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[592]: 0.034098775 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[593]: 0.034112500 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[594]: 0.034123375 - core[1].svTaskStartExec(4), plen 0: [tid: 12301764] -EVENT[595]: 0.034134200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[596]: 0.034146200 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12299072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[597]: 0.034156450 - core[0].svIdle(17), plen 0: [] -EVENT[598]: 0.034167850 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[599]: 0.034184225 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[600]: 0.034247900 - core[1].svPrint(26), plen 63: [msg: I (342) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb758 -, lvl: 0, unused: 0] -[0.034247900] LOG: I (342) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb758 -EVENT[601]: 0.034269100 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461080, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.034269100] HEAP: Freed bytes @ 0x3ffbb758 from task "free2" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +EVENT[588]: 0.034003200 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073458960, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.034003200] HEAP: Freed bytes @ 0x3ffbaf10 from task "free1" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[602]: 0.034300025 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[603]: 0.034311500 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[604]: 0.034328200 - core[1].svIdle(17), plen 0: [] -EVENT[605]: 0.034669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[606]: 0.034682850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[607]: 0.034698425 - core[1].svIdle(17), plen 0: [] -EVENT[608]: 0.034813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[609]: 0.034828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[610]: 0.034843825 - core[0].svIdle(17), plen 0: [] -EVENT[611]: 0.035669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[612]: 0.035682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[613]: 0.035698075 - core[1].svIdle(17), plen 0: [] -EVENT[614]: 0.035813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[615]: 0.035828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[616]: 0.035843775 - core[0].svIdle(17), plen 0: [] -EVENT[617]: 0.036669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[618]: 0.036682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[619]: 0.036698325 - core[1].svIdle(17), plen 0: [] -EVENT[620]: 0.036813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[621]: 0.036828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[622]: 0.036843775 - core[0].svIdle(17), plen 0: [] -EVENT[623]: 0.037669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[624]: 0.037682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[625]: 0.037698100 - core[1].svIdle(17), plen 0: [] -EVENT[626]: 0.037813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[627]: 0.037828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[628]: 0.037843775 - core[0].svIdle(17), plen 0: [] -EVENT[629]: 0.038669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[630]: 0.038682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[631]: 0.038698075 - core[1].svIdle(17), plen 0: [] -EVENT[632]: 0.038813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[633]: 0.038828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[634]: 0.038843825 - core[0].svIdle(17), plen 0: [] -EVENT[635]: 0.039669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[636]: 0.039682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[637]: 0.039698075 - core[1].svIdle(17), plen 0: [] -EVENT[638]: 0.039813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[639]: 0.039828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[640]: 0.039843775 - core[0].svIdle(17), plen 0: [] -EVENT[641]: 0.040669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[642]: 0.040682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[643]: 0.040698325 - core[1].svIdle(17), plen 0: [] -EVENT[644]: 0.040813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[645]: 0.040828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[646]: 0.040843775 - core[0].svIdle(17), plen 0: [] -EVENT[647]: 0.041669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[648]: 0.041682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[649]: 0.041698100 - core[1].svIdle(17), plen 0: [] -EVENT[650]: 0.041813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[651]: 0.041828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[652]: 0.041843775 - core[0].svIdle(17), plen 0: [] -EVENT[653]: 0.042669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[654]: 0.042682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[655]: 0.042698075 - core[1].svIdle(17), plen 0: [] -EVENT[656]: 0.042813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[657]: 0.042828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[658]: 0.042843825 - core[0].svIdle(17), plen 0: [] -EVENT[659]: 0.043669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[660]: 0.043682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[661]: 0.043698075 - core[1].svIdle(17), plen 0: [] -EVENT[662]: 0.043813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[663]: 0.043828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[664]: 0.043843775 - core[0].svIdle(17), plen 0: [] -EVENT[665]: 0.044669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[666]: 0.044687175 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[667]: 0.044702300 - core[1].svIdle(17), plen 0: [] -EVENT[668]: 0.044813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[669]: 0.044828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[670]: 0.044843775 - core[0].svIdle(17), plen 0: [] -EVENT[671]: 0.045669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[672]: 0.045682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[673]: 0.045698075 - core[1].svIdle(17), plen 0: [] -EVENT[674]: 0.045813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[675]: 0.045828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[676]: 0.045843825 - core[0].svIdle(17), plen 0: [] -EVENT[677]: 0.046669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[678]: 0.046682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[679]: 0.046698075 - core[1].svIdle(17), plen 0: [] -EVENT[680]: 0.046813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[681]: 0.046828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[682]: 0.046843775 - core[0].svIdle(17), plen 0: [] -EVENT[683]: 0.047669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[684]: 0.047682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[685]: 0.047698325 - core[1].svIdle(17), plen 0: [] -EVENT[686]: 0.047813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[687]: 0.047828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[688]: 0.047843775 - core[0].svIdle(17), plen 0: [] -EVENT[689]: 0.048669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[690]: 0.048682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[691]: 0.048698100 - core[1].svIdle(17), plen 0: [] -EVENT[692]: 0.048813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[693]: 0.048828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[694]: 0.048843775 - core[0].svIdle(17), plen 0: [] -EVENT[695]: 0.049669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[696]: 0.049682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[697]: 0.049698075 - core[1].svIdle(17), plen 0: [] -EVENT[698]: 0.049813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[699]: 0.049828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[700]: 0.049843825 - core[0].svIdle(17), plen 0: [] -EVENT[701]: 0.050669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[702]: 0.050682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[703]: 0.050698075 - core[1].svIdle(17), plen 0: [] -EVENT[704]: 0.050813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[705]: 0.050828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[706]: 0.050843775 - core[0].svIdle(17), plen 0: [] -EVENT[707]: 0.051669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[708]: 0.051682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[709]: 0.051698325 - core[1].svIdle(17), plen 0: [] -EVENT[710]: 0.051813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[711]: 0.051828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[712]: 0.051843775 - core[0].svIdle(17), plen 0: [] -EVENT[713]: 0.052669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[714]: 0.052682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[715]: 0.052698100 - core[1].svIdle(17), plen 0: [] -EVENT[716]: 0.052813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[717]: 0.052828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[718]: 0.052843775 - core[0].svIdle(17), plen 0: [] -EVENT[719]: 0.053669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[720]: 0.053682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[721]: 0.053698075 - core[1].svIdle(17), plen 0: [] -EVENT[722]: 0.053813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[723]: 0.053828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[724]: 0.053843825 - core[0].svIdle(17), plen 0: [] -EVENT[725]: 0.054669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[726]: 0.054682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[727]: 0.054698075 - core[1].svIdle(17), plen 0: [] -EVENT[728]: 0.054813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[729]: 0.054828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[730]: 0.054843775 - core[0].svIdle(17), plen 0: [] -EVENT[731]: 0.055669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[732]: 0.055682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[733]: 0.055698325 - core[1].svIdle(17), plen 0: [] -EVENT[734]: 0.055813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[735]: 0.055828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[736]: 0.055843775 - core[0].svIdle(17), plen 0: [] -EVENT[737]: 0.056669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[738]: 0.056687200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[739]: 0.056702350 - core[1].svIdle(17), plen 0: [] -EVENT[740]: 0.056813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[741]: 0.056828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[742]: 0.056843775 - core[0].svIdle(17), plen 0: [] -EVENT[743]: 0.057669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[744]: 0.057682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[745]: 0.057698075 - core[1].svIdle(17), plen 0: [] -EVENT[746]: 0.057813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[747]: 0.057828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[748]: 0.057843825 - core[0].svIdle(17), plen 0: [] -EVENT[749]: 0.058669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[750]: 0.058682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[751]: 0.058698075 - core[1].svIdle(17), plen 0: [] -EVENT[752]: 0.058813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[753]: 0.058828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[754]: 0.058843775 - core[0].svIdle(17), plen 0: [] -EVENT[755]: 0.059669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[756]: 0.059682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[757]: 0.059698325 - core[1].svIdle(17), plen 0: [] -EVENT[758]: 0.059813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[759]: 0.059828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[760]: 0.059843775 - core[0].svIdle(17), plen 0: [] -EVENT[761]: 0.060669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[762]: 0.060682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[763]: 0.060698100 - core[1].svIdle(17), plen 0: [] -EVENT[764]: 0.060813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[765]: 0.060828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[766]: 0.060843775 - core[0].svIdle(17), plen 0: [] -EVENT[767]: 0.061669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[768]: 0.061682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[769]: 0.061698075 - core[1].svIdle(17), plen 0: [] -EVENT[770]: 0.061813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[771]: 0.061828225 - core[0].svTaskStartReady(6), plen 0: [tid: 12286700] -EVENT[772]: 0.061828225 - core[1].svTaskStartReady(6), plen 0: [tid: 12286700] -EVENT[773]: 0.061840850 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[774]: 0.061856525 - core[0].svTaskStartExec(4), plen 0: [tid: 12286700] -EVENT[775]: 0.061891850 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461080, size: 3, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.061891850] HEAP: Allocated 3 bytes @ 0x3ffbb758 from task "alloc0" on core 0 by: +EVENT[589]: 0.034015625 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[590]: 0.034035675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[591]: 0.034046600 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[592]: 0.034058125 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[593]: 0.034076100 - core[1].svIdle(17), plen 0: [] +EVENT[594]: 0.034094100 - core[0].svPrint(26), plen 70: [msg: I (329) example: Task[0x3ffba1a4]: allocated 12 bytes @ 0x3ffbaf30 +, lvl: 0, unused: 0] +[0.034094100] LOG: I (329) example: Task[0x3ffba1a4]: allocated 12 bytes @ 0x3ffbaf30 +EVENT[595]: 0.034107525 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12296968, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[596]: 0.034124925 - core[0].svTaskStartReady(6), plen 0: [tid: 12299660] +EVENT[597]: 0.034124925 - core[1].svTaskStartReady(6), plen 0: [tid: 12299660] +EVENT[598]: 0.034141275 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[599]: 0.034152125 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[600]: 0.034162950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[601]: 0.034176750 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[602]: 0.034187500 - core[1].svTaskStartExec(4), plen 0: [tid: 12299660] +EVENT[603]: 0.034198300 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[604]: 0.034210250 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12296968, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[605]: 0.034221475 - core[0].svIdle(17), plen 0: [] +EVENT[606]: 0.034233300 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[607]: 0.034249550 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[608]: 0.034297325 - core[1].svPrint(26), plen 63: [msg: I (329) example: Task[0x3ffbad8c]: free memory @ 0x3ffbaf30 +, lvl: 0, unused: 0] +[0.034297325] LOG: I (329) example: Task[0x3ffbad8c]: free memory @ 0x3ffbaf30 +EVENT[609]: 0.034318700 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073458992, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.034318700] HEAP: Freed bytes @ 0x3ffbaf30 from task "free2" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[610]: 0.034346125 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[611]: 0.034357525 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[612]: 0.034374100 - core[1].svIdle(17), plen 0: [] +EVENT[613]: 0.034425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[614]: 0.034439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[615]: 0.034455150 - core[1].svIdle(17), plen 0: [] +EVENT[616]: 0.034546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[617]: 0.034562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[618]: 0.034577125 - core[0].svIdle(17), plen 0: [] +EVENT[619]: 0.035425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[620]: 0.035439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[621]: 0.035454550 - core[1].svIdle(17), plen 0: [] +EVENT[622]: 0.035546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[623]: 0.035562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[624]: 0.035577425 - core[0].svIdle(17), plen 0: [] +EVENT[625]: 0.036425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[626]: 0.036439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[627]: 0.036454550 - core[1].svIdle(17), plen 0: [] +EVENT[628]: 0.036546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[629]: 0.036566350 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[630]: 0.036581550 - core[0].svIdle(17), plen 0: [] +EVENT[631]: 0.037425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[632]: 0.037439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[633]: 0.037454550 - core[1].svIdle(17), plen 0: [] +EVENT[634]: 0.037546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[635]: 0.037562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[636]: 0.037577125 - core[0].svIdle(17), plen 0: [] +EVENT[637]: 0.038425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[638]: 0.038439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[639]: 0.038454675 - core[1].svIdle(17), plen 0: [] +EVENT[640]: 0.038546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[641]: 0.038562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[642]: 0.038577150 - core[0].svIdle(17), plen 0: [] +EVENT[643]: 0.039425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[644]: 0.039439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[645]: 0.039454600 - core[1].svIdle(17), plen 0: [] +EVENT[646]: 0.039546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[647]: 0.039562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[648]: 0.039577125 - core[0].svIdle(17), plen 0: [] +EVENT[649]: 0.040425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[650]: 0.040439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[651]: 0.040454550 - core[1].svIdle(17), plen 0: [] +EVENT[652]: 0.040546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[653]: 0.040562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[654]: 0.040577425 - core[0].svIdle(17), plen 0: [] +EVENT[655]: 0.041425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[656]: 0.041439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[657]: 0.041454550 - core[1].svIdle(17), plen 0: [] +EVENT[658]: 0.041546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[659]: 0.041562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[660]: 0.041577125 - core[0].svIdle(17), plen 0: [] +EVENT[661]: 0.042425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[662]: 0.042439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[663]: 0.042454675 - core[1].svIdle(17), plen 0: [] +EVENT[664]: 0.042546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[665]: 0.042562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[666]: 0.042577150 - core[0].svIdle(17), plen 0: [] +EVENT[667]: 0.043425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[668]: 0.043439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[669]: 0.043454600 - core[1].svIdle(17), plen 0: [] +EVENT[670]: 0.043546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[671]: 0.043562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[672]: 0.043577125 - core[0].svIdle(17), plen 0: [] +EVENT[673]: 0.044425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[674]: 0.044439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[675]: 0.044454550 - core[1].svIdle(17), plen 0: [] +EVENT[676]: 0.044546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[677]: 0.044562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[678]: 0.044577425 - core[0].svIdle(17), plen 0: [] +EVENT[679]: 0.045425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[680]: 0.045439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[681]: 0.045454550 - core[1].svIdle(17), plen 0: [] +EVENT[682]: 0.045546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[683]: 0.045562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[684]: 0.045577125 - core[0].svIdle(17), plen 0: [] +EVENT[685]: 0.046425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[686]: 0.046439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[687]: 0.046454675 - core[1].svIdle(17), plen 0: [] +EVENT[688]: 0.046546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[689]: 0.046562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[690]: 0.046577150 - core[0].svIdle(17), plen 0: [] +EVENT[691]: 0.047425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[692]: 0.047439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[693]: 0.047454600 - core[1].svIdle(17), plen 0: [] +EVENT[694]: 0.047546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[695]: 0.047562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[696]: 0.047577125 - core[0].svIdle(17), plen 0: [] +EVENT[697]: 0.048425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[698]: 0.048439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[699]: 0.048454550 - core[1].svIdle(17), plen 0: [] +EVENT[700]: 0.048546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[701]: 0.048566325 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[702]: 0.048581550 - core[0].svIdle(17), plen 0: [] +EVENT[703]: 0.049425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[704]: 0.049439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[705]: 0.049454550 - core[1].svIdle(17), plen 0: [] +EVENT[706]: 0.049546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[707]: 0.049562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[708]: 0.049577125 - core[0].svIdle(17), plen 0: [] +EVENT[709]: 0.050425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[710]: 0.050439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[711]: 0.050454675 - core[1].svIdle(17), plen 0: [] +EVENT[712]: 0.050546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[713]: 0.050562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[714]: 0.050577150 - core[0].svIdle(17), plen 0: [] +EVENT[715]: 0.051425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[716]: 0.051439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[717]: 0.051454600 - core[1].svIdle(17), plen 0: [] +EVENT[718]: 0.051546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[719]: 0.051562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[720]: 0.051577125 - core[0].svIdle(17), plen 0: [] +EVENT[721]: 0.052425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[722]: 0.052439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[723]: 0.052454550 - core[1].svIdle(17), plen 0: [] +EVENT[724]: 0.052546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[725]: 0.052562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[726]: 0.052577425 - core[0].svIdle(17), plen 0: [] +EVENT[727]: 0.053425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[728]: 0.053439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[729]: 0.053454550 - core[1].svIdle(17), plen 0: [] +EVENT[730]: 0.053546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[731]: 0.053562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[732]: 0.053577125 - core[0].svIdle(17), plen 0: [] +EVENT[733]: 0.054425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[734]: 0.054439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[735]: 0.054454675 - core[1].svIdle(17), plen 0: [] +EVENT[736]: 0.054546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[737]: 0.054562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[738]: 0.054577150 - core[0].svIdle(17), plen 0: [] +EVENT[739]: 0.055425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[740]: 0.055439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[741]: 0.055454600 - core[1].svIdle(17), plen 0: [] +EVENT[742]: 0.055546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[743]: 0.055562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[744]: 0.055577125 - core[0].svIdle(17), plen 0: [] +EVENT[745]: 0.056425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[746]: 0.056439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[747]: 0.056454550 - core[1].svIdle(17), plen 0: [] +EVENT[748]: 0.056546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[749]: 0.056562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[750]: 0.056577425 - core[0].svIdle(17), plen 0: [] +EVENT[751]: 0.057425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[752]: 0.057439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[753]: 0.057454550 - core[1].svIdle(17), plen 0: [] +EVENT[754]: 0.057546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[755]: 0.057562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[756]: 0.057577125 - core[0].svIdle(17), plen 0: [] +EVENT[757]: 0.058425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[758]: 0.058439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[759]: 0.058454675 - core[1].svIdle(17), plen 0: [] +EVENT[760]: 0.058546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[761]: 0.058562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[762]: 0.058577150 - core[0].svIdle(17), plen 0: [] +EVENT[763]: 0.059425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[764]: 0.059439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[765]: 0.059454600 - core[1].svIdle(17), plen 0: [] +EVENT[766]: 0.059546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[767]: 0.059562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[768]: 0.059577125 - core[0].svIdle(17), plen 0: [] +EVENT[769]: 0.060425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[770]: 0.060439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[771]: 0.060454550 - core[1].svIdle(17), plen 0: [] +EVENT[772]: 0.060546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[773]: 0.060566325 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[774]: 0.060581550 - core[0].svIdle(17), plen 0: [] +EVENT[775]: 0.061425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[776]: 0.061439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[777]: 0.061454550 - core[1].svIdle(17), plen 0: [] +EVENT[778]: 0.061546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[779]: 0.061562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[780]: 0.061577125 - core[0].svIdle(17), plen 0: [] +EVENT[781]: 0.062425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[782]: 0.062439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[783]: 0.062454675 - core[1].svIdle(17), plen 0: [] +EVENT[784]: 0.062546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[785]: 0.062561675 - core[0].svTaskStartReady(6), plen 0: [tid: 12284596] +EVENT[786]: 0.062561675 - core[1].svTaskStartReady(6), plen 0: [tid: 12284596] +EVENT[787]: 0.062574250 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[788]: 0.062589925 - core[0].svTaskStartExec(4), plen 0: [tid: 12284596] +EVENT[789]: 0.062624925 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073458960, size: 3, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.062624925] HEAP: Allocated 3 bytes @ 0x3ffbaf10 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[776]: 0.061926275 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461096, size: 6, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.061926275] HEAP: Allocated 6 bytes @ 0x3ffbb768 from task "alloc0" on core 0 by: +EVENT[790]: 0.062660425 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073458992, size: 6, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.062660425] HEAP: Allocated 6 bytes @ 0x3ffbaf30 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[777]: 0.061943300 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[778]: 0.061959425 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[779]: 0.062023675 - core[0].svPrint(26), plen 69: [msg: I (370) example: Task[0x3ffb7aec]: allocated 6 bytes @ 0x3ffbb768 +EVENT[791]: 0.062677350 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[792]: 0.062693275 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[793]: 0.062745825 - core[0].svPrint(26), plen 69: [msg: I (358) example: Task[0x3ffb72b4]: allocated 6 bytes @ 0x3ffbaf30 , lvl: 0, unused: 0] -[0.062023675] LOG: I (370) example: Task[0x3ffb7aec]: allocated 6 bytes @ 0x3ffbb768 -EVENT[780]: 0.062041475 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12287056, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[781]: 0.062054600 - core[0].svTaskStartReady(6), plen 0: [tid: 12289748] -EVENT[782]: 0.062054600 - core[1].svTaskStartReady(6), plen 0: [tid: 12289748] -EVENT[783]: 0.062070800 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[784]: 0.062081675 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[785]: 0.062092450 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[786]: 0.062106525 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[787]: 0.062117350 - core[1].svTaskStartExec(4), plen 0: [tid: 12289748] -EVENT[788]: 0.062128225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[789]: 0.062140100 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12287056, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[790]: 0.062150525 - core[0].svIdle(17), plen 0: [] -EVENT[791]: 0.062162975 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[792]: 0.062179175 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[793]: 0.062242725 - core[1].svPrint(26), plen 63: [msg: I (370) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb768 +[0.062745825] LOG: I (358) example: Task[0x3ffb72b4]: allocated 6 bytes @ 0x3ffbaf30 +EVENT[794]: 0.062759275 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12284952, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[795]: 0.062772500 - core[0].svTaskStartReady(6), plen 0: [tid: 12287644] +EVENT[796]: 0.062772500 - core[1].svTaskStartReady(6), plen 0: [tid: 12287644] +EVENT[797]: 0.062792925 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[798]: 0.062803875 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[799]: 0.062814650 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[800]: 0.062828550 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[801]: 0.062839350 - core[1].svTaskStartExec(4), plen 0: [tid: 12287644] +EVENT[802]: 0.062850075 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[803]: 0.062862300 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12284952, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[804]: 0.062872475 - core[0].svIdle(17), plen 0: [] +EVENT[805]: 0.062884375 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[806]: 0.062900650 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[807]: 0.062948525 - core[1].svPrint(26), plen 63: [msg: I (358) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbaf30 , lvl: 0, unused: 0] -[0.062242725] LOG: I (370) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb768 -EVENT[794]: 0.062263725 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461096, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.062263725] HEAP: Freed bytes @ 0x3ffbb768 from task "free0" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +[0.062948525] LOG: I (358) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbaf30 +EVENT[808]: 0.062969750 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073458992, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.062969750] HEAP: Freed bytes @ 0x3ffbaf30 from task "free0" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[795]: 0.062294025 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[796]: 0.062305500 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[797]: 0.062322200 - core[1].svIdle(17), plen 0: [] -EVENT[798]: 0.062669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[799]: 0.062682850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[800]: 0.062698425 - core[1].svIdle(17), plen 0: [] -EVENT[801]: 0.062813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[802]: 0.062828225 - core[0].svTaskStartReady(6), plen 0: [tid: 12292716] -EVENT[803]: 0.062828225 - core[1].svTaskStartReady(6), plen 0: [tid: 12292716] -EVENT[804]: 0.062840850 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[805]: 0.062856525 - core[0].svTaskStartExec(4), plen 0: [tid: 12292716] -EVENT[806]: 0.062891850 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461096, size: 6, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.062891850] HEAP: Allocated 6 bytes @ 0x3ffbb768 from task "alloc1" on core 0 by: +EVENT[809]: 0.062997025 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[810]: 0.063008475 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[811]: 0.063025175 - core[1].svIdle(17), plen 0: [] +EVENT[812]: 0.063425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[813]: 0.063439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[814]: 0.063455150 - core[1].svIdle(17), plen 0: [] +EVENT[815]: 0.063546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[816]: 0.063561700 - core[0].svTaskStartReady(6), plen 0: [tid: 12290612] +EVENT[817]: 0.063561700 - core[1].svTaskStartReady(6), plen 0: [tid: 12290612] +EVENT[818]: 0.063573550 - core[0].svTaskStartReady(6), plen 0: [tid: 12296612] +EVENT[819]: 0.063573550 - core[1].svTaskStartReady(6), plen 0: [tid: 12296612] +EVENT[820]: 0.063586050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[821]: 0.063601725 - core[0].svTaskStartExec(4), plen 0: [tid: 12290612] +EVENT[822]: 0.063638150 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073458992, size: 6, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.063638150] HEAP: Allocated 6 bytes @ 0x3ffbaf30 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[807]: 0.062926275 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461112, size: 12, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.062926275] HEAP: Allocated 12 bytes @ 0x3ffbb778 from task "alloc1" on core 0 by: +EVENT[823]: 0.063677800 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459008, size: 12, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.063677800] HEAP: Allocated 12 bytes @ 0x3ffbaf40 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[808]: 0.062943300 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[809]: 0.062959425 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[810]: 0.063025900 - core[0].svPrint(26), plen 70: [msg: I (371) example: Task[0x3ffb926c]: allocated 12 bytes @ 0x3ffbb778 +EVENT[824]: 0.063694725 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[825]: 0.063710750 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[826]: 0.063765475 - core[0].svPrint(26), plen 70: [msg: I (359) example: Task[0x3ffb8a34]: allocated 12 bytes @ 0x3ffbaf40 , lvl: 0, unused: 0] -[0.063025900] LOG: I (371) example: Task[0x3ffb926c]: allocated 12 bytes @ 0x3ffbb778 -EVENT[811]: 0.063039450 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12293072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[812]: 0.063056850 - core[0].svTaskStartReady(6), plen 0: [tid: 12295764] -EVENT[813]: 0.063056850 - core[1].svTaskStartReady(6), plen 0: [tid: 12295764] -EVENT[814]: 0.063073175 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[815]: 0.063084025 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[816]: 0.063094775 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[817]: 0.063108500 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[818]: 0.063119350 - core[1].svTaskStartExec(4), plen 0: [tid: 12295764] -EVENT[819]: 0.063130175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[820]: 0.063142025 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12293072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[821]: 0.063152300 - core[0].svIdle(17), plen 0: [] -EVENT[822]: 0.063163775 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[823]: 0.063180075 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[824]: 0.063243525 - core[1].svPrint(26), plen 63: [msg: I (371) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb778 -, lvl: 0, unused: 0] -[0.063243525] LOG: I (371) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb778 -EVENT[825]: 0.063264675 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461112, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.063264675] HEAP: Freed bytes @ 0x3ffbb778 from task "free1" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 -/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 -/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 - -EVENT[826]: 0.063291675 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[827]: 0.063303100 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[828]: 0.063319675 - core[1].svIdle(17), plen 0: [] -EVENT[829]: 0.063669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[830]: 0.063682950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[831]: 0.063698525 - core[1].svIdle(17), plen 0: [] -EVENT[832]: 0.063813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[833]: 0.063828325 - core[0].svTaskStartReady(6), plen 0: [tid: 12298716] -EVENT[834]: 0.063828325 - core[1].svTaskStartReady(6), plen 0: [tid: 12298716] -EVENT[835]: 0.063840975 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[836]: 0.063856650 - core[0].svTaskStartExec(4), plen 0: [tid: 12298716] -EVENT[837]: 0.063892175 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461112, size: 9, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.063892175] HEAP: Allocated 9 bytes @ 0x3ffbb778 from task "alloc2" on core 0 by: +[0.063765475] LOG: I (359) example: Task[0x3ffb8a34]: allocated 12 bytes @ 0x3ffbaf40 +EVENT[827]: 0.063778900 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12290968, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[828]: 0.063792150 - core[0].svTaskStartReady(6), plen 0: [tid: 12293660] +EVENT[829]: 0.063792150 - core[1].svTaskStartReady(6), plen 0: [tid: 12293660] +EVENT[830]: 0.063808625 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[831]: 0.063819475 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[832]: 0.063830300 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[833]: 0.063844100 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[834]: 0.063855800 - core[1].svTaskStartExec(4), plen 0: [tid: 12293660] +EVENT[835]: 0.063867475 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[836]: 0.063880350 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12290968, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[837]: 0.063892150 - core[0].svTaskStartExec(4), plen 0: [tid: 12296612] +EVENT[838]: 0.063904750 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[839]: 0.063926350 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[840]: 0.063937800 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459024, size: 9, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.063937800] HEAP: Allocated 9 bytes @ 0x3ffbaf50 from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[838]: 0.063930700 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461128, size: 18, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.063930700] HEAP: Allocated 18 bytes @ 0x3ffbb788 from task "alloc2" on core 0 by: +EVENT[841]: 0.063979200 - core[1].svPrint(26), plen 63: [msg: I (359) example: Task[0x3ffb961c]: free memory @ 0x3ffbaf40 +, lvl: 0, unused: 0] +[0.063979200] LOG: I (359) example: Task[0x3ffb961c]: free memory @ 0x3ffbaf40 +EVENT[842]: 0.063991300 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459040, size: 18, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.063991300] HEAP: Allocated 18 bytes @ 0x3ffbaf60 from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[839]: 0.063947725 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[840]: 0.063963700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[841]: 0.064034050 - core[0].svPrint(26), plen 70: [msg: I (372) example: Task[0x3ffba9dc]: allocated 18 bytes @ 0x3ffbb788 -, lvl: 0, unused: 0] -[0.064034050] LOG: I (372) example: Task[0x3ffba9dc]: allocated 18 bytes @ 0x3ffbb788 -EVENT[842]: 0.064047650 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12299072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[843]: 0.064060875 - core[0].svTaskStartReady(6), plen 0: [tid: 12301764] -EVENT[844]: 0.064060875 - core[1].svTaskStartReady(6), plen 0: [tid: 12301764] -EVENT[845]: 0.064077175 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[846]: 0.064088025 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[847]: 0.064098800 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[848]: 0.064112775 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[849]: 0.064123600 - core[1].svTaskStartExec(4), plen 0: [tid: 12301764] -EVENT[850]: 0.064134475 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[851]: 0.064146325 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12299072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[852]: 0.064157625 - core[0].svIdle(17), plen 0: [] -EVENT[853]: 0.064169250 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[854]: 0.064189700 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[855]: 0.064253250 - core[1].svPrint(26), plen 63: [msg: I (372) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb788 -, lvl: 0, unused: 0] -[0.064253250] LOG: I (372) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb788 -EVENT[856]: 0.064274450 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461128, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.064274450] HEAP: Freed bytes @ 0x3ffbb788 from task "free2" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +EVENT[843]: 0.064005175 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073459008, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.064005175] HEAP: Freed bytes @ 0x3ffbaf40 from task "free1" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[857]: 0.064301350 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[858]: 0.064312775 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[859]: 0.064329350 - core[1].svIdle(17), plen 0: [] -EVENT[860]: 0.064669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[861]: 0.064682950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[862]: 0.064698525 - core[1].svIdle(17), plen 0: [] -EVENT[863]: 0.064813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[864]: 0.064828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[865]: 0.064843775 - core[0].svIdle(17), plen 0: [] -EVENT[866]: 0.065669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[867]: 0.065682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[868]: 0.065698325 - core[1].svIdle(17), plen 0: [] -EVENT[869]: 0.065813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[870]: 0.065828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[871]: 0.065843775 - core[0].svIdle(17), plen 0: [] -EVENT[872]: 0.066669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[873]: 0.066682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[874]: 0.066698100 - core[1].svIdle(17), plen 0: [] -EVENT[875]: 0.066813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[876]: 0.066828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[877]: 0.066843775 - core[0].svIdle(17), plen 0: [] -EVENT[878]: 0.067669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[879]: 0.067682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[880]: 0.067698075 - core[1].svIdle(17), plen 0: [] -EVENT[881]: 0.067813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[882]: 0.067828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[883]: 0.067843825 - core[0].svIdle(17), plen 0: [] -EVENT[884]: 0.068669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[885]: 0.068682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[886]: 0.068698075 - core[1].svIdle(17), plen 0: [] -EVENT[887]: 0.068813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[888]: 0.068828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[889]: 0.068843775 - core[0].svIdle(17), plen 0: [] -EVENT[890]: 0.069669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[891]: 0.069682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[892]: 0.069698325 - core[1].svIdle(17), plen 0: [] -EVENT[893]: 0.069813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[894]: 0.069828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[895]: 0.069848100 - core[0].svIdle(17), plen 0: [] -EVENT[896]: 0.070669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[897]: 0.070682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[898]: 0.070698075 - core[1].svIdle(17), plen 0: [] -EVENT[899]: 0.070813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[900]: 0.070828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[901]: 0.070843775 - core[0].svIdle(17), plen 0: [] -EVENT[902]: 0.071669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[903]: 0.071682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[904]: 0.071698325 - core[1].svIdle(17), plen 0: [] -EVENT[905]: 0.071813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[906]: 0.071828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[907]: 0.071843775 - core[0].svIdle(17), plen 0: [] -EVENT[908]: 0.072669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[909]: 0.072682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[910]: 0.072698100 - core[1].svIdle(17), plen 0: [] -EVENT[911]: 0.072813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[912]: 0.072828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[913]: 0.072843775 - core[0].svIdle(17), plen 0: [] -EVENT[914]: 0.073669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[915]: 0.073682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[916]: 0.073698075 - core[1].svIdle(17), plen 0: [] -EVENT[917]: 0.073813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[918]: 0.073828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[919]: 0.073843825 - core[0].svIdle(17), plen 0: [] -EVENT[920]: 0.074669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[921]: 0.074682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[922]: 0.074698075 - core[1].svIdle(17), plen 0: [] -EVENT[923]: 0.074813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[924]: 0.074828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[925]: 0.074843775 - core[0].svIdle(17), plen 0: [] -EVENT[926]: 0.075669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[927]: 0.075682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[928]: 0.075698325 - core[1].svIdle(17), plen 0: [] -EVENT[929]: 0.075813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[930]: 0.075828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[931]: 0.075843775 - core[0].svIdle(17), plen 0: [] -EVENT[932]: 0.076669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[933]: 0.076682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[934]: 0.076698100 - core[1].svIdle(17), plen 0: [] -EVENT[935]: 0.076813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[936]: 0.076828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[937]: 0.076843775 - core[0].svIdle(17), plen 0: [] -EVENT[938]: 0.077669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[939]: 0.077682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[940]: 0.077698075 - core[1].svIdle(17), plen 0: [] -EVENT[941]: 0.077813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[942]: 0.077828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[943]: 0.077843825 - core[0].svIdle(17), plen 0: [] -EVENT[944]: 0.078669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[945]: 0.078682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[946]: 0.078698075 - core[1].svIdle(17), plen 0: [] -EVENT[947]: 0.078813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[948]: 0.078828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[949]: 0.078843775 - core[0].svIdle(17), plen 0: [] -EVENT[950]: 0.079669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[951]: 0.079682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[952]: 0.079698325 - core[1].svIdle(17), plen 0: [] -EVENT[953]: 0.079813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[954]: 0.079828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[955]: 0.079843775 - core[0].svIdle(17), plen 0: [] -EVENT[956]: 0.080669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[957]: 0.080682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[958]: 0.080698100 - core[1].svIdle(17), plen 0: [] -EVENT[959]: 0.080813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[960]: 0.080828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[961]: 0.080843775 - core[0].svIdle(17), plen 0: [] -EVENT[962]: 0.081669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[963]: 0.081682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[964]: 0.081698075 - core[1].svIdle(17), plen 0: [] -EVENT[965]: 0.081813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[966]: 0.081828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[967]: 0.081843825 - core[0].svIdle(17), plen 0: [] -EVENT[968]: 0.082669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[969]: 0.082682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[970]: 0.082698325 - core[1].svIdle(17), plen 0: [] -EVENT[971]: 0.082813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[972]: 0.082828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[973]: 0.082843775 - core[0].svIdle(17), plen 0: [] -EVENT[974]: 0.083669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[975]: 0.083682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[976]: 0.083698100 - core[1].svIdle(17), plen 0: [] -EVENT[977]: 0.083813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[978]: 0.083828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[979]: 0.083843775 - core[0].svIdle(17), plen 0: [] -EVENT[980]: 0.084669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[981]: 0.084682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[982]: 0.084698075 - core[1].svIdle(17), plen 0: [] -EVENT[983]: 0.084813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[984]: 0.084828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[985]: 0.084843825 - core[0].svIdle(17), plen 0: [] -EVENT[986]: 0.085669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[987]: 0.085682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[988]: 0.085698075 - core[1].svIdle(17), plen 0: [] -EVENT[989]: 0.085813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[990]: 0.085828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[991]: 0.085843775 - core[0].svIdle(17), plen 0: [] -EVENT[992]: 0.086669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[993]: 0.086682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[994]: 0.086698325 - core[1].svIdle(17), plen 0: [] -EVENT[995]: 0.086813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[996]: 0.086828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[997]: 0.086843775 - core[0].svIdle(17), plen 0: [] -EVENT[998]: 0.087669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[999]: 0.087682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1000]: 0.087698100 - core[1].svIdle(17), plen 0: [] -EVENT[1001]: 0.087813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1002]: 0.087828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1003]: 0.087843775 - core[0].svIdle(17), plen 0: [] -EVENT[1004]: 0.088669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1005]: 0.088682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1006]: 0.088698075 - core[1].svIdle(17), plen 0: [] -EVENT[1007]: 0.088813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1008]: 0.088828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1009]: 0.088843825 - core[0].svIdle(17), plen 0: [] -EVENT[1010]: 0.089669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1011]: 0.089682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1012]: 0.089698075 - core[1].svIdle(17), plen 0: [] -EVENT[1013]: 0.089813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1014]: 0.089828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1015]: 0.089843775 - core[0].svIdle(17), plen 0: [] -EVENT[1016]: 0.090669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1017]: 0.090682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1018]: 0.090698325 - core[1].svIdle(17), plen 0: [] -EVENT[1019]: 0.090813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1020]: 0.090828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1021]: 0.090843775 - core[0].svIdle(17), plen 0: [] -EVENT[1022]: 0.091669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1023]: 0.091682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1024]: 0.091698100 - core[1].svIdle(17), plen 0: [] -EVENT[1025]: 0.091813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1026]: 0.091828325 - core[0].svTaskStartReady(6), plen 0: [tid: 12286700] -EVENT[1027]: 0.091828325 - core[1].svTaskStartReady(6), plen 0: [tid: 12286700] -EVENT[1028]: 0.091840975 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1029]: 0.091856650 - core[0].svTaskStartExec(4), plen 0: [tid: 12286700] -EVENT[1030]: 0.091892175 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461128, size: 4, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.091892175] HEAP: Allocated 4 bytes @ 0x3ffbb788 from task "alloc0" on core 0 by: +EVENT[844]: 0.064017600 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[845]: 0.064036500 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[846]: 0.064047725 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[847]: 0.064058500 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[848]: 0.064076650 - core[1].svIdle(17), plen 0: [] +EVENT[849]: 0.064104450 - core[0].svPrint(26), plen 70: [msg: I (359) example: Task[0x3ffba1a4]: allocated 18 bytes @ 0x3ffbaf60 +, lvl: 0, unused: 0] +[0.064104450] LOG: I (359) example: Task[0x3ffba1a4]: allocated 18 bytes @ 0x3ffbaf60 +EVENT[850]: 0.064122050 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12296968, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[851]: 0.064135300 - core[0].svTaskStartReady(6), plen 0: [tid: 12299660] +EVENT[852]: 0.064135300 - core[1].svTaskStartReady(6), plen 0: [tid: 12299660] +EVENT[853]: 0.064151650 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[854]: 0.064162500 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[855]: 0.064173325 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[856]: 0.064187250 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[857]: 0.064198150 - core[1].svTaskStartExec(4), plen 0: [tid: 12299660] +EVENT[858]: 0.064209025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[859]: 0.064220950 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12296968, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[860]: 0.064232175 - core[0].svIdle(17), plen 0: [] +EVENT[861]: 0.064244000 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[862]: 0.064260225 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[863]: 0.064308100 - core[1].svPrint(26), plen 63: [msg: I (359) example: Task[0x3ffbad8c]: free memory @ 0x3ffbaf60 +, lvl: 0, unused: 0] +[0.064308100] LOG: I (359) example: Task[0x3ffbad8c]: free memory @ 0x3ffbaf60 +EVENT[864]: 0.064329500 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073459040, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.064329500] HEAP: Freed bytes @ 0x3ffbaf60 from task "free2" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[865]: 0.064360850 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[866]: 0.064372300 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[867]: 0.064389000 - core[1].svIdle(17), plen 0: [] +EVENT[868]: 0.064425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[869]: 0.064439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[870]: 0.064455150 - core[1].svIdle(17), plen 0: [] +EVENT[871]: 0.064546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[872]: 0.064562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[873]: 0.064577425 - core[0].svIdle(17), plen 0: [] +EVENT[874]: 0.065425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[875]: 0.065439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[876]: 0.065454550 - core[1].svIdle(17), plen 0: [] +EVENT[877]: 0.065546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[878]: 0.065562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[879]: 0.065577125 - core[0].svIdle(17), plen 0: [] +EVENT[880]: 0.066425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[881]: 0.066439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[882]: 0.066454675 - core[1].svIdle(17), plen 0: [] +EVENT[883]: 0.066546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[884]: 0.066562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[885]: 0.066577150 - core[0].svIdle(17), plen 0: [] +EVENT[886]: 0.067425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[887]: 0.067439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[888]: 0.067454600 - core[1].svIdle(17), plen 0: [] +EVENT[889]: 0.067546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[890]: 0.067562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[891]: 0.067577125 - core[0].svIdle(17), plen 0: [] +EVENT[892]: 0.068425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[893]: 0.068439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[894]: 0.068454550 - core[1].svIdle(17), plen 0: [] +EVENT[895]: 0.068546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[896]: 0.068562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[897]: 0.068577425 - core[0].svIdle(17), plen 0: [] +EVENT[898]: 0.069425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[899]: 0.069439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[900]: 0.069454550 - core[1].svIdle(17), plen 0: [] +EVENT[901]: 0.069546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[902]: 0.069562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[903]: 0.069577125 - core[0].svIdle(17), plen 0: [] +EVENT[904]: 0.070425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[905]: 0.070439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[906]: 0.070454675 - core[1].svIdle(17), plen 0: [] +EVENT[907]: 0.070546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[908]: 0.070562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[909]: 0.070577150 - core[0].svIdle(17), plen 0: [] +EVENT[910]: 0.071425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[911]: 0.071439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[912]: 0.071454600 - core[1].svIdle(17), plen 0: [] +EVENT[913]: 0.071546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[914]: 0.071562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[915]: 0.071577125 - core[0].svIdle(17), plen 0: [] +EVENT[916]: 0.072425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[917]: 0.072439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[918]: 0.072454550 - core[1].svIdle(17), plen 0: [] +EVENT[919]: 0.072546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[920]: 0.072562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[921]: 0.072577425 - core[0].svIdle(17), plen 0: [] +EVENT[922]: 0.073425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[923]: 0.073439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[924]: 0.073454550 - core[1].svIdle(17), plen 0: [] +EVENT[925]: 0.073546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[926]: 0.073562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[927]: 0.073577125 - core[0].svIdle(17), plen 0: [] +EVENT[928]: 0.074425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[929]: 0.074443775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[930]: 0.074458900 - core[1].svIdle(17), plen 0: [] +EVENT[931]: 0.074546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[932]: 0.074562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[933]: 0.074577125 - core[0].svIdle(17), plen 0: [] +EVENT[934]: 0.075425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[935]: 0.075439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[936]: 0.075454550 - core[1].svIdle(17), plen 0: [] +EVENT[937]: 0.075546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[938]: 0.075562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[939]: 0.075577425 - core[0].svIdle(17), plen 0: [] +EVENT[940]: 0.076425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[941]: 0.076439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[942]: 0.076454550 - core[1].svIdle(17), plen 0: [] +EVENT[943]: 0.076546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[944]: 0.076562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[945]: 0.076577125 - core[0].svIdle(17), plen 0: [] +EVENT[946]: 0.077425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[947]: 0.077439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[948]: 0.077454675 - core[1].svIdle(17), plen 0: [] +EVENT[949]: 0.077546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[950]: 0.077562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[951]: 0.077577150 - core[0].svIdle(17), plen 0: [] +EVENT[952]: 0.078425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[953]: 0.078439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[954]: 0.078454600 - core[1].svIdle(17), plen 0: [] +EVENT[955]: 0.078546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[956]: 0.078562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[957]: 0.078577125 - core[0].svIdle(17), plen 0: [] +EVENT[958]: 0.079425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[959]: 0.079439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[960]: 0.079454550 - core[1].svIdle(17), plen 0: [] +EVENT[961]: 0.079546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[962]: 0.079562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[963]: 0.079577425 - core[0].svIdle(17), plen 0: [] +EVENT[964]: 0.080425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[965]: 0.080439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[966]: 0.080454550 - core[1].svIdle(17), plen 0: [] +EVENT[967]: 0.080546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[968]: 0.080562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[969]: 0.080577125 - core[0].svIdle(17), plen 0: [] +EVENT[970]: 0.081425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[971]: 0.081439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[972]: 0.081454675 - core[1].svIdle(17), plen 0: [] +EVENT[973]: 0.081546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[974]: 0.081562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[975]: 0.081577150 - core[0].svIdle(17), plen 0: [] +EVENT[976]: 0.082425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[977]: 0.082439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[978]: 0.082454600 - core[1].svIdle(17), plen 0: [] +EVENT[979]: 0.082546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[980]: 0.082562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[981]: 0.082577125 - core[0].svIdle(17), plen 0: [] +EVENT[982]: 0.083425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[983]: 0.083439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[984]: 0.083454550 - core[1].svIdle(17), plen 0: [] +EVENT[985]: 0.083546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[986]: 0.083562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[987]: 0.083577425 - core[0].svIdle(17), plen 0: [] +EVENT[988]: 0.084425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[989]: 0.084439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[990]: 0.084454550 - core[1].svIdle(17), plen 0: [] +EVENT[991]: 0.084546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[992]: 0.084562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[993]: 0.084577125 - core[0].svIdle(17), plen 0: [] +EVENT[994]: 0.085425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[995]: 0.085439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[996]: 0.085454675 - core[1].svIdle(17), plen 0: [] +EVENT[997]: 0.085546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[998]: 0.085562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[999]: 0.085577150 - core[0].svIdle(17), plen 0: [] +EVENT[1000]: 0.086425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1001]: 0.086443675 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1002]: 0.086458825 - core[1].svIdle(17), plen 0: [] +EVENT[1003]: 0.086546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1004]: 0.086562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1005]: 0.086577125 - core[0].svIdle(17), plen 0: [] +EVENT[1006]: 0.087425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1007]: 0.087439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1008]: 0.087454550 - core[1].svIdle(17), plen 0: [] +EVENT[1009]: 0.087546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1010]: 0.087562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1011]: 0.087577425 - core[0].svIdle(17), plen 0: [] +EVENT[1012]: 0.088425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1013]: 0.088439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1014]: 0.088454550 - core[1].svIdle(17), plen 0: [] +EVENT[1015]: 0.088546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1016]: 0.088562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1017]: 0.088577125 - core[0].svIdle(17), plen 0: [] +EVENT[1018]: 0.089425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1019]: 0.089439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1020]: 0.089454675 - core[1].svIdle(17), plen 0: [] +EVENT[1021]: 0.089546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1022]: 0.089562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1023]: 0.089577150 - core[0].svIdle(17), plen 0: [] +EVENT[1024]: 0.090425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1025]: 0.090439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1026]: 0.090454600 - core[1].svIdle(17), plen 0: [] +EVENT[1027]: 0.090546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1028]: 0.090562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1029]: 0.090577125 - core[0].svIdle(17), plen 0: [] +EVENT[1030]: 0.091425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1031]: 0.091439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1032]: 0.091454550 - core[1].svIdle(17), plen 0: [] +EVENT[1033]: 0.091546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1034]: 0.091562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1035]: 0.091577425 - core[0].svIdle(17), plen 0: [] +EVENT[1036]: 0.092425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1037]: 0.092439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1038]: 0.092454550 - core[1].svIdle(17), plen 0: [] +EVENT[1039]: 0.092546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1040]: 0.092561650 - core[0].svTaskStartReady(6), plen 0: [tid: 12284596] +EVENT[1041]: 0.092561650 - core[1].svTaskStartReady(6), plen 0: [tid: 12284596] +EVENT[1042]: 0.092574300 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1043]: 0.092590225 - core[0].svTaskStartExec(4), plen 0: [tid: 12284596] +EVENT[1044]: 0.092625300 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459008, size: 4, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.092625300] HEAP: Allocated 4 bytes @ 0x3ffbaf40 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1031]: 0.091930000 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461144, size: 8, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.091930000] HEAP: Allocated 8 bytes @ 0x3ffbb798 from task "alloc0" on core 0 by: +EVENT[1045]: 0.092660875 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459040, size: 8, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.092660875] HEAP: Allocated 8 bytes @ 0x3ffbaf60 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1032]: 0.091946900 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1033]: 0.091962875 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1034]: 0.092027050 - core[0].svPrint(26), plen 69: [msg: I (400) example: Task[0x3ffb7aec]: allocated 8 bytes @ 0x3ffbb798 +EVENT[1046]: 0.092677850 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1047]: 0.092693825 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1048]: 0.092750600 - core[0].svPrint(26), plen 69: [msg: I (388) example: Task[0x3ffb72b4]: allocated 8 bytes @ 0x3ffbaf60 , lvl: 0, unused: 0] -[0.092027050] LOG: I (400) example: Task[0x3ffb7aec]: allocated 8 bytes @ 0x3ffbb798 -EVENT[1035]: 0.092040625 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12287056, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1036]: 0.092053750 - core[0].svTaskStartReady(6), plen 0: [tid: 12289748] -EVENT[1037]: 0.092053750 - core[1].svTaskStartReady(6), plen 0: [tid: 12289748] -EVENT[1038]: 0.092069950 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1039]: 0.092080825 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[1040]: 0.092091600 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1041]: 0.092105500 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[1042]: 0.092116300 - core[1].svTaskStartExec(4), plen 0: [tid: 12289748] -EVENT[1043]: 0.092127150 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1044]: 0.092139050 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12287056, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[1045]: 0.092149275 - core[0].svIdle(17), plen 0: [] -EVENT[1046]: 0.092160725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1047]: 0.092181000 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1048]: 0.092244550 - core[1].svPrint(26), plen 63: [msg: I (400) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb798 +[0.092750600] LOG: I (388) example: Task[0x3ffb72b4]: allocated 8 bytes @ 0x3ffbaf60 +EVENT[1049]: 0.092764050 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12284952, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1050]: 0.092777275 - core[0].svTaskStartReady(6), plen 0: [tid: 12287644] +EVENT[1051]: 0.092777275 - core[1].svTaskStartReady(6), plen 0: [tid: 12287644] +EVENT[1052]: 0.092793525 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1053]: 0.092804475 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[1054]: 0.092815225 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1055]: 0.092828975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[1056]: 0.092839700 - core[1].svTaskStartExec(4), plen 0: [tid: 12287644] +EVENT[1057]: 0.092850500 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1058]: 0.092862500 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12284952, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[1059]: 0.092872725 - core[0].svIdle(17), plen 0: [] +EVENT[1060]: 0.092884475 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1061]: 0.092900750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1062]: 0.092948525 - core[1].svPrint(26), plen 63: [msg: I (388) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbaf60 , lvl: 0, unused: 0] -[0.092244550] LOG: I (400) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb798 -EVENT[1049]: 0.092265750 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461144, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.092265750] HEAP: Freed bytes @ 0x3ffbb798 from task "free0" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +[0.092948525] LOG: I (388) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbaf60 +EVENT[1063]: 0.092969900 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073459040, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.092969900] HEAP: Freed bytes @ 0x3ffbaf60 from task "free0" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1050]: 0.092292625 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1051]: 0.092304050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1052]: 0.092320625 - core[1].svIdle(17), plen 0: [] -EVENT[1053]: 0.092669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1054]: 0.092682950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1055]: 0.092698525 - core[1].svIdle(17), plen 0: [] -EVENT[1056]: 0.092813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1057]: 0.092828325 - core[0].svTaskStartReady(6), plen 0: [tid: 12292716] -EVENT[1058]: 0.092828325 - core[1].svTaskStartReady(6), plen 0: [tid: 12292716] -EVENT[1059]: 0.092840975 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1060]: 0.092856775 - core[0].svTaskStartExec(4), plen 0: [tid: 12292716] -EVENT[1061]: 0.092892175 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461144, size: 8, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.092892175] HEAP: Allocated 8 bytes @ 0x3ffbb798 from task "alloc1" on core 0 by: +EVENT[1064]: 0.093001350 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1065]: 0.093012800 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1066]: 0.093029500 - core[1].svIdle(17), plen 0: [] +EVENT[1067]: 0.093425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1068]: 0.093439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1069]: 0.093455150 - core[1].svIdle(17), plen 0: [] +EVENT[1070]: 0.093546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1071]: 0.093561700 - core[0].svTaskStartReady(6), plen 0: [tid: 12290612] +EVENT[1072]: 0.093561700 - core[1].svTaskStartReady(6), plen 0: [tid: 12290612] +EVENT[1073]: 0.093573550 - core[0].svTaskStartReady(6), plen 0: [tid: 12296612] +EVENT[1074]: 0.093573550 - core[1].svTaskStartReady(6), plen 0: [tid: 12296612] +EVENT[1075]: 0.093586050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1076]: 0.093601725 - core[0].svTaskStartExec(4), plen 0: [tid: 12290612] +EVENT[1077]: 0.093638150 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459040, size: 8, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.093638150] HEAP: Allocated 8 bytes @ 0x3ffbaf60 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1062]: 0.092926700 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461160, size: 16, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.092926700] HEAP: Allocated 16 bytes @ 0x3ffbb7a8 from task "alloc1" on core 0 by: +EVENT[1078]: 0.093673575 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459056, size: 16, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.093673575] HEAP: Allocated 16 bytes @ 0x3ffbaf70 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1063]: 0.092943650 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1064]: 0.092963825 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1065]: 0.093030300 - core[0].svPrint(26), plen 70: [msg: I (401) example: Task[0x3ffb926c]: allocated 16 bytes @ 0x3ffbb7a8 +EVENT[1079]: 0.093690525 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1080]: 0.093706525 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1081]: 0.093761375 - core[0].svPrint(26), plen 70: [msg: I (389) example: Task[0x3ffb8a34]: allocated 16 bytes @ 0x3ffbaf70 , lvl: 0, unused: 0] -[0.093030300] LOG: I (401) example: Task[0x3ffb926c]: allocated 16 bytes @ 0x3ffbb7a8 -EVENT[1066]: 0.093043950 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12293072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1067]: 0.093057125 - core[0].svTaskStartReady(6), plen 0: [tid: 12295764] -EVENT[1068]: 0.093057125 - core[1].svTaskStartReady(6), plen 0: [tid: 12295764] -EVENT[1069]: 0.093073450 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1070]: 0.093084300 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[1071]: 0.093095050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1072]: 0.093108775 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[1073]: 0.093119625 - core[1].svTaskStartExec(4), plen 0: [tid: 12295764] -EVENT[1074]: 0.093130450 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1075]: 0.093142300 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12293072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[1076]: 0.093152575 - core[0].svIdle(17), plen 0: [] -EVENT[1077]: 0.093164050 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1078]: 0.093180350 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1079]: 0.093243800 - core[1].svPrint(26), plen 63: [msg: I (401) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb7a8 -, lvl: 0, unused: 0] -[0.093243800] LOG: I (401) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb7a8 -EVENT[1080]: 0.093268825 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461160, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.093268825] HEAP: Freed bytes @ 0x3ffbb7a8 from task "free1" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 -/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 -/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 - -EVENT[1081]: 0.093295825 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1082]: 0.093307375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1083]: 0.093323950 - core[1].svIdle(17), plen 0: [] -EVENT[1084]: 0.093669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1085]: 0.093682950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1086]: 0.093698525 - core[1].svIdle(17), plen 0: [] -EVENT[1087]: 0.093813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1088]: 0.093828325 - core[0].svTaskStartReady(6), plen 0: [tid: 12298716] -EVENT[1089]: 0.093828325 - core[1].svTaskStartReady(6), plen 0: [tid: 12298716] -EVENT[1090]: 0.093840975 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1091]: 0.093856650 - core[0].svTaskStartExec(4), plen 0: [tid: 12298716] -EVENT[1092]: 0.093892000 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461160, size: 12, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.093892000] HEAP: Allocated 12 bytes @ 0x3ffbb7a8 from task "alloc2" on core 0 by: +[0.093761375] LOG: I (389) example: Task[0x3ffb8a34]: allocated 16 bytes @ 0x3ffbaf70 +EVENT[1082]: 0.093778675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12290968, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1083]: 0.093791925 - core[0].svTaskStartReady(6), plen 0: [tid: 12293660] +EVENT[1084]: 0.093791925 - core[1].svTaskStartReady(6), plen 0: [tid: 12293660] +EVENT[1085]: 0.093808275 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1086]: 0.093819125 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[1087]: 0.093829950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1088]: 0.093843750 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[1089]: 0.093855475 - core[1].svTaskStartExec(4), plen 0: [tid: 12293660] +EVENT[1090]: 0.093866850 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1091]: 0.093878850 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12290968, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[1092]: 0.093890525 - core[0].svTaskStartExec(4), plen 0: [tid: 12296612] +EVENT[1093]: 0.093903125 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1094]: 0.093921750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1095]: 0.093933750 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459076, size: 12, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.093933750] HEAP: Allocated 12 bytes @ 0x3ffbaf84 from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1093]: 0.093926400 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461176, size: 24, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.093926400] HEAP: Allocated 24 bytes @ 0x3ffbb7b8 from task "alloc2" on core 0 by: +EVENT[1096]: 0.093974800 - core[1].svPrint(26), plen 63: [msg: I (389) example: Task[0x3ffb961c]: free memory @ 0x3ffbaf70 +, lvl: 0, unused: 0] +[0.093974800] LOG: I (389) example: Task[0x3ffb961c]: free memory @ 0x3ffbaf70 +EVENT[1097]: 0.093990750 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459092, size: 24, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.093990750] HEAP: Allocated 24 bytes @ 0x3ffbaf94 from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1094]: 0.093943300 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1095]: 0.093959425 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1096]: 0.094029750 - core[0].svPrint(26), plen 70: [msg: I (402) example: Task[0x3ffba9dc]: allocated 24 bytes @ 0x3ffbb7b8 -, lvl: 0, unused: 0] -[0.094029750] LOG: I (402) example: Task[0x3ffba9dc]: allocated 24 bytes @ 0x3ffbb7b8 -EVENT[1097]: 0.094047575 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12299072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1098]: 0.094060800 - core[0].svTaskStartReady(6), plen 0: [tid: 12301764] -EVENT[1099]: 0.094060800 - core[1].svTaskStartReady(6), plen 0: [tid: 12301764] -EVENT[1100]: 0.094077125 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1101]: 0.094087975 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[1102]: 0.094098725 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1103]: 0.094112450 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[1104]: 0.094123350 - core[1].svTaskStartExec(4), plen 0: [tid: 12301764] -EVENT[1105]: 0.094134175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1106]: 0.094146025 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12299072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[1107]: 0.094157325 - core[0].svIdle(17), plen 0: [] -EVENT[1108]: 0.094168950 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1109]: 0.094185350 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1110]: 0.094248900 - core[1].svPrint(26), plen 63: [msg: I (402) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb7b8 -, lvl: 0, unused: 0] -[0.094248900] LOG: I (402) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb7b8 -EVENT[1111]: 0.094270100 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461176, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.094270100] HEAP: Freed bytes @ 0x3ffbb7b8 from task "free2" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +EVENT[1098]: 0.094005125 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073459056, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.094005125] HEAP: Freed bytes @ 0x3ffbaf70 from task "free1" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1112]: 0.094301100 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1113]: 0.094312575 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1114]: 0.094329275 - core[1].svIdle(17), plen 0: [] -EVENT[1115]: 0.094669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1116]: 0.094682850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1117]: 0.094698425 - core[1].svIdle(17), plen 0: [] -EVENT[1118]: 0.094813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1119]: 0.094828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1120]: 0.094843825 - core[0].svIdle(17), plen 0: [] -EVENT[1121]: 0.095669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1122]: 0.095682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1123]: 0.095698075 - core[1].svIdle(17), plen 0: [] -EVENT[1124]: 0.095813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1125]: 0.095828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1126]: 0.095843775 - core[0].svIdle(17), plen 0: [] -EVENT[1127]: 0.096669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1128]: 0.096682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1129]: 0.096698325 - core[1].svIdle(17), plen 0: [] -EVENT[1130]: 0.096813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1131]: 0.096828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1132]: 0.096843775 - core[0].svIdle(17), plen 0: [] -EVENT[1133]: 0.097669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1134]: 0.097682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1135]: 0.097698100 - core[1].svIdle(17), plen 0: [] -EVENT[1136]: 0.097813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1137]: 0.097828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1138]: 0.097843775 - core[0].svIdle(17), plen 0: [] -EVENT[1139]: 0.098669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1140]: 0.098682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1141]: 0.098698075 - core[1].svIdle(17), plen 0: [] -EVENT[1142]: 0.098813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1143]: 0.098828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1144]: 0.098843825 - core[0].svIdle(17), plen 0: [] -EVENT[1145]: 0.099669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1146]: 0.099682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1147]: 0.099698075 - core[1].svIdle(17), plen 0: [] -EVENT[1148]: 0.099813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1149]: 0.099828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1150]: 0.099843775 - core[0].svIdle(17), plen 0: [] -EVENT[1151]: 0.100669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1152]: 0.100682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1153]: 0.100698325 - core[1].svIdle(17), plen 0: [] -EVENT[1154]: 0.100813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1155]: 0.100828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1156]: 0.100843775 - core[0].svIdle(17), plen 0: [] -EVENT[1157]: 0.101669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1158]: 0.101682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1159]: 0.101698100 - core[1].svIdle(17), plen 0: [] -EVENT[1160]: 0.101813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1161]: 0.101828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1162]: 0.101843775 - core[0].svIdle(17), plen 0: [] -EVENT[1163]: 0.102669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1164]: 0.102682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1165]: 0.102698075 - core[1].svIdle(17), plen 0: [] -EVENT[1166]: 0.102813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1167]: 0.102828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1168]: 0.102843825 - core[0].svIdle(17), plen 0: [] -EVENT[1169]: 0.103669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1170]: 0.103682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1171]: 0.103698075 - core[1].svIdle(17), plen 0: [] -EVENT[1172]: 0.103813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1173]: 0.103828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1174]: 0.103843775 - core[0].svIdle(17), plen 0: [] -EVENT[1175]: 0.104669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1176]: 0.104686550 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1177]: 0.104701825 - core[1].svIdle(17), plen 0: [] -EVENT[1178]: 0.104813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1179]: 0.104828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1180]: 0.104843775 - core[0].svIdle(17), plen 0: [] -EVENT[1181]: 0.105669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1182]: 0.105682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1183]: 0.105698075 - core[1].svIdle(17), plen 0: [] -EVENT[1184]: 0.105813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1185]: 0.105828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1186]: 0.105843825 - core[0].svIdle(17), plen 0: [] -EVENT[1187]: 0.106669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1188]: 0.106682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1189]: 0.106698075 - core[1].svIdle(17), plen 0: [] -EVENT[1190]: 0.106813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1191]: 0.106828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1192]: 0.106843775 - core[0].svIdle(17), plen 0: [] -EVENT[1193]: 0.107669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1194]: 0.107682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1195]: 0.107698325 - core[1].svIdle(17), plen 0: [] -EVENT[1196]: 0.107813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1197]: 0.107828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1198]: 0.107843775 - core[0].svIdle(17), plen 0: [] -EVENT[1199]: 0.108669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1200]: 0.108682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1201]: 0.108698100 - core[1].svIdle(17), plen 0: [] -EVENT[1202]: 0.108813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1203]: 0.108828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1204]: 0.108843775 - core[0].svIdle(17), plen 0: [] -EVENT[1205]: 0.109669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1206]: 0.109682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1207]: 0.109698075 - core[1].svIdle(17), plen 0: [] -EVENT[1208]: 0.109813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1209]: 0.109828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1210]: 0.109843825 - core[0].svIdle(17), plen 0: [] -EVENT[1211]: 0.110669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1212]: 0.110682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1213]: 0.110698075 - core[1].svIdle(17), plen 0: [] -EVENT[1214]: 0.110813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1215]: 0.110828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1216]: 0.110843775 - core[0].svIdle(17), plen 0: [] -EVENT[1217]: 0.111669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1218]: 0.111682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1219]: 0.111698325 - core[1].svIdle(17), plen 0: [] -EVENT[1220]: 0.111813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1221]: 0.111828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1222]: 0.111843775 - core[0].svIdle(17), plen 0: [] -EVENT[1223]: 0.112669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1224]: 0.112682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1225]: 0.112698100 - core[1].svIdle(17), plen 0: [] -EVENT[1226]: 0.112813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1227]: 0.112828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1228]: 0.112843775 - core[0].svIdle(17), plen 0: [] -EVENT[1229]: 0.113669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1230]: 0.113682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1231]: 0.113698075 - core[1].svIdle(17), plen 0: [] -EVENT[1232]: 0.113813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1233]: 0.113828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1234]: 0.113843825 - core[0].svIdle(17), plen 0: [] -EVENT[1235]: 0.114669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1236]: 0.114682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1237]: 0.114698075 - core[1].svIdle(17), plen 0: [] -EVENT[1238]: 0.114813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1239]: 0.114828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1240]: 0.114843775 - core[0].svIdle(17), plen 0: [] -EVENT[1241]: 0.115669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1242]: 0.115682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1243]: 0.115698325 - core[1].svIdle(17), plen 0: [] -EVENT[1244]: 0.115813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1245]: 0.115828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1246]: 0.115843775 - core[0].svIdle(17), plen 0: [] -EVENT[1247]: 0.116669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1248]: 0.116687200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1249]: 0.116702350 - core[1].svIdle(17), plen 0: [] -EVENT[1250]: 0.116813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1251]: 0.116828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1252]: 0.116843775 - core[0].svIdle(17), plen 0: [] -EVENT[1253]: 0.117669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1254]: 0.117682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1255]: 0.117698075 - core[1].svIdle(17), plen 0: [] -EVENT[1256]: 0.117813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1257]: 0.117828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1258]: 0.117843825 - core[0].svIdle(17), plen 0: [] -EVENT[1259]: 0.118669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1260]: 0.118682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1261]: 0.118698075 - core[1].svIdle(17), plen 0: [] -EVENT[1262]: 0.118813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1263]: 0.118828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1264]: 0.118843775 - core[0].svIdle(17), plen 0: [] -EVENT[1265]: 0.119669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1266]: 0.119682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1267]: 0.119698325 - core[1].svIdle(17), plen 0: [] -EVENT[1268]: 0.119813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1269]: 0.119828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1270]: 0.119843775 - core[0].svIdle(17), plen 0: [] -EVENT[1271]: 0.120669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1272]: 0.120682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1273]: 0.120698100 - core[1].svIdle(17), plen 0: [] -EVENT[1274]: 0.120813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1275]: 0.120828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1276]: 0.120843775 - core[0].svIdle(17), plen 0: [] -EVENT[1277]: 0.121669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1278]: 0.121682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1279]: 0.121698075 - core[1].svIdle(17), plen 0: [] -EVENT[1280]: 0.121813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1281]: 0.121828225 - core[0].svTaskStartReady(6), plen 0: [tid: 12286700] -EVENT[1282]: 0.121828225 - core[1].svTaskStartReady(6), plen 0: [tid: 12286700] -EVENT[1283]: 0.121840850 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1284]: 0.121856525 - core[0].svTaskStartExec(4), plen 0: [tid: 12286700] -EVENT[1285]: 0.121891850 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461176, size: 5, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.121891850] HEAP: Allocated 5 bytes @ 0x3ffbb7b8 from task "alloc0" on core 0 by: +EVENT[1099]: 0.094017575 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1100]: 0.094036725 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1101]: 0.094047975 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1102]: 0.094058825 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1103]: 0.094077100 - core[1].svIdle(17), plen 0: [] +EVENT[1104]: 0.094104950 - core[0].svPrint(26), plen 70: [msg: I (389) example: Task[0x3ffba1a4]: allocated 24 bytes @ 0x3ffbaf94 +, lvl: 0, unused: 0] +[0.094104950] LOG: I (389) example: Task[0x3ffba1a4]: allocated 24 bytes @ 0x3ffbaf94 +EVENT[1105]: 0.094118375 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12296968, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1106]: 0.094135775 - core[0].svTaskStartReady(6), plen 0: [tid: 12299660] +EVENT[1107]: 0.094135775 - core[1].svTaskStartReady(6), plen 0: [tid: 12299660] +EVENT[1108]: 0.094152125 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1109]: 0.094162975 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[1110]: 0.094173800 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1111]: 0.094187600 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[1112]: 0.094198350 - core[1].svTaskStartExec(4), plen 0: [tid: 12299660] +EVENT[1113]: 0.094209150 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1114]: 0.094221100 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12296968, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[1115]: 0.094232325 - core[0].svIdle(17), plen 0: [] +EVENT[1116]: 0.094244150 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1117]: 0.094260400 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1118]: 0.094308175 - core[1].svPrint(26), plen 63: [msg: I (389) example: Task[0x3ffbad8c]: free memory @ 0x3ffbaf94 +, lvl: 0, unused: 0] +[0.094308175] LOG: I (389) example: Task[0x3ffbad8c]: free memory @ 0x3ffbaf94 +EVENT[1119]: 0.094329550 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073459092, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.094329550] HEAP: Freed bytes @ 0x3ffbaf94 from task "free2" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1120]: 0.094356975 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1121]: 0.094368375 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1122]: 0.094384950 - core[1].svIdle(17), plen 0: [] +EVENT[1123]: 0.094425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1124]: 0.094439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1125]: 0.094455150 - core[1].svIdle(17), plen 0: [] +EVENT[1126]: 0.094546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1127]: 0.094562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1128]: 0.094577125 - core[0].svIdle(17), plen 0: [] +EVENT[1129]: 0.095425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1130]: 0.095439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1131]: 0.095454550 - core[1].svIdle(17), plen 0: [] +EVENT[1132]: 0.095546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1133]: 0.095562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1134]: 0.095577425 - core[0].svIdle(17), plen 0: [] +EVENT[1135]: 0.096425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1136]: 0.096439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1137]: 0.096454550 - core[1].svIdle(17), plen 0: [] +EVENT[1138]: 0.096546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1139]: 0.096566350 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1140]: 0.096581550 - core[0].svIdle(17), plen 0: [] +EVENT[1141]: 0.097425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1142]: 0.097439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1143]: 0.097454550 - core[1].svIdle(17), plen 0: [] +EVENT[1144]: 0.097546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1145]: 0.097562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1146]: 0.097577125 - core[0].svIdle(17), plen 0: [] +EVENT[1147]: 0.098425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1148]: 0.098439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1149]: 0.098454675 - core[1].svIdle(17), plen 0: [] +EVENT[1150]: 0.098546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1151]: 0.098562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1152]: 0.098577150 - core[0].svIdle(17), plen 0: [] +EVENT[1153]: 0.099425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1154]: 0.099439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1155]: 0.099454600 - core[1].svIdle(17), plen 0: [] +EVENT[1156]: 0.099546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1157]: 0.099562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1158]: 0.099577125 - core[0].svIdle(17), plen 0: [] +EVENT[1159]: 0.100425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1160]: 0.100439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1161]: 0.100454550 - core[1].svIdle(17), plen 0: [] +EVENT[1162]: 0.100546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1163]: 0.100562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1164]: 0.100577425 - core[0].svIdle(17), plen 0: [] +EVENT[1165]: 0.101425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1166]: 0.101439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1167]: 0.101454550 - core[1].svIdle(17), plen 0: [] +EVENT[1168]: 0.101546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1169]: 0.101562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1170]: 0.101577125 - core[0].svIdle(17), plen 0: [] +EVENT[1171]: 0.102425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1172]: 0.102439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1173]: 0.102454675 - core[1].svIdle(17), plen 0: [] +EVENT[1174]: 0.102546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1175]: 0.102562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1176]: 0.102577150 - core[0].svIdle(17), plen 0: [] +EVENT[1177]: 0.103425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1178]: 0.103439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1179]: 0.103454600 - core[1].svIdle(17), plen 0: [] +EVENT[1180]: 0.103546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1181]: 0.103562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1182]: 0.103577125 - core[0].svIdle(17), plen 0: [] +EVENT[1183]: 0.104425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1184]: 0.104439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1185]: 0.104454550 - core[1].svIdle(17), plen 0: [] +EVENT[1186]: 0.104546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1187]: 0.104562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1188]: 0.104577425 - core[0].svIdle(17), plen 0: [] +EVENT[1189]: 0.105425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1190]: 0.105439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1191]: 0.105454550 - core[1].svIdle(17), plen 0: [] +EVENT[1192]: 0.105546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1193]: 0.105562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1194]: 0.105577125 - core[0].svIdle(17), plen 0: [] +EVENT[1195]: 0.106425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1196]: 0.106439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1197]: 0.106454675 - core[1].svIdle(17), plen 0: [] +EVENT[1198]: 0.106546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1199]: 0.106562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1200]: 0.106577150 - core[0].svIdle(17), plen 0: [] +EVENT[1201]: 0.107425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1202]: 0.107439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1203]: 0.107454600 - core[1].svIdle(17), plen 0: [] +EVENT[1204]: 0.107546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1205]: 0.107562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1206]: 0.107577125 - core[0].svIdle(17), plen 0: [] +EVENT[1207]: 0.108425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1208]: 0.108439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1209]: 0.108454550 - core[1].svIdle(17), plen 0: [] +EVENT[1210]: 0.108546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1211]: 0.108566325 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1212]: 0.108581550 - core[0].svIdle(17), plen 0: [] +EVENT[1213]: 0.109425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1214]: 0.109439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1215]: 0.109454550 - core[1].svIdle(17), plen 0: [] +EVENT[1216]: 0.109546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1217]: 0.109562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1218]: 0.109577125 - core[0].svIdle(17), plen 0: [] +EVENT[1219]: 0.110425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1220]: 0.110439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1221]: 0.110454675 - core[1].svIdle(17), plen 0: [] +EVENT[1222]: 0.110546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1223]: 0.110562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1224]: 0.110577150 - core[0].svIdle(17), plen 0: [] +EVENT[1225]: 0.111425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1226]: 0.111439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1227]: 0.111454600 - core[1].svIdle(17), plen 0: [] +EVENT[1228]: 0.111546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1229]: 0.111562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1230]: 0.111577125 - core[0].svIdle(17), plen 0: [] +EVENT[1231]: 0.112425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1232]: 0.112439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1233]: 0.112454550 - core[1].svIdle(17), plen 0: [] +EVENT[1234]: 0.112546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1235]: 0.112562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1236]: 0.112577425 - core[0].svIdle(17), plen 0: [] +EVENT[1237]: 0.113425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1238]: 0.113439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1239]: 0.113454550 - core[1].svIdle(17), plen 0: [] +EVENT[1240]: 0.113546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1241]: 0.113562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1242]: 0.113577125 - core[0].svIdle(17), plen 0: [] +EVENT[1243]: 0.114425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1244]: 0.114439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1245]: 0.114454675 - core[1].svIdle(17), plen 0: [] +EVENT[1246]: 0.114546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1247]: 0.114562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1248]: 0.114577150 - core[0].svIdle(17), plen 0: [] +EVENT[1249]: 0.115425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1250]: 0.115439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1251]: 0.115454600 - core[1].svIdle(17), plen 0: [] +EVENT[1252]: 0.115546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1253]: 0.115562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1254]: 0.115577125 - core[0].svIdle(17), plen 0: [] +EVENT[1255]: 0.116425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1256]: 0.116439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1257]: 0.116454550 - core[1].svIdle(17), plen 0: [] +EVENT[1258]: 0.116546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1259]: 0.116562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1260]: 0.116577425 - core[0].svIdle(17), plen 0: [] +EVENT[1261]: 0.117425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1262]: 0.117439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1263]: 0.117454550 - core[1].svIdle(17), plen 0: [] +EVENT[1264]: 0.117546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1265]: 0.117562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1266]: 0.117577125 - core[0].svIdle(17), plen 0: [] +EVENT[1267]: 0.118425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1268]: 0.118439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1269]: 0.118454675 - core[1].svIdle(17), plen 0: [] +EVENT[1270]: 0.118546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1271]: 0.118562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1272]: 0.118577150 - core[0].svIdle(17), plen 0: [] +EVENT[1273]: 0.119425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1274]: 0.119439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1275]: 0.119454600 - core[1].svIdle(17), plen 0: [] +EVENT[1276]: 0.119546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1277]: 0.119562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1278]: 0.119577125 - core[0].svIdle(17), plen 0: [] +EVENT[1279]: 0.120425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1280]: 0.120439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1281]: 0.120454550 - core[1].svIdle(17), plen 0: [] +EVENT[1282]: 0.120546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1283]: 0.120566325 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1284]: 0.120581550 - core[0].svIdle(17), plen 0: [] +EVENT[1285]: 0.121425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1286]: 0.121439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1287]: 0.121454550 - core[1].svIdle(17), plen 0: [] +EVENT[1288]: 0.121546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1289]: 0.121562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1290]: 0.121577125 - core[0].svIdle(17), plen 0: [] +EVENT[1291]: 0.122425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1292]: 0.122439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1293]: 0.122454675 - core[1].svIdle(17), plen 0: [] +EVENT[1294]: 0.122546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1295]: 0.122561675 - core[0].svTaskStartReady(6), plen 0: [tid: 12284596] +EVENT[1296]: 0.122561675 - core[1].svTaskStartReady(6), plen 0: [tid: 12284596] +EVENT[1297]: 0.122574250 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1298]: 0.122589925 - core[0].svTaskStartExec(4), plen 0: [tid: 12284596] +EVENT[1299]: 0.122624925 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459056, size: 5, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.122624925] HEAP: Allocated 5 bytes @ 0x3ffbaf70 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1286]: 0.121926275 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461192, size: 10, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.121926275] HEAP: Allocated 10 bytes @ 0x3ffbb7c8 from task "alloc0" on core 0 by: +EVENT[1300]: 0.122660425 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459092, size: 10, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.122660425] HEAP: Allocated 10 bytes @ 0x3ffbaf94 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1287]: 0.121943300 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1288]: 0.121959425 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1289]: 0.122029850 - core[0].svPrint(26), plen 70: [msg: I (430) example: Task[0x3ffb7aec]: allocated 10 bytes @ 0x3ffbb7c8 +EVENT[1301]: 0.122677350 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1302]: 0.122693275 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1303]: 0.122748050 - core[0].svPrint(26), plen 70: [msg: I (418) example: Task[0x3ffb72b4]: allocated 10 bytes @ 0x3ffbaf94 , lvl: 0, unused: 0] -[0.122029850] LOG: I (430) example: Task[0x3ffb7aec]: allocated 10 bytes @ 0x3ffbb7c8 -EVENT[1290]: 0.122047575 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12287056, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1291]: 0.122060800 - core[0].svTaskStartReady(6), plen 0: [tid: 12289748] -EVENT[1292]: 0.122060800 - core[1].svTaskStartReady(6), plen 0: [tid: 12289748] -EVENT[1293]: 0.122077050 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1294]: 0.122087900 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[1295]: 0.122098675 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1296]: 0.122112500 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[1297]: 0.122123400 - core[1].svTaskStartExec(4), plen 0: [tid: 12289748] -EVENT[1298]: 0.122134225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1299]: 0.122146175 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12287056, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[1300]: 0.122156425 - core[0].svIdle(17), plen 0: [] -EVENT[1301]: 0.122167850 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1302]: 0.122184200 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1303]: 0.122247750 - core[1].svPrint(26), plen 63: [msg: I (430) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb7c8 +[0.122748050] LOG: I (418) example: Task[0x3ffb72b4]: allocated 10 bytes @ 0x3ffbaf94 +EVENT[1304]: 0.122761550 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12284952, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1305]: 0.122778975 - core[0].svTaskStartReady(6), plen 0: [tid: 12287644] +EVENT[1306]: 0.122778975 - core[1].svTaskStartReady(6), plen 0: [tid: 12287644] +EVENT[1307]: 0.122795250 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1308]: 0.122806100 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[1309]: 0.122816975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1310]: 0.122830800 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[1311]: 0.122841650 - core[1].svTaskStartExec(4), plen 0: [tid: 12287644] +EVENT[1312]: 0.122852500 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1313]: 0.122864500 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12284952, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[1314]: 0.122874800 - core[0].svIdle(17), plen 0: [] +EVENT[1315]: 0.122886425 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1316]: 0.122902750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1317]: 0.122950525 - core[1].svPrint(26), plen 63: [msg: I (418) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbaf94 , lvl: 0, unused: 0] -[0.122247750] LOG: I (430) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb7c8 -EVENT[1304]: 0.122268950 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461192, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.122268950] HEAP: Freed bytes @ 0x3ffbb7c8 from task "free0" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +[0.122950525] LOG: I (418) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbaf94 +EVENT[1318]: 0.122971900 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073459092, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.122971900] HEAP: Freed bytes @ 0x3ffbaf94 from task "free0" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1305]: 0.122299975 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1306]: 0.122311450 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1307]: 0.122328150 - core[1].svIdle(17), plen 0: [] -EVENT[1308]: 0.122669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1309]: 0.122682850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1310]: 0.122698425 - core[1].svIdle(17), plen 0: [] -EVENT[1311]: 0.122813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1312]: 0.122828225 - core[0].svTaskStartReady(6), plen 0: [tid: 12292716] -EVENT[1313]: 0.122828225 - core[1].svTaskStartReady(6), plen 0: [tid: 12292716] -EVENT[1314]: 0.122840850 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1315]: 0.122856525 - core[0].svTaskStartExec(4), plen 0: [tid: 12292716] -EVENT[1316]: 0.122891850 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461192, size: 10, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.122891850] HEAP: Allocated 10 bytes @ 0x3ffbb7c8 from task "alloc1" on core 0 by: +EVENT[1319]: 0.122999325 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1320]: 0.123010850 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1321]: 0.123027425 - core[1].svIdle(17), plen 0: [] +EVENT[1322]: 0.123425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1323]: 0.123439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1324]: 0.123455150 - core[1].svIdle(17), plen 0: [] +EVENT[1325]: 0.123546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1326]: 0.123561650 - core[0].svTaskStartReady(6), plen 0: [tid: 12290612] +EVENT[1327]: 0.123561650 - core[1].svTaskStartReady(6), plen 0: [tid: 12290612] +EVENT[1328]: 0.123573550 - core[0].svTaskStartReady(6), plen 0: [tid: 12296612] +EVENT[1329]: 0.123573550 - core[1].svTaskStartReady(6), plen 0: [tid: 12296612] +EVENT[1330]: 0.123586100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1331]: 0.123601775 - core[0].svTaskStartExec(4), plen 0: [tid: 12290612] +EVENT[1332]: 0.123638150 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459092, size: 10, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.123638150] HEAP: Allocated 10 bytes @ 0x3ffbaf94 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1317]: 0.122926275 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461208, size: 20, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.122926275] HEAP: Allocated 20 bytes @ 0x3ffbb7d8 from task "alloc1" on core 0 by: +EVENT[1333]: 0.123677150 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459108, size: 20, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.123677150] HEAP: Allocated 20 bytes @ 0x3ffbafa4 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1318]: 0.122943300 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1319]: 0.122959425 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1320]: 0.123029850 - core[0].svPrint(26), plen 70: [msg: I (431) example: Task[0x3ffb926c]: allocated 20 bytes @ 0x3ffbb7d8 +EVENT[1334]: 0.123694075 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1335]: 0.123710100 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1336]: 0.123764825 - core[0].svPrint(26), plen 70: [msg: I (419) example: Task[0x3ffb8a34]: allocated 20 bytes @ 0x3ffbafa4 , lvl: 0, unused: 0] -[0.123029850] LOG: I (431) example: Task[0x3ffb926c]: allocated 20 bytes @ 0x3ffbb7d8 -EVENT[1321]: 0.123043400 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12293072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1322]: 0.123060825 - core[0].svTaskStartReady(6), plen 0: [tid: 12295764] -EVENT[1323]: 0.123060825 - core[1].svTaskStartReady(6), plen 0: [tid: 12295764] -EVENT[1324]: 0.123077125 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1325]: 0.123087975 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[1326]: 0.123098725 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1327]: 0.123112450 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[1328]: 0.123123300 - core[1].svTaskStartExec(4), plen 0: [tid: 12295764] -EVENT[1329]: 0.123134125 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1330]: 0.123146000 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12293072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[1331]: 0.123156250 - core[0].svIdle(17), plen 0: [] -EVENT[1332]: 0.123167725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1333]: 0.123184025 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1334]: 0.123247475 - core[1].svPrint(26), plen 63: [msg: I (431) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb7d8 -, lvl: 0, unused: 0] -[0.123247475] LOG: I (431) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb7d8 -EVENT[1335]: 0.123268650 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461208, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.123268650] HEAP: Freed bytes @ 0x3ffbb7d8 from task "free1" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 -/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 -/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 - -EVENT[1336]: 0.123295650 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1337]: 0.123307075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1338]: 0.123323650 - core[1].svIdle(17), plen 0: [] -EVENT[1339]: 0.123669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1340]: 0.123682950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1341]: 0.123698525 - core[1].svIdle(17), plen 0: [] -EVENT[1342]: 0.123813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1343]: 0.123828325 - core[0].svTaskStartReady(6), plen 0: [tid: 12298716] -EVENT[1344]: 0.123828325 - core[1].svTaskStartReady(6), plen 0: [tid: 12298716] -EVENT[1345]: 0.123840975 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1346]: 0.123856650 - core[0].svTaskStartExec(4), plen 0: [tid: 12298716] -EVENT[1347]: 0.123892175 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461208, size: 15, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.123892175] HEAP: Allocated 15 bytes @ 0x3ffbb7d8 from task "alloc2" on core 0 by: +[0.123764825] LOG: I (419) example: Task[0x3ffb8a34]: allocated 20 bytes @ 0x3ffbafa4 +EVENT[1337]: 0.123778250 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12290968, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1338]: 0.123791500 - core[0].svTaskStartReady(6), plen 0: [tid: 12293660] +EVENT[1339]: 0.123791500 - core[1].svTaskStartReady(6), plen 0: [tid: 12293660] +EVENT[1340]: 0.123807850 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1341]: 0.123818700 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[1342]: 0.123829525 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1343]: 0.123843325 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[1344]: 0.123855250 - core[1].svTaskStartExec(4), plen 0: [tid: 12293660] +EVENT[1345]: 0.123866325 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1346]: 0.123878250 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12290968, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[1347]: 0.123889925 - core[0].svTaskStartExec(4), plen 0: [tid: 12296612] +EVENT[1348]: 0.123902550 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1349]: 0.123924950 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1350]: 0.123936400 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459132, size: 15, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.123936400] HEAP: Allocated 15 bytes @ 0x3ffbafbc from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1348]: 0.123930850 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461228, size: 30, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.123930850] HEAP: Allocated 30 bytes @ 0x3ffbb7ec from task "alloc2" on core 0 by: +EVENT[1351]: 0.123977725 - core[1].svPrint(26), plen 63: [msg: I (419) example: Task[0x3ffb961c]: free memory @ 0x3ffbafa4 +, lvl: 0, unused: 0] +[0.123977725] LOG: I (419) example: Task[0x3ffb961c]: free memory @ 0x3ffbafa4 +EVENT[1352]: 0.123989300 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459152, size: 30, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.123989300] HEAP: Allocated 30 bytes @ 0x3ffbafd0 from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1349]: 0.123947750 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1350]: 0.123963725 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1351]: 0.124034075 - core[0].svPrint(26), plen 70: [msg: I (432) example: Task[0x3ffba9dc]: allocated 30 bytes @ 0x3ffbb7ec -, lvl: 0, unused: 0] -[0.124034075] LOG: I (432) example: Task[0x3ffba9dc]: allocated 30 bytes @ 0x3ffbb7ec -EVENT[1352]: 0.124047800 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12299072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1353]: 0.124061025 - core[0].svTaskStartReady(6), plen 0: [tid: 12301764] -EVENT[1354]: 0.124061025 - core[1].svTaskStartReady(6), plen 0: [tid: 12301764] -EVENT[1355]: 0.124077325 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1356]: 0.124088175 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[1357]: 0.124098950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1358]: 0.124112675 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[1359]: 0.124125000 - core[1].svTaskStartExec(4), plen 0: [tid: 12301764] -EVENT[1360]: 0.124135825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1361]: 0.124147700 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12299072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[1362]: 0.124158975 - core[0].svIdle(17), plen 0: [] -EVENT[1363]: 0.124170625 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1364]: 0.124190325 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1365]: 0.124253875 - core[1].svPrint(26), plen 63: [msg: I (432) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb7ec -, lvl: 0, unused: 0] -[0.124253875] LOG: I (432) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb7ec -EVENT[1366]: 0.124275075 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461228, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.124275075] HEAP: Freed bytes @ 0x3ffbb7ec from task "free2" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +EVENT[1353]: 0.124003525 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073459108, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.124003525] HEAP: Freed bytes @ 0x3ffbafa4 from task "free1" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1367]: 0.124301975 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1368]: 0.124313400 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1369]: 0.124329975 - core[1].svIdle(17), plen 0: [] -EVENT[1370]: 0.124669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1371]: 0.124682950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1372]: 0.124698525 - core[1].svIdle(17), plen 0: [] -EVENT[1373]: 0.124813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1374]: 0.124828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1375]: 0.124843775 - core[0].svIdle(17), plen 0: [] -EVENT[1376]: 0.125669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1377]: 0.125682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1378]: 0.125698325 - core[1].svIdle(17), plen 0: [] -EVENT[1379]: 0.125813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1380]: 0.125828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1381]: 0.125843775 - core[0].svIdle(17), plen 0: [] -EVENT[1382]: 0.126669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1383]: 0.126682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1384]: 0.126698100 - core[1].svIdle(17), plen 0: [] -EVENT[1385]: 0.126813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1386]: 0.126828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1387]: 0.126843775 - core[0].svIdle(17), plen 0: [] -EVENT[1388]: 0.127669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1389]: 0.127682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1390]: 0.127698075 - core[1].svIdle(17), plen 0: [] -EVENT[1391]: 0.127813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1392]: 0.127828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1393]: 0.127843825 - core[0].svIdle(17), plen 0: [] -EVENT[1394]: 0.128669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1395]: 0.128682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1396]: 0.128698075 - core[1].svIdle(17), plen 0: [] -EVENT[1397]: 0.128813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1398]: 0.128828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1399]: 0.128843775 - core[0].svIdle(17), plen 0: [] -EVENT[1400]: 0.129669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1401]: 0.129682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1402]: 0.129698325 - core[1].svIdle(17), plen 0: [] -EVENT[1403]: 0.129813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1404]: 0.129828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1405]: 0.129848100 - core[0].svIdle(17), plen 0: [] -EVENT[1406]: 0.130669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1407]: 0.130682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1408]: 0.130698075 - core[1].svIdle(17), plen 0: [] -EVENT[1409]: 0.130813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1410]: 0.130828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1411]: 0.130843775 - core[0].svIdle(17), plen 0: [] -EVENT[1412]: 0.131669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1413]: 0.131682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1414]: 0.131698325 - core[1].svIdle(17), plen 0: [] -EVENT[1415]: 0.131813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1416]: 0.131828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1417]: 0.131843775 - core[0].svIdle(17), plen 0: [] -EVENT[1418]: 0.132669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1419]: 0.132682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1420]: 0.132698100 - core[1].svIdle(17), plen 0: [] -EVENT[1421]: 0.132813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1422]: 0.132828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1423]: 0.132843775 - core[0].svIdle(17), plen 0: [] -EVENT[1424]: 0.133669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1425]: 0.133682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1426]: 0.133698075 - core[1].svIdle(17), plen 0: [] -EVENT[1427]: 0.133813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1428]: 0.133828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1429]: 0.133843825 - core[0].svIdle(17), plen 0: [] -EVENT[1430]: 0.134669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1431]: 0.134682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1432]: 0.134698075 - core[1].svIdle(17), plen 0: [] -EVENT[1433]: 0.134813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1434]: 0.134828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1435]: 0.134843775 - core[0].svIdle(17), plen 0: [] -EVENT[1436]: 0.135669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1437]: 0.135682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1438]: 0.135698325 - core[1].svIdle(17), plen 0: [] -EVENT[1439]: 0.135813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1440]: 0.135828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1441]: 0.135843775 - core[0].svIdle(17), plen 0: [] -EVENT[1442]: 0.136669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1443]: 0.136682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1444]: 0.136698100 - core[1].svIdle(17), plen 0: [] -EVENT[1445]: 0.136813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1446]: 0.136828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1447]: 0.136843775 - core[0].svIdle(17), plen 0: [] -EVENT[1448]: 0.137669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1449]: 0.137682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1450]: 0.137698075 - core[1].svIdle(17), plen 0: [] -EVENT[1451]: 0.137813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1452]: 0.137828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1453]: 0.137843825 - core[0].svIdle(17), plen 0: [] -EVENT[1454]: 0.138669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1455]: 0.138682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1456]: 0.138698075 - core[1].svIdle(17), plen 0: [] -EVENT[1457]: 0.138813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1458]: 0.138828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1459]: 0.138843775 - core[0].svIdle(17), plen 0: [] -EVENT[1460]: 0.139669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1461]: 0.139682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1462]: 0.139698325 - core[1].svIdle(17), plen 0: [] -EVENT[1463]: 0.139813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1464]: 0.139828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1465]: 0.139843775 - core[0].svIdle(17), plen 0: [] -EVENT[1466]: 0.140669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1467]: 0.140682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1468]: 0.140698100 - core[1].svIdle(17), plen 0: [] -EVENT[1469]: 0.140813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1470]: 0.140828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1471]: 0.140843775 - core[0].svIdle(17), plen 0: [] -EVENT[1472]: 0.141669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1473]: 0.141682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1474]: 0.141698075 - core[1].svIdle(17), plen 0: [] -EVENT[1475]: 0.141813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1476]: 0.141828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1477]: 0.141843825 - core[0].svIdle(17), plen 0: [] -EVENT[1478]: 0.142669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1479]: 0.142682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1480]: 0.142698325 - core[1].svIdle(17), plen 0: [] -EVENT[1481]: 0.142813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1482]: 0.142828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1483]: 0.142843775 - core[0].svIdle(17), plen 0: [] -EVENT[1484]: 0.143669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1485]: 0.143682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1486]: 0.143698100 - core[1].svIdle(17), plen 0: [] -EVENT[1487]: 0.143813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1488]: 0.143828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1489]: 0.143843775 - core[0].svIdle(17), plen 0: [] -EVENT[1490]: 0.144669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1491]: 0.144682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1492]: 0.144698075 - core[1].svIdle(17), plen 0: [] -EVENT[1493]: 0.144813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1494]: 0.144828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1495]: 0.144843825 - core[0].svIdle(17), plen 0: [] -EVENT[1496]: 0.145669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1497]: 0.145682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1498]: 0.145698075 - core[1].svIdle(17), plen 0: [] -EVENT[1499]: 0.145813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1500]: 0.145828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1501]: 0.145843775 - core[0].svIdle(17), plen 0: [] -EVENT[1502]: 0.146669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1503]: 0.146682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1504]: 0.146698325 - core[1].svIdle(17), plen 0: [] -EVENT[1505]: 0.146813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1506]: 0.146828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1507]: 0.146843775 - core[0].svIdle(17), plen 0: [] -EVENT[1508]: 0.147669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1509]: 0.147682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1510]: 0.147698100 - core[1].svIdle(17), plen 0: [] -EVENT[1511]: 0.147813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1512]: 0.147828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1513]: 0.147843775 - core[0].svIdle(17), plen 0: [] -EVENT[1514]: 0.148669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1515]: 0.148682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1516]: 0.148698075 - core[1].svIdle(17), plen 0: [] -EVENT[1517]: 0.148813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1518]: 0.148828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1519]: 0.148843825 - core[0].svIdle(17), plen 0: [] -EVENT[1520]: 0.149669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1521]: 0.149682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1522]: 0.149698075 - core[1].svIdle(17), plen 0: [] -EVENT[1523]: 0.149813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1524]: 0.149828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1525]: 0.149843775 - core[0].svIdle(17), plen 0: [] -EVENT[1526]: 0.150669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1527]: 0.150682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1528]: 0.150698325 - core[1].svIdle(17), plen 0: [] -EVENT[1529]: 0.150813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1530]: 0.150828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1531]: 0.150843775 - core[0].svIdle(17), plen 0: [] -EVENT[1532]: 0.151669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1533]: 0.151682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1534]: 0.151698100 - core[1].svIdle(17), plen 0: [] -EVENT[1535]: 0.151813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1536]: 0.151828325 - core[0].svTaskStartReady(6), plen 0: [tid: 12286700] -EVENT[1537]: 0.151828325 - core[1].svTaskStartReady(6), plen 0: [tid: 12286700] -EVENT[1538]: 0.151840975 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1539]: 0.151856650 - core[0].svTaskStartExec(4), plen 0: [tid: 12286700] -EVENT[1540]: 0.151892175 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461228, size: 6, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.151892175] HEAP: Allocated 6 bytes @ 0x3ffbb7ec from task "alloc0" on core 0 by: +EVENT[1354]: 0.124016100 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1355]: 0.124035950 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1356]: 0.124046875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1357]: 0.124058400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1358]: 0.124076350 - core[1].svIdle(17), plen 0: [] +EVENT[1359]: 0.124094100 - core[0].svPrint(26), plen 70: [msg: I (419) example: Task[0x3ffba1a4]: allocated 30 bytes @ 0x3ffbafd0 +, lvl: 0, unused: 0] +[0.124094100] LOG: I (419) example: Task[0x3ffba1a4]: allocated 30 bytes @ 0x3ffbafd0 +EVENT[1360]: 0.124111700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12296968, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1361]: 0.124124950 - core[0].svTaskStartReady(6), plen 0: [tid: 12299660] +EVENT[1362]: 0.124124950 - core[1].svTaskStartReady(6), plen 0: [tid: 12299660] +EVENT[1363]: 0.124141300 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1364]: 0.124152150 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[1365]: 0.124162975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1366]: 0.124176800 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[1367]: 0.124187725 - core[1].svTaskStartExec(4), plen 0: [tid: 12299660] +EVENT[1368]: 0.124198600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1369]: 0.124210550 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12296968, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[1370]: 0.124221775 - core[0].svIdle(17), plen 0: [] +EVENT[1371]: 0.124233575 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1372]: 0.124249925 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1373]: 0.124297800 - core[1].svPrint(26), plen 63: [msg: I (419) example: Task[0x3ffbad8c]: free memory @ 0x3ffbafd0 +, lvl: 0, unused: 0] +[0.124297800] LOG: I (419) example: Task[0x3ffbad8c]: free memory @ 0x3ffbafd0 +EVENT[1374]: 0.124319225 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073459152, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.124319225] HEAP: Freed bytes @ 0x3ffbafd0 from task "free2" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1375]: 0.124349975 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1376]: 0.124361425 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1377]: 0.124378125 - core[1].svIdle(17), plen 0: [] +EVENT[1378]: 0.124425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1379]: 0.124439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1380]: 0.124455150 - core[1].svIdle(17), plen 0: [] +EVENT[1381]: 0.124546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1382]: 0.124562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1383]: 0.124577425 - core[0].svIdle(17), plen 0: [] +EVENT[1384]: 0.125425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1385]: 0.125439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1386]: 0.125454550 - core[1].svIdle(17), plen 0: [] +EVENT[1387]: 0.125546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1388]: 0.125562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1389]: 0.125577125 - core[0].svIdle(17), plen 0: [] +EVENT[1390]: 0.126425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1391]: 0.126439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1392]: 0.126454675 - core[1].svIdle(17), plen 0: [] +EVENT[1393]: 0.126546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1394]: 0.126562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1395]: 0.126577150 - core[0].svIdle(17), plen 0: [] +EVENT[1396]: 0.127425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1397]: 0.127439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1398]: 0.127454600 - core[1].svIdle(17), plen 0: [] +EVENT[1399]: 0.127546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1400]: 0.127562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1401]: 0.127577125 - core[0].svIdle(17), plen 0: [] +EVENT[1402]: 0.128425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1403]: 0.128439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1404]: 0.128454550 - core[1].svIdle(17), plen 0: [] +EVENT[1405]: 0.128546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1406]: 0.128562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1407]: 0.128577425 - core[0].svIdle(17), plen 0: [] +EVENT[1408]: 0.129425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1409]: 0.129439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1410]: 0.129454550 - core[1].svIdle(17), plen 0: [] +EVENT[1411]: 0.129546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1412]: 0.129562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1413]: 0.129577125 - core[0].svIdle(17), plen 0: [] +EVENT[1414]: 0.130425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1415]: 0.130439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1416]: 0.130454675 - core[1].svIdle(17), plen 0: [] +EVENT[1417]: 0.130546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1418]: 0.130562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1419]: 0.130577150 - core[0].svIdle(17), plen 0: [] +EVENT[1420]: 0.131425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1421]: 0.131439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1422]: 0.131454600 - core[1].svIdle(17), plen 0: [] +EVENT[1423]: 0.131546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1424]: 0.131562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1425]: 0.131577125 - core[0].svIdle(17), plen 0: [] +EVENT[1426]: 0.132425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1427]: 0.132439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1428]: 0.132454550 - core[1].svIdle(17), plen 0: [] +EVENT[1429]: 0.132546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1430]: 0.132562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1431]: 0.132577425 - core[0].svIdle(17), plen 0: [] +EVENT[1432]: 0.133425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1433]: 0.133439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1434]: 0.133454550 - core[1].svIdle(17), plen 0: [] +EVENT[1435]: 0.133546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1436]: 0.133562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1437]: 0.133577125 - core[0].svIdle(17), plen 0: [] +EVENT[1438]: 0.134425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1439]: 0.134443650 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1440]: 0.134458800 - core[1].svIdle(17), plen 0: [] +EVENT[1441]: 0.134546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1442]: 0.134562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1443]: 0.134577125 - core[0].svIdle(17), plen 0: [] +EVENT[1444]: 0.135425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1445]: 0.135439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1446]: 0.135454550 - core[1].svIdle(17), plen 0: [] +EVENT[1447]: 0.135546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1448]: 0.135562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1449]: 0.135577425 - core[0].svIdle(17), plen 0: [] +EVENT[1450]: 0.136425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1451]: 0.136439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1452]: 0.136454550 - core[1].svIdle(17), plen 0: [] +EVENT[1453]: 0.136546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1454]: 0.136562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1455]: 0.136577125 - core[0].svIdle(17), plen 0: [] +EVENT[1456]: 0.137425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1457]: 0.137439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1458]: 0.137454675 - core[1].svIdle(17), plen 0: [] +EVENT[1459]: 0.137546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1460]: 0.137562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1461]: 0.137577150 - core[0].svIdle(17), plen 0: [] +EVENT[1462]: 0.138425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1463]: 0.138439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1464]: 0.138454600 - core[1].svIdle(17), plen 0: [] +EVENT[1465]: 0.138546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1466]: 0.138562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1467]: 0.138577125 - core[0].svIdle(17), plen 0: [] +EVENT[1468]: 0.139425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1469]: 0.139439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1470]: 0.139454550 - core[1].svIdle(17), plen 0: [] +EVENT[1471]: 0.139546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1472]: 0.139562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1473]: 0.139577425 - core[0].svIdle(17), plen 0: [] +EVENT[1474]: 0.140425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1475]: 0.140439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1476]: 0.140454550 - core[1].svIdle(17), plen 0: [] +EVENT[1477]: 0.140546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1478]: 0.140562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1479]: 0.140577125 - core[0].svIdle(17), plen 0: [] +EVENT[1480]: 0.141425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1481]: 0.141439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1482]: 0.141454675 - core[1].svIdle(17), plen 0: [] +EVENT[1483]: 0.141546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1484]: 0.141562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1485]: 0.141577150 - core[0].svIdle(17), plen 0: [] +EVENT[1486]: 0.142425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1487]: 0.142439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1488]: 0.142454600 - core[1].svIdle(17), plen 0: [] +EVENT[1489]: 0.142546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1490]: 0.142562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1491]: 0.142577125 - core[0].svIdle(17), plen 0: [] +EVENT[1492]: 0.143425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1493]: 0.143439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1494]: 0.143454550 - core[1].svIdle(17), plen 0: [] +EVENT[1495]: 0.143546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1496]: 0.143562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1497]: 0.143577425 - core[0].svIdle(17), plen 0: [] +EVENT[1498]: 0.144425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1499]: 0.144439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1500]: 0.144454550 - core[1].svIdle(17), plen 0: [] +EVENT[1501]: 0.144546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1502]: 0.144562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1503]: 0.144577125 - core[0].svIdle(17), plen 0: [] +EVENT[1504]: 0.145425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1505]: 0.145439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1506]: 0.145454675 - core[1].svIdle(17), plen 0: [] +EVENT[1507]: 0.145546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1508]: 0.145562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1509]: 0.145577150 - core[0].svIdle(17), plen 0: [] +EVENT[1510]: 0.146425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1511]: 0.146443000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1512]: 0.146458125 - core[1].svIdle(17), plen 0: [] +EVENT[1513]: 0.146546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1514]: 0.146562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1515]: 0.146577125 - core[0].svIdle(17), plen 0: [] +EVENT[1516]: 0.147425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1517]: 0.147439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1518]: 0.147454550 - core[1].svIdle(17), plen 0: [] +EVENT[1519]: 0.147546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1520]: 0.147562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1521]: 0.147577425 - core[0].svIdle(17), plen 0: [] +EVENT[1522]: 0.148425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1523]: 0.148439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1524]: 0.148454550 - core[1].svIdle(17), plen 0: [] +EVENT[1525]: 0.148546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1526]: 0.148562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1527]: 0.148577125 - core[0].svIdle(17), plen 0: [] +EVENT[1528]: 0.149425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1529]: 0.149439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1530]: 0.149454675 - core[1].svIdle(17), plen 0: [] +EVENT[1531]: 0.149546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1532]: 0.149562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1533]: 0.149577150 - core[0].svIdle(17), plen 0: [] +EVENT[1534]: 0.150425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1535]: 0.150439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1536]: 0.150454600 - core[1].svIdle(17), plen 0: [] +EVENT[1537]: 0.150546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1538]: 0.150562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1539]: 0.150577125 - core[0].svIdle(17), plen 0: [] +EVENT[1540]: 0.151425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1541]: 0.151439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1542]: 0.151454550 - core[1].svIdle(17), plen 0: [] +EVENT[1543]: 0.151546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1544]: 0.151562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1545]: 0.151577425 - core[0].svIdle(17), plen 0: [] +EVENT[1546]: 0.152425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1547]: 0.152439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1548]: 0.152454550 - core[1].svIdle(17), plen 0: [] +EVENT[1549]: 0.152546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1550]: 0.152561650 - core[0].svTaskStartReady(6), plen 0: [tid: 12284596] +EVENT[1551]: 0.152561650 - core[1].svTaskStartReady(6), plen 0: [tid: 12284596] +EVENT[1552]: 0.152574300 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1553]: 0.152590225 - core[0].svTaskStartExec(4), plen 0: [tid: 12284596] +EVENT[1554]: 0.152625450 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459108, size: 6, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.152625450] HEAP: Allocated 6 bytes @ 0x3ffbafa4 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1541]: 0.151930650 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461244, size: 12, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.151930650] HEAP: Allocated 12 bytes @ 0x3ffbb7fc from task "alloc0" on core 0 by: +EVENT[1555]: 0.152661150 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459152, size: 12, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.152661150] HEAP: Allocated 12 bytes @ 0x3ffbafd0 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1542]: 0.151947550 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1543]: 0.151963550 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1544]: 0.152033875 - core[0].svPrint(26), plen 70: [msg: I (460) example: Task[0x3ffb7aec]: allocated 12 bytes @ 0x3ffbb7fc +EVENT[1556]: 0.152678125 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1557]: 0.152694100 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1558]: 0.152753100 - core[0].svPrint(26), plen 70: [msg: I (448) example: Task[0x3ffb72b4]: allocated 12 bytes @ 0x3ffbafd0 , lvl: 0, unused: 0] -[0.152033875] LOG: I (460) example: Task[0x3ffb7aec]: allocated 12 bytes @ 0x3ffbb7fc -EVENT[1545]: 0.152047475 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12287056, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1546]: 0.152060700 - core[0].svTaskStartReady(6), plen 0: [tid: 12289748] -EVENT[1547]: 0.152060700 - core[1].svTaskStartReady(6), plen 0: [tid: 12289748] -EVENT[1548]: 0.152076950 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1549]: 0.152087800 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[1550]: 0.152098575 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1551]: 0.152112375 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[1552]: 0.152123175 - core[1].svTaskStartExec(4), plen 0: [tid: 12289748] -EVENT[1553]: 0.152134025 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1554]: 0.152145900 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12287056, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[1555]: 0.152156200 - core[0].svIdle(17), plen 0: [] -EVENT[1556]: 0.152167725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1557]: 0.152188150 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1558]: 0.152251700 - core[1].svPrint(26), plen 63: [msg: I (460) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb7fc +[0.152753100] LOG: I (448) example: Task[0x3ffb72b4]: allocated 12 bytes @ 0x3ffbafd0 +EVENT[1559]: 0.152766600 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12284952, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1560]: 0.152779750 - core[0].svTaskStartReady(6), plen 0: [tid: 12287644] +EVENT[1561]: 0.152779750 - core[1].svTaskStartReady(6), plen 0: [tid: 12287644] +EVENT[1562]: 0.152795975 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1563]: 0.152806925 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[1564]: 0.152817675 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1565]: 0.152831750 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[1566]: 0.152842550 - core[1].svTaskStartExec(4), plen 0: [tid: 12287644] +EVENT[1567]: 0.152853275 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1568]: 0.152865400 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12284952, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[1569]: 0.152875575 - core[0].svIdle(17), plen 0: [] +EVENT[1570]: 0.152887350 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1571]: 0.152903675 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1572]: 0.152951550 - core[1].svPrint(26), plen 63: [msg: I (448) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbafd0 , lvl: 0, unused: 0] -[0.152251700] LOG: I (460) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb7fc -EVENT[1559]: 0.152272900 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461244, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.152272900] HEAP: Freed bytes @ 0x3ffbb7fc from task "free0" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +[0.152951550] LOG: I (448) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbafd0 +EVENT[1573]: 0.152972775 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073459152, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.152972775] HEAP: Freed bytes @ 0x3ffbafd0 from task "free0" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1560]: 0.152299800 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1561]: 0.152311225 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1562]: 0.152327800 - core[1].svIdle(17), plen 0: [] -EVENT[1563]: 0.152669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1564]: 0.152682950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1565]: 0.152698525 - core[1].svIdle(17), plen 0: [] -EVENT[1566]: 0.152813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1567]: 0.152828325 - core[0].svTaskStartReady(6), plen 0: [tid: 12292716] -EVENT[1568]: 0.152828325 - core[1].svTaskStartReady(6), plen 0: [tid: 12292716] -EVENT[1569]: 0.152840975 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1570]: 0.152856775 - core[0].svTaskStartExec(4), plen 0: [tid: 12292716] -EVENT[1571]: 0.152892175 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461244, size: 12, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.152892175] HEAP: Allocated 12 bytes @ 0x3ffbb7fc from task "alloc1" on core 0 by: +EVENT[1574]: 0.153004250 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1575]: 0.153015700 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1576]: 0.153032400 - core[1].svIdle(17), plen 0: [] +EVENT[1577]: 0.153425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1578]: 0.153439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1579]: 0.153455150 - core[1].svIdle(17), plen 0: [] +EVENT[1580]: 0.153546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1581]: 0.153561700 - core[0].svTaskStartReady(6), plen 0: [tid: 12290612] +EVENT[1582]: 0.153561700 - core[1].svTaskStartReady(6), plen 0: [tid: 12290612] +EVENT[1583]: 0.153573550 - core[0].svTaskStartReady(6), plen 0: [tid: 12296612] +EVENT[1584]: 0.153573550 - core[1].svTaskStartReady(6), plen 0: [tid: 12296612] +EVENT[1585]: 0.153586050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1586]: 0.153601725 - core[0].svTaskStartExec(4), plen 0: [tid: 12290612] +EVENT[1587]: 0.153638150 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459152, size: 12, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.153638150] HEAP: Allocated 12 bytes @ 0x3ffbafd0 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1572]: 0.152926700 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461260, size: 24, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.152926700] HEAP: Allocated 24 bytes @ 0x3ffbb80c from task "alloc1" on core 0 by: +EVENT[1588]: 0.153673575 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459168, size: 24, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.153673575] HEAP: Allocated 24 bytes @ 0x3ffbafe0 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1573]: 0.152943650 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1574]: 0.152963825 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1575]: 0.153034250 - core[0].svPrint(26), plen 70: [msg: I (461) example: Task[0x3ffb926c]: allocated 24 bytes @ 0x3ffbb80c +EVENT[1589]: 0.153690525 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1590]: 0.153706525 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1591]: 0.153761375 - core[0].svPrint(26), plen 70: [msg: I (449) example: Task[0x3ffb8a34]: allocated 24 bytes @ 0x3ffbafe0 , lvl: 0, unused: 0] -[0.153034250] LOG: I (461) example: Task[0x3ffb926c]: allocated 24 bytes @ 0x3ffbb80c -EVENT[1576]: 0.153047900 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12293072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1577]: 0.153061075 - core[0].svTaskStartReady(6), plen 0: [tid: 12295764] -EVENT[1578]: 0.153061075 - core[1].svTaskStartReady(6), plen 0: [tid: 12295764] -EVENT[1579]: 0.153077400 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1580]: 0.153088250 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[1581]: 0.153098975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1582]: 0.153112750 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[1583]: 0.153123700 - core[1].svTaskStartExec(4), plen 0: [tid: 12295764] -EVENT[1584]: 0.153134500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1585]: 0.153146375 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12293072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[1586]: 0.153156625 - core[0].svIdle(17), plen 0: [] -EVENT[1587]: 0.153168100 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1588]: 0.153184400 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1589]: 0.153247850 - core[1].svPrint(26), plen 63: [msg: I (461) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb80c -, lvl: 0, unused: 0] -[0.153247850] LOG: I (461) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb80c -EVENT[1590]: 0.153272900 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461260, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.153272900] HEAP: Freed bytes @ 0x3ffbb80c from task "free1" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 -/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 -/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 - -EVENT[1591]: 0.153299900 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1592]: 0.153311325 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1593]: 0.153327900 - core[1].svIdle(17), plen 0: [] -EVENT[1594]: 0.153669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1595]: 0.153682950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1596]: 0.153698525 - core[1].svIdle(17), plen 0: [] -EVENT[1597]: 0.153813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1598]: 0.153828325 - core[0].svTaskStartReady(6), plen 0: [tid: 12298716] -EVENT[1599]: 0.153828325 - core[1].svTaskStartReady(6), plen 0: [tid: 12298716] -EVENT[1600]: 0.153840975 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1601]: 0.153856650 - core[0].svTaskStartExec(4), plen 0: [tid: 12298716] -EVENT[1602]: 0.153892175 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461260, size: 18, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.153892175] HEAP: Allocated 18 bytes @ 0x3ffbb80c from task "alloc2" on core 0 by: +[0.153761375] LOG: I (449) example: Task[0x3ffb8a34]: allocated 24 bytes @ 0x3ffbafe0 +EVENT[1592]: 0.153778675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12290968, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1593]: 0.153791925 - core[0].svTaskStartReady(6), plen 0: [tid: 12293660] +EVENT[1594]: 0.153791925 - core[1].svTaskStartReady(6), plen 0: [tid: 12293660] +EVENT[1595]: 0.153808275 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1596]: 0.153819125 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[1597]: 0.153829950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1598]: 0.153843750 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[1599]: 0.153855475 - core[1].svTaskStartExec(4), plen 0: [tid: 12293660] +EVENT[1600]: 0.153866850 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1601]: 0.153878850 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12290968, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[1602]: 0.153890525 - core[0].svTaskStartExec(4), plen 0: [tid: 12296612] +EVENT[1603]: 0.153903125 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1604]: 0.153921750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1605]: 0.153933750 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459196, size: 18, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.153933750] HEAP: Allocated 18 bytes @ 0x3ffbaffc from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1603]: 0.153926725 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461284, size: 36, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.153926725] HEAP: Allocated 36 bytes @ 0x3ffbb824 from task "alloc2" on core 0 by: +EVENT[1606]: 0.153974925 - core[1].svPrint(26), plen 63: [msg: I (449) example: Task[0x3ffb961c]: free memory @ 0x3ffbafe0 +, lvl: 0, unused: 0] +[0.153974925] LOG: I (449) example: Task[0x3ffb961c]: free memory @ 0x3ffbafe0 +EVENT[1607]: 0.153991100 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459220, size: 36, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.153991100] HEAP: Allocated 36 bytes @ 0x3ffbb014 from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1604]: 0.153943625 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1605]: 0.153959625 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1606]: 0.154029950 - core[0].svPrint(26), plen 70: [msg: I (462) example: Task[0x3ffba9dc]: allocated 36 bytes @ 0x3ffbb824 -, lvl: 0, unused: 0] -[0.154029950] LOG: I (462) example: Task[0x3ffba9dc]: allocated 36 bytes @ 0x3ffbb824 -EVENT[1607]: 0.154047775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12299072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1608]: 0.154061125 - core[0].svTaskStartReady(6), plen 0: [tid: 12301764] -EVENT[1609]: 0.154061125 - core[1].svTaskStartReady(6), plen 0: [tid: 12301764] -EVENT[1610]: 0.154077450 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1611]: 0.154088300 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[1612]: 0.154099050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1613]: 0.154112775 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[1614]: 0.154123675 - core[1].svTaskStartExec(4), plen 0: [tid: 12301764] -EVENT[1615]: 0.154134500 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1616]: 0.154146350 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12299072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[1617]: 0.154157650 - core[0].svIdle(17), plen 0: [] -EVENT[1618]: 0.154169275 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1619]: 0.154185675 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1620]: 0.154249225 - core[1].svPrint(26), plen 63: [msg: I (462) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb824 -, lvl: 0, unused: 0] -[0.154249225] LOG: I (462) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb824 -EVENT[1621]: 0.154270425 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461284, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.154270425] HEAP: Freed bytes @ 0x3ffbb824 from task "free2" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +EVENT[1608]: 0.154005475 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073459168, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.154005475] HEAP: Freed bytes @ 0x3ffbafe0 from task "free1" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1622]: 0.154301425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1623]: 0.154312900 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1624]: 0.154329600 - core[1].svIdle(17), plen 0: [] -EVENT[1625]: 0.154669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1626]: 0.154682850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1627]: 0.154698425 - core[1].svIdle(17), plen 0: [] -EVENT[1628]: 0.154813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1629]: 0.154828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1630]: 0.154843825 - core[0].svIdle(17), plen 0: [] -EVENT[1631]: 0.155669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1632]: 0.155682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1633]: 0.155698075 - core[1].svIdle(17), plen 0: [] -EVENT[1634]: 0.155813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1635]: 0.155828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1636]: 0.155843775 - core[0].svIdle(17), plen 0: [] -EVENT[1637]: 0.156669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1638]: 0.156682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1639]: 0.156698325 - core[1].svIdle(17), plen 0: [] -EVENT[1640]: 0.156813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1641]: 0.156828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1642]: 0.156843775 - core[0].svIdle(17), plen 0: [] -EVENT[1643]: 0.157669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1644]: 0.157682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1645]: 0.157698100 - core[1].svIdle(17), plen 0: [] -EVENT[1646]: 0.157813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1647]: 0.157828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1648]: 0.157843775 - core[0].svIdle(17), plen 0: [] -EVENT[1649]: 0.158669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1650]: 0.158682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1651]: 0.158698075 - core[1].svIdle(17), plen 0: [] -EVENT[1652]: 0.158813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1653]: 0.158828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1654]: 0.158843825 - core[0].svIdle(17), plen 0: [] -EVENT[1655]: 0.159669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1656]: 0.159682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1657]: 0.159698075 - core[1].svIdle(17), plen 0: [] -EVENT[1658]: 0.159813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1659]: 0.159828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1660]: 0.159843775 - core[0].svIdle(17), plen 0: [] -EVENT[1661]: 0.160669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1662]: 0.160682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1663]: 0.160698325 - core[1].svIdle(17), plen 0: [] -EVENT[1664]: 0.160813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1665]: 0.160828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1666]: 0.160843775 - core[0].svIdle(17), plen 0: [] -EVENT[1667]: 0.161669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1668]: 0.161682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1669]: 0.161698100 - core[1].svIdle(17), plen 0: [] -EVENT[1670]: 0.161813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1671]: 0.161828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1672]: 0.161843775 - core[0].svIdle(17), plen 0: [] -EVENT[1673]: 0.162669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1674]: 0.162682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1675]: 0.162698075 - core[1].svIdle(17), plen 0: [] -EVENT[1676]: 0.162813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1677]: 0.162828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1678]: 0.162843825 - core[0].svIdle(17), plen 0: [] -EVENT[1679]: 0.163669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1680]: 0.163682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1681]: 0.163698075 - core[1].svIdle(17), plen 0: [] -EVENT[1682]: 0.163813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1683]: 0.163828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1684]: 0.163843775 - core[0].svIdle(17), plen 0: [] -EVENT[1685]: 0.164669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1686]: 0.164686550 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1687]: 0.164701825 - core[1].svIdle(17), plen 0: [] -EVENT[1688]: 0.164813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1689]: 0.164828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1690]: 0.164843775 - core[0].svIdle(17), plen 0: [] -EVENT[1691]: 0.165669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1692]: 0.165682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1693]: 0.165698075 - core[1].svIdle(17), plen 0: [] -EVENT[1694]: 0.165813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1695]: 0.165828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1696]: 0.165843825 - core[0].svIdle(17), plen 0: [] -EVENT[1697]: 0.166669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1698]: 0.166682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1699]: 0.166698075 - core[1].svIdle(17), plen 0: [] -EVENT[1700]: 0.166813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1701]: 0.166828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1702]: 0.166843775 - core[0].svIdle(17), plen 0: [] -EVENT[1703]: 0.167669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1704]: 0.167682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1705]: 0.167698325 - core[1].svIdle(17), plen 0: [] -EVENT[1706]: 0.167813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1707]: 0.167828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1708]: 0.167843775 - core[0].svIdle(17), plen 0: [] -EVENT[1709]: 0.168669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1710]: 0.168682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1711]: 0.168698100 - core[1].svIdle(17), plen 0: [] -EVENT[1712]: 0.168813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1713]: 0.168828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1714]: 0.168843775 - core[0].svIdle(17), plen 0: [] -EVENT[1715]: 0.169669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1716]: 0.169682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1717]: 0.169698075 - core[1].svIdle(17), plen 0: [] -EVENT[1718]: 0.169813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1719]: 0.169828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1720]: 0.169843825 - core[0].svIdle(17), plen 0: [] -EVENT[1721]: 0.170669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1722]: 0.170682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1723]: 0.170698075 - core[1].svIdle(17), plen 0: [] -EVENT[1724]: 0.170813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1725]: 0.170828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1726]: 0.170843775 - core[0].svIdle(17), plen 0: [] -EVENT[1727]: 0.171669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1728]: 0.171682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1729]: 0.171698325 - core[1].svIdle(17), plen 0: [] -EVENT[1730]: 0.171813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1731]: 0.171828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1732]: 0.171843775 - core[0].svIdle(17), plen 0: [] -EVENT[1733]: 0.172669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1734]: 0.172682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1735]: 0.172698100 - core[1].svIdle(17), plen 0: [] -EVENT[1736]: 0.172813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1737]: 0.172828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1738]: 0.172843775 - core[0].svIdle(17), plen 0: [] -EVENT[1739]: 0.173669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1740]: 0.173682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1741]: 0.173698075 - core[1].svIdle(17), plen 0: [] -EVENT[1742]: 0.173813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1743]: 0.173828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1744]: 0.173843825 - core[0].svIdle(17), plen 0: [] -EVENT[1745]: 0.174669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1746]: 0.174682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1747]: 0.174698075 - core[1].svIdle(17), plen 0: [] -EVENT[1748]: 0.174813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1749]: 0.174828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1750]: 0.174843775 - core[0].svIdle(17), plen 0: [] -EVENT[1751]: 0.175669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1752]: 0.175682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1753]: 0.175698325 - core[1].svIdle(17), plen 0: [] -EVENT[1754]: 0.175813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1755]: 0.175828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1756]: 0.175843775 - core[0].svIdle(17), plen 0: [] -EVENT[1757]: 0.176669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1758]: 0.176687200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1759]: 0.176702350 - core[1].svIdle(17), plen 0: [] -EVENT[1760]: 0.176813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1761]: 0.176828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1762]: 0.176843775 - core[0].svIdle(17), plen 0: [] -EVENT[1763]: 0.177669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1764]: 0.177682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1765]: 0.177698075 - core[1].svIdle(17), plen 0: [] -EVENT[1766]: 0.177813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1767]: 0.177828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1768]: 0.177843825 - core[0].svIdle(17), plen 0: [] -EVENT[1769]: 0.178669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1770]: 0.178682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1771]: 0.178698075 - core[1].svIdle(17), plen 0: [] -EVENT[1772]: 0.178813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1773]: 0.178828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1774]: 0.178843775 - core[0].svIdle(17), plen 0: [] -EVENT[1775]: 0.179669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1776]: 0.179682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1777]: 0.179698325 - core[1].svIdle(17), plen 0: [] -EVENT[1778]: 0.179813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1779]: 0.179828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1780]: 0.179843775 - core[0].svIdle(17), plen 0: [] -EVENT[1781]: 0.180669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1782]: 0.180682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1783]: 0.180698100 - core[1].svIdle(17), plen 0: [] -EVENT[1784]: 0.180813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1785]: 0.180828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1786]: 0.180843775 - core[0].svIdle(17), plen 0: [] -EVENT[1787]: 0.181669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1788]: 0.181682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1789]: 0.181698075 - core[1].svIdle(17), plen 0: [] -EVENT[1790]: 0.181813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1791]: 0.181828225 - core[0].svTaskStartReady(6), plen 0: [tid: 12286700] -EVENT[1792]: 0.181828225 - core[1].svTaskStartReady(6), plen 0: [tid: 12286700] -EVENT[1793]: 0.181840850 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1794]: 0.181856525 - core[0].svTaskStartExec(4), plen 0: [tid: 12286700] -EVENT[1795]: 0.181891850 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461284, size: 7, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.181891850] HEAP: Allocated 7 bytes @ 0x3ffbb824 from task "alloc0" on core 0 by: +EVENT[1609]: 0.154017925 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1610]: 0.154037825 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1611]: 0.154048750 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1612]: 0.154060300 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1613]: 0.154078250 - core[1].svIdle(17), plen 0: [] +EVENT[1614]: 0.154096250 - core[0].svPrint(26), plen 70: [msg: I (449) example: Task[0x3ffba1a4]: allocated 36 bytes @ 0x3ffbb014 +, lvl: 0, unused: 0] +[0.154096250] LOG: I (449) example: Task[0x3ffba1a4]: allocated 36 bytes @ 0x3ffbb014 +EVENT[1615]: 0.154109700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12296968, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1616]: 0.154126450 - core[0].svTaskStartReady(6), plen 0: [tid: 12299660] +EVENT[1617]: 0.154126450 - core[1].svTaskStartReady(6), plen 0: [tid: 12299660] +EVENT[1618]: 0.154142800 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1619]: 0.154153675 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[1620]: 0.154164475 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1621]: 0.154178300 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[1622]: 0.154189225 - core[1].svTaskStartExec(4), plen 0: [tid: 12299660] +EVENT[1623]: 0.154200075 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1624]: 0.154212025 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12296968, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[1625]: 0.154223250 - core[0].svIdle(17), plen 0: [] +EVENT[1626]: 0.154235050 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1627]: 0.154251325 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1628]: 0.154299100 - core[1].svPrint(26), plen 63: [msg: I (449) example: Task[0x3ffbad8c]: free memory @ 0x3ffbb014 +, lvl: 0, unused: 0] +[0.154299100] LOG: I (449) example: Task[0x3ffbad8c]: free memory @ 0x3ffbb014 +EVENT[1629]: 0.154320475 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073459220, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.154320475] HEAP: Freed bytes @ 0x3ffbb014 from task "free2" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1630]: 0.154347875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1631]: 0.154359300 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1632]: 0.154375850 - core[1].svIdle(17), plen 0: [] +EVENT[1633]: 0.154425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1634]: 0.154439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1635]: 0.154455150 - core[1].svIdle(17), plen 0: [] +EVENT[1636]: 0.154546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1637]: 0.154562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1638]: 0.154577125 - core[0].svIdle(17), plen 0: [] +EVENT[1639]: 0.155425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1640]: 0.155439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1641]: 0.155454550 - core[1].svIdle(17), plen 0: [] +EVENT[1642]: 0.155546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1643]: 0.155562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1644]: 0.155577425 - core[0].svIdle(17), plen 0: [] +EVENT[1645]: 0.156425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1646]: 0.156439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1647]: 0.156454550 - core[1].svIdle(17), plen 0: [] +EVENT[1648]: 0.156546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1649]: 0.156565675 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1650]: 0.156580875 - core[0].svIdle(17), plen 0: [] +EVENT[1651]: 0.157425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1652]: 0.157439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1653]: 0.157454550 - core[1].svIdle(17), plen 0: [] +EVENT[1654]: 0.157546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1655]: 0.157562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1656]: 0.157577125 - core[0].svIdle(17), plen 0: [] +EVENT[1657]: 0.158425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1658]: 0.158439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1659]: 0.158454675 - core[1].svIdle(17), plen 0: [] +EVENT[1660]: 0.158546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1661]: 0.158562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1662]: 0.158577150 - core[0].svIdle(17), plen 0: [] +EVENT[1663]: 0.159425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1664]: 0.159439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1665]: 0.159454600 - core[1].svIdle(17), plen 0: [] +EVENT[1666]: 0.159546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1667]: 0.159562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1668]: 0.159577125 - core[0].svIdle(17), plen 0: [] +EVENT[1669]: 0.160425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1670]: 0.160439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1671]: 0.160454550 - core[1].svIdle(17), plen 0: [] +EVENT[1672]: 0.160546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1673]: 0.160562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1674]: 0.160577425 - core[0].svIdle(17), plen 0: [] +EVENT[1675]: 0.161425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1676]: 0.161439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1677]: 0.161454550 - core[1].svIdle(17), plen 0: [] +EVENT[1678]: 0.161546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1679]: 0.161562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1680]: 0.161577125 - core[0].svIdle(17), plen 0: [] +EVENT[1681]: 0.162425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1682]: 0.162439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1683]: 0.162454675 - core[1].svIdle(17), plen 0: [] +EVENT[1684]: 0.162546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1685]: 0.162562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1686]: 0.162577150 - core[0].svIdle(17), plen 0: [] +EVENT[1687]: 0.163425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1688]: 0.163439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1689]: 0.163454600 - core[1].svIdle(17), plen 0: [] +EVENT[1690]: 0.163546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1691]: 0.163562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1692]: 0.163577125 - core[0].svIdle(17), plen 0: [] +EVENT[1693]: 0.164425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1694]: 0.164439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1695]: 0.164454550 - core[1].svIdle(17), plen 0: [] +EVENT[1696]: 0.164546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1697]: 0.164562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1698]: 0.164577425 - core[0].svIdle(17), plen 0: [] +EVENT[1699]: 0.165425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1700]: 0.165439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1701]: 0.165454550 - core[1].svIdle(17), plen 0: [] +EVENT[1702]: 0.165546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1703]: 0.165562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1704]: 0.165577125 - core[0].svIdle(17), plen 0: [] +EVENT[1705]: 0.166425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1706]: 0.166439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1707]: 0.166454675 - core[1].svIdle(17), plen 0: [] +EVENT[1708]: 0.166546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1709]: 0.166562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1710]: 0.166577150 - core[0].svIdle(17), plen 0: [] +EVENT[1711]: 0.167425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1712]: 0.167439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1713]: 0.167454600 - core[1].svIdle(17), plen 0: [] +EVENT[1714]: 0.167546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1715]: 0.167562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1716]: 0.167577125 - core[0].svIdle(17), plen 0: [] +EVENT[1717]: 0.168425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1718]: 0.168439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1719]: 0.168454550 - core[1].svIdle(17), plen 0: [] +EVENT[1720]: 0.168546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1721]: 0.168566325 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1722]: 0.168581550 - core[0].svIdle(17), plen 0: [] +EVENT[1723]: 0.169425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1724]: 0.169439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1725]: 0.169454550 - core[1].svIdle(17), plen 0: [] +EVENT[1726]: 0.169546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1727]: 0.169562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1728]: 0.169577125 - core[0].svIdle(17), plen 0: [] +EVENT[1729]: 0.170425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1730]: 0.170439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1731]: 0.170454675 - core[1].svIdle(17), plen 0: [] +EVENT[1732]: 0.170546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1733]: 0.170562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1734]: 0.170577150 - core[0].svIdle(17), plen 0: [] +EVENT[1735]: 0.171425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1736]: 0.171439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1737]: 0.171454600 - core[1].svIdle(17), plen 0: [] +EVENT[1738]: 0.171546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1739]: 0.171562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1740]: 0.171577125 - core[0].svIdle(17), plen 0: [] +EVENT[1741]: 0.172425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1742]: 0.172439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1743]: 0.172454550 - core[1].svIdle(17), plen 0: [] +EVENT[1744]: 0.172546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1745]: 0.172562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1746]: 0.172577425 - core[0].svIdle(17), plen 0: [] +EVENT[1747]: 0.173425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1748]: 0.173439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1749]: 0.173454550 - core[1].svIdle(17), plen 0: [] +EVENT[1750]: 0.173546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1751]: 0.173562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1752]: 0.173577125 - core[0].svIdle(17), plen 0: [] +EVENT[1753]: 0.174425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1754]: 0.174439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1755]: 0.174454675 - core[1].svIdle(17), plen 0: [] +EVENT[1756]: 0.174546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1757]: 0.174562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1758]: 0.174577150 - core[0].svIdle(17), plen 0: [] +EVENT[1759]: 0.175425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1760]: 0.175439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1761]: 0.175454600 - core[1].svIdle(17), plen 0: [] +EVENT[1762]: 0.175546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1763]: 0.175562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1764]: 0.175577125 - core[0].svIdle(17), plen 0: [] +EVENT[1765]: 0.176425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1766]: 0.176439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1767]: 0.176454550 - core[1].svIdle(17), plen 0: [] +EVENT[1768]: 0.176546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1769]: 0.176562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1770]: 0.176577425 - core[0].svIdle(17), plen 0: [] +EVENT[1771]: 0.177425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1772]: 0.177439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1773]: 0.177454550 - core[1].svIdle(17), plen 0: [] +EVENT[1774]: 0.177546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1775]: 0.177562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1776]: 0.177577125 - core[0].svIdle(17), plen 0: [] +EVENT[1777]: 0.178425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1778]: 0.178439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1779]: 0.178454675 - core[1].svIdle(17), plen 0: [] +EVENT[1780]: 0.178546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1781]: 0.178562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1782]: 0.178577150 - core[0].svIdle(17), plen 0: [] +EVENT[1783]: 0.179425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1784]: 0.179439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1785]: 0.179454600 - core[1].svIdle(17), plen 0: [] +EVENT[1786]: 0.179546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1787]: 0.179562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1788]: 0.179577125 - core[0].svIdle(17), plen 0: [] +EVENT[1789]: 0.180425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1790]: 0.180439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1791]: 0.180454550 - core[1].svIdle(17), plen 0: [] +EVENT[1792]: 0.180546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1793]: 0.180566325 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1794]: 0.180581550 - core[0].svIdle(17), plen 0: [] +EVENT[1795]: 0.181425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1796]: 0.181439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1797]: 0.181454550 - core[1].svIdle(17), plen 0: [] +EVENT[1798]: 0.181546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1799]: 0.181562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1800]: 0.181577125 - core[0].svIdle(17), plen 0: [] +EVENT[1801]: 0.182425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1802]: 0.182439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1803]: 0.182454675 - core[1].svIdle(17), plen 0: [] +EVENT[1804]: 0.182546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1805]: 0.182561675 - core[0].svTaskStartReady(6), plen 0: [tid: 12284596] +EVENT[1806]: 0.182561675 - core[1].svTaskStartReady(6), plen 0: [tid: 12284596] +EVENT[1807]: 0.182574250 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1808]: 0.182589925 - core[0].svTaskStartExec(4), plen 0: [tid: 12284596] +EVENT[1809]: 0.182624925 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459168, size: 7, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.182624925] HEAP: Allocated 7 bytes @ 0x3ffbafe0 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1796]: 0.181926275 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461300, size: 14, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.181926275] HEAP: Allocated 14 bytes @ 0x3ffbb834 from task "alloc0" on core 0 by: +EVENT[1810]: 0.182660425 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459220, size: 14, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.182660425] HEAP: Allocated 14 bytes @ 0x3ffbb014 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1797]: 0.181943300 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1798]: 0.181959300 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1799]: 0.182029725 - core[0].svPrint(26), plen 70: [msg: I (490) example: Task[0x3ffb7aec]: allocated 14 bytes @ 0x3ffbb834 +EVENT[1811]: 0.182677350 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1812]: 0.182693275 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1813]: 0.182748050 - core[0].svPrint(26), plen 70: [msg: I (478) example: Task[0x3ffb72b4]: allocated 14 bytes @ 0x3ffbb014 , lvl: 0, unused: 0] -[0.182029725] LOG: I (490) example: Task[0x3ffb7aec]: allocated 14 bytes @ 0x3ffbb834 -EVENT[1800]: 0.182047475 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12287056, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1801]: 0.182060700 - core[0].svTaskStartReady(6), plen 0: [tid: 12289748] -EVENT[1802]: 0.182060700 - core[1].svTaskStartReady(6), plen 0: [tid: 12289748] -EVENT[1803]: 0.182076925 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1804]: 0.182087800 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[1805]: 0.182098550 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1806]: 0.182112400 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[1807]: 0.182123275 - core[1].svTaskStartExec(4), plen 0: [tid: 12289748] -EVENT[1808]: 0.182134150 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1809]: 0.182146025 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12287056, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[1810]: 0.182156325 - core[0].svIdle(17), plen 0: [] -EVENT[1811]: 0.182167850 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1812]: 0.182184150 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1813]: 0.182247700 - core[1].svPrint(26), plen 63: [msg: I (490) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb834 +[0.182748050] LOG: I (478) example: Task[0x3ffb72b4]: allocated 14 bytes @ 0x3ffbb014 +EVENT[1814]: 0.182761550 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12284952, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1815]: 0.182779025 - core[0].svTaskStartReady(6), plen 0: [tid: 12287644] +EVENT[1816]: 0.182779025 - core[1].svTaskStartReady(6), plen 0: [tid: 12287644] +EVENT[1817]: 0.182795275 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1818]: 0.182806100 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[1819]: 0.182816975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1820]: 0.182830800 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[1821]: 0.182841650 - core[1].svTaskStartExec(4), plen 0: [tid: 12287644] +EVENT[1822]: 0.182852500 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1823]: 0.182864500 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12284952, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[1824]: 0.182874800 - core[0].svIdle(17), plen 0: [] +EVENT[1825]: 0.182886425 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1826]: 0.182902750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1827]: 0.182950525 - core[1].svPrint(26), plen 63: [msg: I (478) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbb014 , lvl: 0, unused: 0] -[0.182247700] LOG: I (490) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb834 -EVENT[1814]: 0.182268900 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461300, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.182268900] HEAP: Freed bytes @ 0x3ffbb834 from task "free0" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +[0.182950525] LOG: I (478) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbb014 +EVENT[1828]: 0.182971900 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073459220, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.182971900] HEAP: Freed bytes @ 0x3ffbb014 from task "free0" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1815]: 0.182300050 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1816]: 0.182311525 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1817]: 0.182328225 - core[1].svIdle(17), plen 0: [] -EVENT[1818]: 0.182669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1819]: 0.182682850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1820]: 0.182698425 - core[1].svIdle(17), plen 0: [] -EVENT[1821]: 0.182813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1822]: 0.182828225 - core[0].svTaskStartReady(6), plen 0: [tid: 12292716] -EVENT[1823]: 0.182828225 - core[1].svTaskStartReady(6), plen 0: [tid: 12292716] -EVENT[1824]: 0.182840850 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1825]: 0.182856525 - core[0].svTaskStartExec(4), plen 0: [tid: 12292716] -EVENT[1826]: 0.182891700 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461300, size: 14, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.182891700] HEAP: Allocated 14 bytes @ 0x3ffbb834 from task "alloc1" on core 0 by: +EVENT[1829]: 0.182999325 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1830]: 0.183010850 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1831]: 0.183027425 - core[1].svIdle(17), plen 0: [] +EVENT[1832]: 0.183425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1833]: 0.183439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1834]: 0.183455150 - core[1].svIdle(17), plen 0: [] +EVENT[1835]: 0.183546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1836]: 0.183561650 - core[0].svTaskStartReady(6), plen 0: [tid: 12290612] +EVENT[1837]: 0.183561650 - core[1].svTaskStartReady(6), plen 0: [tid: 12290612] +EVENT[1838]: 0.183573550 - core[0].svTaskStartReady(6), plen 0: [tid: 12296612] +EVENT[1839]: 0.183573550 - core[1].svTaskStartReady(6), plen 0: [tid: 12296612] +EVENT[1840]: 0.183586100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1841]: 0.183601775 - core[0].svTaskStartExec(4), plen 0: [tid: 12290612] +EVENT[1842]: 0.183638150 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459220, size: 14, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.183638150] HEAP: Allocated 14 bytes @ 0x3ffbb014 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1827]: 0.182926225 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461320, size: 28, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.182926225] HEAP: Allocated 28 bytes @ 0x3ffbb848 from task "alloc1" on core 0 by: +EVENT[1843]: 0.183677725 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459240, size: 28, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.183677725] HEAP: Allocated 28 bytes @ 0x3ffbb028 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1828]: 0.182943250 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1829]: 0.182959250 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1830]: 0.183029675 - core[0].svPrint(26), plen 70: [msg: I (491) example: Task[0x3ffb926c]: allocated 28 bytes @ 0x3ffbb848 +EVENT[1844]: 0.183694650 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1845]: 0.183710675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1846]: 0.183765400 - core[0].svPrint(26), plen 70: [msg: I (479) example: Task[0x3ffb8a34]: allocated 28 bytes @ 0x3ffbb028 , lvl: 0, unused: 0] -[0.183029675] LOG: I (491) example: Task[0x3ffb926c]: allocated 28 bytes @ 0x3ffbb848 -EVENT[1831]: 0.183043225 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12293072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1832]: 0.183060650 - core[0].svTaskStartReady(6), plen 0: [tid: 12295764] -EVENT[1833]: 0.183060650 - core[1].svTaskStartReady(6), plen 0: [tid: 12295764] -EVENT[1834]: 0.183076975 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1835]: 0.183087825 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[1836]: 0.183098575 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1837]: 0.183112300 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[1838]: 0.183123150 - core[1].svTaskStartExec(4), plen 0: [tid: 12295764] -EVENT[1839]: 0.183133975 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1840]: 0.183145825 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12293072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[1841]: 0.183156100 - core[0].svIdle(17), plen 0: [] -EVENT[1842]: 0.183167575 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1843]: 0.183183875 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1844]: 0.183247325 - core[1].svPrint(26), plen 63: [msg: I (491) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb848 -, lvl: 0, unused: 0] -[0.183247325] LOG: I (491) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb848 -EVENT[1845]: 0.183268600 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461320, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.183268600] HEAP: Freed bytes @ 0x3ffbb848 from task "free1" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 -/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 -/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 - -EVENT[1846]: 0.183295600 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1847]: 0.183307025 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1848]: 0.183323600 - core[1].svIdle(17), plen 0: [] -EVENT[1849]: 0.183669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1850]: 0.183682950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1851]: 0.183698525 - core[1].svIdle(17), plen 0: [] -EVENT[1852]: 0.183813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1853]: 0.183828325 - core[0].svTaskStartReady(6), plen 0: [tid: 12298716] -EVENT[1854]: 0.183828325 - core[1].svTaskStartReady(6), plen 0: [tid: 12298716] -EVENT[1855]: 0.183840975 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1856]: 0.183856650 - core[0].svTaskStartExec(4), plen 0: [tid: 12298716] -EVENT[1857]: 0.183892175 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461320, size: 21, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.183892175] HEAP: Allocated 21 bytes @ 0x3ffbb848 from task "alloc2" on core 0 by: +[0.183765400] LOG: I (479) example: Task[0x3ffb8a34]: allocated 28 bytes @ 0x3ffbb028 +EVENT[1847]: 0.183778825 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12290968, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1848]: 0.183792075 - core[0].svTaskStartReady(6), plen 0: [tid: 12293660] +EVENT[1849]: 0.183792075 - core[1].svTaskStartReady(6), plen 0: [tid: 12293660] +EVENT[1850]: 0.183808675 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1851]: 0.183819450 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[1852]: 0.183830375 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1853]: 0.183844225 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[1854]: 0.183856150 - core[1].svTaskStartExec(4), plen 0: [tid: 12293660] +EVENT[1855]: 0.183867325 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1856]: 0.183879250 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12290968, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[1857]: 0.183891000 - core[0].svTaskStartExec(4), plen 0: [tid: 12296612] +EVENT[1858]: 0.183903625 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1859]: 0.183926050 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1860]: 0.183937500 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459272, size: 21, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.183937500] HEAP: Allocated 21 bytes @ 0x3ffbb048 from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1858]: 0.183930850 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461348, size: 42, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.183930850] HEAP: Allocated 42 bytes @ 0x3ffbb864 from task "alloc2" on core 0 by: +EVENT[1861]: 0.183978650 - core[1].svPrint(26), plen 63: [msg: I (479) example: Task[0x3ffb961c]: free memory @ 0x3ffbb028 +, lvl: 0, unused: 0] +[0.183978650] LOG: I (479) example: Task[0x3ffb961c]: free memory @ 0x3ffbb028 +EVENT[1862]: 0.183990225 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459300, size: 42, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.183990225] HEAP: Allocated 42 bytes @ 0x3ffbb064 from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1859]: 0.183947750 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1860]: 0.183963725 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1861]: 0.184034075 - core[0].svPrint(26), plen 70: [msg: I (492) example: Task[0x3ffba9dc]: allocated 42 bytes @ 0x3ffbb864 -, lvl: 0, unused: 0] -[0.184034075] LOG: I (492) example: Task[0x3ffba9dc]: allocated 42 bytes @ 0x3ffbb864 -EVENT[1862]: 0.184047800 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12299072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1863]: 0.184061025 - core[0].svTaskStartReady(6), plen 0: [tid: 12301764] -EVENT[1864]: 0.184061025 - core[1].svTaskStartReady(6), plen 0: [tid: 12301764] -EVENT[1865]: 0.184077325 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1866]: 0.184088175 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[1867]: 0.184098950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1868]: 0.184112675 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[1869]: 0.184125000 - core[1].svTaskStartExec(4), plen 0: [tid: 12301764] -EVENT[1870]: 0.184135825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1871]: 0.184147700 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12299072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[1872]: 0.184158975 - core[0].svIdle(17), plen 0: [] -EVENT[1873]: 0.184170625 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1874]: 0.184190325 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1875]: 0.184253875 - core[1].svPrint(26), plen 63: [msg: I (492) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb864 -, lvl: 0, unused: 0] -[0.184253875] LOG: I (492) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb864 -EVENT[1876]: 0.184275075 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461348, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.184275075] HEAP: Freed bytes @ 0x3ffbb864 from task "free2" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +EVENT[1863]: 0.184004450 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073459240, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.184004450] HEAP: Freed bytes @ 0x3ffbb028 from task "free1" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1877]: 0.184301975 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1878]: 0.184313400 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1879]: 0.184329975 - core[1].svIdle(17), plen 0: [] -EVENT[1880]: 0.184669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1881]: 0.184682950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1882]: 0.184698525 - core[1].svIdle(17), plen 0: [] -EVENT[1883]: 0.184813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1884]: 0.184828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1885]: 0.184843775 - core[0].svIdle(17), plen 0: [] -EVENT[1886]: 0.185669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1887]: 0.185682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1888]: 0.185698325 - core[1].svIdle(17), plen 0: [] -EVENT[1889]: 0.185813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1890]: 0.185828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1891]: 0.185843775 - core[0].svIdle(17), plen 0: [] -EVENT[1892]: 0.186669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1893]: 0.186682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1894]: 0.186698100 - core[1].svIdle(17), plen 0: [] -EVENT[1895]: 0.186813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1896]: 0.186828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1897]: 0.186843775 - core[0].svIdle(17), plen 0: [] -EVENT[1898]: 0.187669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1899]: 0.187682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1900]: 0.187698075 - core[1].svIdle(17), plen 0: [] -EVENT[1901]: 0.187813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1902]: 0.187828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1903]: 0.187843825 - core[0].svIdle(17), plen 0: [] -EVENT[1904]: 0.188669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1905]: 0.188682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1906]: 0.188698075 - core[1].svIdle(17), plen 0: [] -EVENT[1907]: 0.188813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1908]: 0.188828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1909]: 0.188843775 - core[0].svIdle(17), plen 0: [] -EVENT[1910]: 0.189669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1911]: 0.189682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1912]: 0.189698325 - core[1].svIdle(17), plen 0: [] -EVENT[1913]: 0.189813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1914]: 0.189828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1915]: 0.189848100 - core[0].svIdle(17), plen 0: [] -EVENT[1916]: 0.190669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1917]: 0.190682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1918]: 0.190698075 - core[1].svIdle(17), plen 0: [] -EVENT[1919]: 0.190813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1920]: 0.190828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1921]: 0.190843775 - core[0].svIdle(17), plen 0: [] -EVENT[1922]: 0.191669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1923]: 0.191682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1924]: 0.191698325 - core[1].svIdle(17), plen 0: [] -EVENT[1925]: 0.191813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1926]: 0.191828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1927]: 0.191843775 - core[0].svIdle(17), plen 0: [] -EVENT[1928]: 0.192669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1929]: 0.192682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1930]: 0.192698100 - core[1].svIdle(17), plen 0: [] -EVENT[1931]: 0.192813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1932]: 0.192828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1933]: 0.192843775 - core[0].svIdle(17), plen 0: [] -EVENT[1934]: 0.193669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1935]: 0.193682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1936]: 0.193698075 - core[1].svIdle(17), plen 0: [] -EVENT[1937]: 0.193813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1938]: 0.193828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1939]: 0.193843825 - core[0].svIdle(17), plen 0: [] -EVENT[1940]: 0.194669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1941]: 0.194682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1942]: 0.194698075 - core[1].svIdle(17), plen 0: [] -EVENT[1943]: 0.194813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1944]: 0.194828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1945]: 0.194843775 - core[0].svIdle(17), plen 0: [] -EVENT[1946]: 0.195669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1947]: 0.195682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1948]: 0.195698325 - core[1].svIdle(17), plen 0: [] -EVENT[1949]: 0.195813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1950]: 0.195828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1951]: 0.195843775 - core[0].svIdle(17), plen 0: [] -EVENT[1952]: 0.196669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1953]: 0.196682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1954]: 0.196698100 - core[1].svIdle(17), plen 0: [] -EVENT[1955]: 0.196813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1956]: 0.196828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1957]: 0.196843775 - core[0].svIdle(17), plen 0: [] -EVENT[1958]: 0.197669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1959]: 0.197682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1960]: 0.197698075 - core[1].svIdle(17), plen 0: [] -EVENT[1961]: 0.197813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1962]: 0.197828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1963]: 0.197843825 - core[0].svIdle(17), plen 0: [] -EVENT[1964]: 0.198669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1965]: 0.198682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1966]: 0.198698075 - core[1].svIdle(17), plen 0: [] -EVENT[1967]: 0.198813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1968]: 0.198828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1969]: 0.198843775 - core[0].svIdle(17), plen 0: [] -EVENT[1970]: 0.199669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1971]: 0.199682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1972]: 0.199698325 - core[1].svIdle(17), plen 0: [] -EVENT[1973]: 0.199813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1974]: 0.199828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1975]: 0.199843775 - core[0].svIdle(17), plen 0: [] -EVENT[1976]: 0.200669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1977]: 0.200682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1978]: 0.200698100 - core[1].svIdle(17), plen 0: [] -EVENT[1979]: 0.200813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1980]: 0.200828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1981]: 0.200843775 - core[0].svIdle(17), plen 0: [] -EVENT[1982]: 0.201669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1983]: 0.201682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1984]: 0.201698075 - core[1].svIdle(17), plen 0: [] -EVENT[1985]: 0.201813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1986]: 0.201828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1987]: 0.201843825 - core[0].svIdle(17), plen 0: [] -EVENT[1988]: 0.202669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1989]: 0.202682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1990]: 0.202698325 - core[1].svIdle(17), plen 0: [] -EVENT[1991]: 0.202813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1992]: 0.202828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1993]: 0.202843775 - core[0].svIdle(17), plen 0: [] -EVENT[1994]: 0.203669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1995]: 0.203682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1996]: 0.203698100 - core[1].svIdle(17), plen 0: [] -EVENT[1997]: 0.203813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1998]: 0.203828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1999]: 0.203843775 - core[0].svIdle(17), plen 0: [] -EVENT[2000]: 0.204669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2001]: 0.204682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2002]: 0.204698075 - core[1].svIdle(17), plen 0: [] -EVENT[2003]: 0.204813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2004]: 0.204828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2005]: 0.204843825 - core[0].svIdle(17), plen 0: [] -EVENT[2006]: 0.205669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2007]: 0.205682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2008]: 0.205698075 - core[1].svIdle(17), plen 0: [] -EVENT[2009]: 0.205813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2010]: 0.205828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2011]: 0.205843775 - core[0].svIdle(17), plen 0: [] -EVENT[2012]: 0.206669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2013]: 0.206682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2014]: 0.206698325 - core[1].svIdle(17), plen 0: [] -EVENT[2015]: 0.206813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2016]: 0.206828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2017]: 0.206843775 - core[0].svIdle(17), plen 0: [] -EVENT[2018]: 0.207669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2019]: 0.207682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2020]: 0.207698100 - core[1].svIdle(17), plen 0: [] -EVENT[2021]: 0.207813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2022]: 0.207828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2023]: 0.207843775 - core[0].svIdle(17), plen 0: [] -EVENT[2024]: 0.208669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2025]: 0.208682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2026]: 0.208698075 - core[1].svIdle(17), plen 0: [] -EVENT[2027]: 0.208813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2028]: 0.208828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2029]: 0.208843825 - core[0].svIdle(17), plen 0: [] -EVENT[2030]: 0.209669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2031]: 0.209682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2032]: 0.209698075 - core[1].svIdle(17), plen 0: [] -EVENT[2033]: 0.209813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2034]: 0.209828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2035]: 0.209843775 - core[0].svIdle(17), plen 0: [] -EVENT[2036]: 0.210669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2037]: 0.210682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2038]: 0.210698325 - core[1].svIdle(17), plen 0: [] -EVENT[2039]: 0.210813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2040]: 0.210828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2041]: 0.210843775 - core[0].svIdle(17), plen 0: [] -EVENT[2042]: 0.211669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2043]: 0.211682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2044]: 0.211698100 - core[1].svIdle(17), plen 0: [] -EVENT[2045]: 0.211813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2046]: 0.211828325 - core[0].svTaskStartReady(6), plen 0: [tid: 12286700] -EVENT[2047]: 0.211828325 - core[1].svTaskStartReady(6), plen 0: [tid: 12286700] -EVENT[2048]: 0.211840975 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2049]: 0.211856650 - core[0].svTaskStartExec(4), plen 0: [tid: 12286700] -EVENT[2050]: 0.211892175 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461348, size: 8, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.211892175] HEAP: Allocated 8 bytes @ 0x3ffbb864 from task "alloc0" on core 0 by: +EVENT[1864]: 0.184017025 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1865]: 0.184036875 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1866]: 0.184047800 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1867]: 0.184059325 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1868]: 0.184077275 - core[1].svIdle(17), plen 0: [] +EVENT[1869]: 0.184095050 - core[0].svPrint(26), plen 70: [msg: I (479) example: Task[0x3ffba1a4]: allocated 42 bytes @ 0x3ffbb064 +, lvl: 0, unused: 0] +[0.184095050] LOG: I (479) example: Task[0x3ffba1a4]: allocated 42 bytes @ 0x3ffbb064 +EVENT[1870]: 0.184112650 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12296968, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1871]: 0.184126025 - core[0].svTaskStartReady(6), plen 0: [tid: 12299660] +EVENT[1872]: 0.184126025 - core[1].svTaskStartReady(6), plen 0: [tid: 12299660] +EVENT[1873]: 0.184142375 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1874]: 0.184153225 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[1875]: 0.184164050 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1876]: 0.184177850 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[1877]: 0.184188600 - core[1].svTaskStartExec(4), plen 0: [tid: 12299660] +EVENT[1878]: 0.184199375 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1879]: 0.184211475 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12296968, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[1880]: 0.184222675 - core[0].svIdle(17), plen 0: [] +EVENT[1881]: 0.184235025 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1882]: 0.184251250 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1883]: 0.184299250 - core[1].svPrint(26), plen 63: [msg: I (479) example: Task[0x3ffbad8c]: free memory @ 0x3ffbb064 +, lvl: 0, unused: 0] +[0.184299250] LOG: I (479) example: Task[0x3ffbad8c]: free memory @ 0x3ffbb064 +EVENT[1884]: 0.184320675 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073459300, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.184320675] HEAP: Freed bytes @ 0x3ffbb064 from task "free2" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1885]: 0.184352100 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1886]: 0.184363550 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1887]: 0.184380250 - core[1].svIdle(17), plen 0: [] +EVENT[1888]: 0.184425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1889]: 0.184439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1890]: 0.184455150 - core[1].svIdle(17), plen 0: [] +EVENT[1891]: 0.184546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1892]: 0.184562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1893]: 0.184577425 - core[0].svIdle(17), plen 0: [] +EVENT[1894]: 0.185425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1895]: 0.185439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1896]: 0.185454550 - core[1].svIdle(17), plen 0: [] +EVENT[1897]: 0.185546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1898]: 0.185562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1899]: 0.185577125 - core[0].svIdle(17), plen 0: [] +EVENT[1900]: 0.186425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1901]: 0.186439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1902]: 0.186454675 - core[1].svIdle(17), plen 0: [] +EVENT[1903]: 0.186546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1904]: 0.186562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1905]: 0.186577150 - core[0].svIdle(17), plen 0: [] +EVENT[1906]: 0.187425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1907]: 0.187439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1908]: 0.187454600 - core[1].svIdle(17), plen 0: [] +EVENT[1909]: 0.187546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1910]: 0.187562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1911]: 0.187577125 - core[0].svIdle(17), plen 0: [] +EVENT[1912]: 0.188425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1913]: 0.188439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1914]: 0.188454550 - core[1].svIdle(17), plen 0: [] +EVENT[1915]: 0.188546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1916]: 0.188562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1917]: 0.188577425 - core[0].svIdle(17), plen 0: [] +EVENT[1918]: 0.189425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1919]: 0.189439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1920]: 0.189454550 - core[1].svIdle(17), plen 0: [] +EVENT[1921]: 0.189546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1922]: 0.189562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1923]: 0.189577125 - core[0].svIdle(17), plen 0: [] +EVENT[1924]: 0.190425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1925]: 0.190439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1926]: 0.190454675 - core[1].svIdle(17), plen 0: [] +EVENT[1927]: 0.190546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1928]: 0.190562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1929]: 0.190577150 - core[0].svIdle(17), plen 0: [] +EVENT[1930]: 0.191425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1931]: 0.191439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1932]: 0.191454600 - core[1].svIdle(17), plen 0: [] +EVENT[1933]: 0.191546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1934]: 0.191562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1935]: 0.191577125 - core[0].svIdle(17), plen 0: [] +EVENT[1936]: 0.192425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1937]: 0.192439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1938]: 0.192454550 - core[1].svIdle(17), plen 0: [] +EVENT[1939]: 0.192546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1940]: 0.192562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1941]: 0.192577425 - core[0].svIdle(17), plen 0: [] +EVENT[1942]: 0.193425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1943]: 0.193439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1944]: 0.193454550 - core[1].svIdle(17), plen 0: [] +EVENT[1945]: 0.193546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1946]: 0.193562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1947]: 0.193577125 - core[0].svIdle(17), plen 0: [] +EVENT[1948]: 0.194425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1949]: 0.194443650 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1950]: 0.194458800 - core[1].svIdle(17), plen 0: [] +EVENT[1951]: 0.194546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1952]: 0.194562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1953]: 0.194577125 - core[0].svIdle(17), plen 0: [] +EVENT[1954]: 0.195425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1955]: 0.195439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1956]: 0.195454550 - core[1].svIdle(17), plen 0: [] +EVENT[1957]: 0.195546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1958]: 0.195562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1959]: 0.195577425 - core[0].svIdle(17), plen 0: [] +EVENT[1960]: 0.196425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1961]: 0.196439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1962]: 0.196454550 - core[1].svIdle(17), plen 0: [] +EVENT[1963]: 0.196546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1964]: 0.196562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1965]: 0.196577125 - core[0].svIdle(17), plen 0: [] +EVENT[1966]: 0.197425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1967]: 0.197439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1968]: 0.197454675 - core[1].svIdle(17), plen 0: [] +EVENT[1969]: 0.197546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1970]: 0.197562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1971]: 0.197577150 - core[0].svIdle(17), plen 0: [] +EVENT[1972]: 0.198425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1973]: 0.198439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1974]: 0.198454600 - core[1].svIdle(17), plen 0: [] +EVENT[1975]: 0.198546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1976]: 0.198562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1977]: 0.198577125 - core[0].svIdle(17), plen 0: [] +EVENT[1978]: 0.199425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1979]: 0.199439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1980]: 0.199454550 - core[1].svIdle(17), plen 0: [] +EVENT[1981]: 0.199546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1982]: 0.199562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1983]: 0.199577425 - core[0].svIdle(17), plen 0: [] +EVENT[1984]: 0.200425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1985]: 0.200439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1986]: 0.200454550 - core[1].svIdle(17), plen 0: [] +EVENT[1987]: 0.200546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1988]: 0.200562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1989]: 0.200577125 - core[0].svIdle(17), plen 0: [] +EVENT[1990]: 0.201425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1991]: 0.201439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1992]: 0.201454675 - core[1].svIdle(17), plen 0: [] +EVENT[1993]: 0.201546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1994]: 0.201562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1995]: 0.201577150 - core[0].svIdle(17), plen 0: [] +EVENT[1996]: 0.202425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1997]: 0.202439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1998]: 0.202454600 - core[1].svIdle(17), plen 0: [] +EVENT[1999]: 0.202546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2000]: 0.202562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2001]: 0.202577125 - core[0].svIdle(17), plen 0: [] +EVENT[2002]: 0.203425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2003]: 0.203439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2004]: 0.203454550 - core[1].svIdle(17), plen 0: [] +EVENT[2005]: 0.203546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2006]: 0.203562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2007]: 0.203577425 - core[0].svIdle(17), plen 0: [] +EVENT[2008]: 0.204425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2009]: 0.204439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2010]: 0.204454550 - core[1].svIdle(17), plen 0: [] +EVENT[2011]: 0.204546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2012]: 0.204562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2013]: 0.204577125 - core[0].svIdle(17), plen 0: [] +EVENT[2014]: 0.205425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2015]: 0.205439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2016]: 0.205454675 - core[1].svIdle(17), plen 0: [] +EVENT[2017]: 0.205546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2018]: 0.205562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2019]: 0.205577150 - core[0].svIdle(17), plen 0: [] +EVENT[2020]: 0.206425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2021]: 0.206443675 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2022]: 0.206458925 - core[1].svIdle(17), plen 0: [] +EVENT[2023]: 0.206546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2024]: 0.206562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2025]: 0.206577125 - core[0].svIdle(17), plen 0: [] +EVENT[2026]: 0.207425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2027]: 0.207439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2028]: 0.207454550 - core[1].svIdle(17), plen 0: [] +EVENT[2029]: 0.207546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2030]: 0.207562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2031]: 0.207577425 - core[0].svIdle(17), plen 0: [] +EVENT[2032]: 0.208425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2033]: 0.208439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2034]: 0.208454550 - core[1].svIdle(17), plen 0: [] +EVENT[2035]: 0.208546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2036]: 0.208562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2037]: 0.208577125 - core[0].svIdle(17), plen 0: [] +EVENT[2038]: 0.209425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2039]: 0.209439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2040]: 0.209454675 - core[1].svIdle(17), plen 0: [] +EVENT[2041]: 0.209546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2042]: 0.209562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2043]: 0.209577150 - core[0].svIdle(17), plen 0: [] +EVENT[2044]: 0.210425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2045]: 0.210439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2046]: 0.210454600 - core[1].svIdle(17), plen 0: [] +EVENT[2047]: 0.210546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2048]: 0.210562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2049]: 0.210577125 - core[0].svIdle(17), plen 0: [] +EVENT[2050]: 0.211425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2051]: 0.211439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2052]: 0.211454550 - core[1].svIdle(17), plen 0: [] +EVENT[2053]: 0.211546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2054]: 0.211562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2055]: 0.211577425 - core[0].svIdle(17), plen 0: [] +EVENT[2056]: 0.212425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2057]: 0.212439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2058]: 0.212454550 - core[1].svIdle(17), plen 0: [] +EVENT[2059]: 0.212546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2060]: 0.212561650 - core[0].svTaskStartReady(6), plen 0: [tid: 12284596] +EVENT[2061]: 0.212561650 - core[1].svTaskStartReady(6), plen 0: [tid: 12284596] +EVENT[2062]: 0.212574300 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2063]: 0.212590225 - core[0].svTaskStartExec(4), plen 0: [tid: 12284596] +EVENT[2064]: 0.212626475 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459240, size: 8, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.212626475] HEAP: Allocated 8 bytes @ 0x3ffbb028 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[2051]: 0.211930650 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461364, size: 16, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.211930650] HEAP: Allocated 16 bytes @ 0x3ffbb874 from task "alloc0" on core 0 by: +EVENT[2065]: 0.212662050 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459300, size: 16, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.212662050] HEAP: Allocated 16 bytes @ 0x3ffbb064 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[2052]: 0.211947550 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2053]: 0.211963550 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2054]: 0.212033875 - core[0].svPrint(26), plen 70: [msg: I (520) example: Task[0x3ffb7aec]: allocated 16 bytes @ 0x3ffbb874 +EVENT[2066]: 0.212679025 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2067]: 0.212695000 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2068]: 0.212753400 - core[0].svPrint(26), plen 70: [msg: I (508) example: Task[0x3ffb72b4]: allocated 16 bytes @ 0x3ffbb064 , lvl: 0, unused: 0] -[0.212033875] LOG: I (520) example: Task[0x3ffb7aec]: allocated 16 bytes @ 0x3ffbb874 -EVENT[2055]: 0.212047475 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12287056, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2056]: 0.212060700 - core[0].svTaskStartReady(6), plen 0: [tid: 12289748] -EVENT[2057]: 0.212060700 - core[1].svTaskStartReady(6), plen 0: [tid: 12289748] -EVENT[2058]: 0.212076950 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[2059]: 0.212087800 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[2060]: 0.212098575 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2061]: 0.212112375 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[2062]: 0.212123175 - core[1].svTaskStartExec(4), plen 0: [tid: 12289748] -EVENT[2063]: 0.212134025 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2064]: 0.212145900 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12287056, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[2065]: 0.212156200 - core[0].svIdle(17), plen 0: [] -EVENT[2066]: 0.212167725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2067]: 0.212188150 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2068]: 0.212251700 - core[1].svPrint(26), plen 63: [msg: I (520) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb874 +[0.212753400] LOG: I (508) example: Task[0x3ffb72b4]: allocated 16 bytes @ 0x3ffbb064 +EVENT[2069]: 0.212766900 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12284952, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2070]: 0.212780050 - core[0].svTaskStartReady(6), plen 0: [tid: 12287644] +EVENT[2071]: 0.212780050 - core[1].svTaskStartReady(6), plen 0: [tid: 12287644] +EVENT[2072]: 0.212796275 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[2073]: 0.212807100 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[2074]: 0.212817975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2075]: 0.212831875 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[2076]: 0.212842675 - core[1].svTaskStartExec(4), plen 0: [tid: 12287644] +EVENT[2077]: 0.212853400 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2078]: 0.212865525 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12284952, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[2079]: 0.212875725 - core[0].svIdle(17), plen 0: [] +EVENT[2080]: 0.212887475 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2081]: 0.212903825 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2082]: 0.212951700 - core[1].svPrint(26), plen 63: [msg: I (508) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbb064 , lvl: 0, unused: 0] -[0.212251700] LOG: I (520) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb874 -EVENT[2069]: 0.212272900 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461364, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.212272900] HEAP: Freed bytes @ 0x3ffbb874 from task "free0" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +[0.212951700] LOG: I (508) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbb064 +EVENT[2083]: 0.212972900 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073459300, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.212972900] HEAP: Freed bytes @ 0x3ffbb064 from task "free0" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[2070]: 0.212299800 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[2071]: 0.212311225 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2072]: 0.212327800 - core[1].svIdle(17), plen 0: [] -EVENT[2073]: 0.212669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2074]: 0.212682950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2075]: 0.212698525 - core[1].svIdle(17), plen 0: [] -EVENT[2076]: 0.212813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2077]: 0.212828325 - core[0].svTaskStartReady(6), plen 0: [tid: 12292716] -EVENT[2078]: 0.212828325 - core[1].svTaskStartReady(6), plen 0: [tid: 12292716] -EVENT[2079]: 0.212840975 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2080]: 0.212856775 - core[0].svTaskStartExec(4), plen 0: [tid: 12292716] -EVENT[2081]: 0.212892175 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461364, size: 16, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.212892175] HEAP: Allocated 16 bytes @ 0x3ffbb874 from task "alloc1" on core 0 by: +EVENT[2084]: 0.213004375 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[2085]: 0.213015825 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2086]: 0.213032525 - core[1].svIdle(17), plen 0: [] +EVENT[2087]: 0.213425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2088]: 0.213439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2089]: 0.213455150 - core[1].svIdle(17), plen 0: [] +EVENT[2090]: 0.213546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2091]: 0.213561700 - core[0].svTaskStartReady(6), plen 0: [tid: 12290612] +EVENT[2092]: 0.213561700 - core[1].svTaskStartReady(6), plen 0: [tid: 12290612] +EVENT[2093]: 0.213573550 - core[0].svTaskStartReady(6), plen 0: [tid: 12296612] +EVENT[2094]: 0.213573550 - core[1].svTaskStartReady(6), plen 0: [tid: 12296612] +EVENT[2095]: 0.213586050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2096]: 0.213601725 - core[0].svTaskStartExec(4), plen 0: [tid: 12290612] +EVENT[2097]: 0.213638150 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459300, size: 16, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.213638150] HEAP: Allocated 16 bytes @ 0x3ffbb064 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[2082]: 0.212926875 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461384, size: 32, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.212926875] HEAP: Allocated 32 bytes @ 0x3ffbb888 from task "alloc1" on core 0 by: +EVENT[2098]: 0.213673775 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459320, size: 32, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.213673775] HEAP: Allocated 32 bytes @ 0x3ffbb078 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[2083]: 0.212943800 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2084]: 0.212963975 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2085]: 0.213034425 - core[0].svPrint(26), plen 70: [msg: I (521) example: Task[0x3ffb926c]: allocated 32 bytes @ 0x3ffbb888 +EVENT[2099]: 0.213690700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2100]: 0.213706725 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2101]: 0.213761450 - core[0].svPrint(26), plen 70: [msg: I (509) example: Task[0x3ffb8a34]: allocated 32 bytes @ 0x3ffbb078 , lvl: 0, unused: 0] -[0.213034425] LOG: I (521) example: Task[0x3ffb926c]: allocated 32 bytes @ 0x3ffbb888 -EVENT[2086]: 0.213048050 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12293072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2087]: 0.213061250 - core[0].svTaskStartReady(6), plen 0: [tid: 12295764] -EVENT[2088]: 0.213061250 - core[1].svTaskStartReady(6), plen 0: [tid: 12295764] -EVENT[2089]: 0.213077550 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[2090]: 0.213088400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[2091]: 0.213099150 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2092]: 0.213112875 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[2093]: 0.213123725 - core[1].svTaskStartExec(4), plen 0: [tid: 12295764] -EVENT[2094]: 0.213134550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2095]: 0.213146575 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12293072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[2096]: 0.213156950 - core[0].svIdle(17), plen 0: [] -EVENT[2097]: 0.213168350 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2098]: 0.213184750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2099]: 0.213248200 - core[1].svPrint(26), plen 63: [msg: I (521) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb888 -, lvl: 0, unused: 0] -[0.213248200] LOG: I (521) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb888 -EVENT[2100]: 0.213273225 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461384, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.213273225] HEAP: Freed bytes @ 0x3ffbb888 from task "free1" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 -/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 -/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 - -EVENT[2101]: 0.213300225 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[2102]: 0.213311650 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2103]: 0.213328225 - core[1].svIdle(17), plen 0: [] -EVENT[2104]: 0.213669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2105]: 0.213682950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2106]: 0.213698525 - core[1].svIdle(17), plen 0: [] -EVENT[2107]: 0.213813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2108]: 0.213828325 - core[0].svTaskStartReady(6), plen 0: [tid: 12298716] -EVENT[2109]: 0.213828325 - core[1].svTaskStartReady(6), plen 0: [tid: 12298716] -EVENT[2110]: 0.213840975 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2111]: 0.213856650 - core[0].svTaskStartExec(4), plen 0: [tid: 12298716] -EVENT[2112]: 0.213892175 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461384, size: 24, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.213892175] HEAP: Allocated 24 bytes @ 0x3ffbb888 from task "alloc2" on core 0 by: +[0.213761450] LOG: I (509) example: Task[0x3ffb8a34]: allocated 32 bytes @ 0x3ffbb078 +EVENT[2102]: 0.213778750 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12290968, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2103]: 0.213792000 - core[0].svTaskStartReady(6), plen 0: [tid: 12293660] +EVENT[2104]: 0.213792000 - core[1].svTaskStartReady(6), plen 0: [tid: 12293660] +EVENT[2105]: 0.213808350 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[2106]: 0.213819200 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[2107]: 0.213830025 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2108]: 0.213843800 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[2109]: 0.213855750 - core[1].svTaskStartExec(4), plen 0: [tid: 12293660] +EVENT[2110]: 0.213866900 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2111]: 0.213878850 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12290968, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[2112]: 0.213890500 - core[0].svTaskStartExec(4), plen 0: [tid: 12296612] +EVENT[2113]: 0.213902200 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2114]: 0.213920800 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2115]: 0.213933875 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459356, size: 24, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.213933875] HEAP: Allocated 24 bytes @ 0x3ffbb09c from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[2113]: 0.213926725 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461412, size: 48, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.213926725] HEAP: Allocated 48 bytes @ 0x3ffbb8a4 from task "alloc2" on core 0 by: +EVENT[2116]: 0.213974650 - core[1].svPrint(26), plen 63: [msg: I (509) example: Task[0x3ffb961c]: free memory @ 0x3ffbb078 +, lvl: 0, unused: 0] +[0.213974650] LOG: I (509) example: Task[0x3ffb961c]: free memory @ 0x3ffbb078 +EVENT[2117]: 0.213990500 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459384, size: 48, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.213990500] HEAP: Allocated 48 bytes @ 0x3ffbb0b8 from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[2114]: 0.213943625 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2115]: 0.213959625 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2116]: 0.214029950 - core[0].svPrint(26), plen 70: [msg: I (522) example: Task[0x3ffba9dc]: allocated 48 bytes @ 0x3ffbb8a4 -, lvl: 0, unused: 0] -[0.214029950] LOG: I (522) example: Task[0x3ffba9dc]: allocated 48 bytes @ 0x3ffbb8a4 -EVENT[2117]: 0.214050450 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12299072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2118]: 0.214063675 - core[0].svTaskStartReady(6), plen 0: [tid: 12301764] -EVENT[2119]: 0.214063675 - core[1].svTaskStartReady(6), plen 0: [tid: 12301764] -EVENT[2120]: 0.214080000 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[2121]: 0.214090850 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[2122]: 0.214101600 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2123]: 0.214115500 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[2124]: 0.214126375 - core[1].svTaskStartExec(4), plen 0: [tid: 12301764] -EVENT[2125]: 0.214137200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2126]: 0.214149050 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12299072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[2127]: 0.214160350 - core[0].svIdle(17), plen 0: [] -EVENT[2128]: 0.214171975 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2129]: 0.214188375 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2130]: 0.214251925 - core[1].svPrint(26), plen 63: [msg: I (522) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb8a4 -, lvl: 0, unused: 0] -[0.214251925] LOG: I (522) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb8a4 -EVENT[2131]: 0.214273125 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461412, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.214273125] HEAP: Freed bytes @ 0x3ffbb8a4 from task "free2" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +EVENT[2118]: 0.214004800 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073459320, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.214004800] HEAP: Freed bytes @ 0x3ffbb078 from task "free1" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[2132]: 0.214303450 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[2133]: 0.214314925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2134]: 0.214331625 - core[1].svIdle(17), plen 0: [] -EVENT[2135]: 0.214669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2136]: 0.214682850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2137]: 0.214698425 - core[1].svIdle(17), plen 0: [] -EVENT[2138]: 0.214813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2139]: 0.214828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2140]: 0.214843825 - core[0].svIdle(17), plen 0: [] -EVENT[2141]: 0.215669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2142]: 0.215682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2143]: 0.215698075 - core[1].svIdle(17), plen 0: [] -EVENT[2144]: 0.215813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2145]: 0.215828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2146]: 0.215843775 - core[0].svIdle(17), plen 0: [] -EVENT[2147]: 0.216669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2148]: 0.216682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2149]: 0.216698325 - core[1].svIdle(17), plen 0: [] -EVENT[2150]: 0.216813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2151]: 0.216828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2152]: 0.216843775 - core[0].svIdle(17), plen 0: [] -EVENT[2153]: 0.217669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2154]: 0.217682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2155]: 0.217698100 - core[1].svIdle(17), plen 0: [] -EVENT[2156]: 0.217813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2157]: 0.217828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2158]: 0.217843775 - core[0].svIdle(17), plen 0: [] -EVENT[2159]: 0.218669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2160]: 0.218682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2161]: 0.218698075 - core[1].svIdle(17), plen 0: [] -EVENT[2162]: 0.218813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2163]: 0.218828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2164]: 0.218843825 - core[0].svIdle(17), plen 0: [] -EVENT[2165]: 0.219669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2166]: 0.219682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2167]: 0.219698075 - core[1].svIdle(17), plen 0: [] -EVENT[2168]: 0.219813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2169]: 0.219828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2170]: 0.219843775 - core[0].svIdle(17), plen 0: [] -EVENT[2171]: 0.220669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2172]: 0.220682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2173]: 0.220698325 - core[1].svIdle(17), plen 0: [] -EVENT[2174]: 0.220813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2175]: 0.220828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2176]: 0.220843775 - core[0].svIdle(17), plen 0: [] -EVENT[2177]: 0.221669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2178]: 0.221682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2179]: 0.221698100 - core[1].svIdle(17), plen 0: [] -EVENT[2180]: 0.221813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2181]: 0.221828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2182]: 0.221843775 - core[0].svIdle(17), plen 0: [] -EVENT[2183]: 0.222669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2184]: 0.222682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2185]: 0.222698075 - core[1].svIdle(17), plen 0: [] -EVENT[2186]: 0.222813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2187]: 0.222828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2188]: 0.222843825 - core[0].svIdle(17), plen 0: [] -EVENT[2189]: 0.223669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2190]: 0.223682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2191]: 0.223698075 - core[1].svIdle(17), plen 0: [] -EVENT[2192]: 0.223813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2193]: 0.223828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2194]: 0.223843775 - core[0].svIdle(17), plen 0: [] -EVENT[2195]: 0.224669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2196]: 0.224687175 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2197]: 0.224702325 - core[1].svIdle(17), plen 0: [] -EVENT[2198]: 0.224813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2199]: 0.224828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2200]: 0.224843775 - core[0].svIdle(17), plen 0: [] -EVENT[2201]: 0.225669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2202]: 0.225682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2203]: 0.225698075 - core[1].svIdle(17), plen 0: [] -EVENT[2204]: 0.225813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2205]: 0.225828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2206]: 0.225843825 - core[0].svIdle(17), plen 0: [] -EVENT[2207]: 0.226669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2208]: 0.226682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2209]: 0.226698075 - core[1].svIdle(17), plen 0: [] -EVENT[2210]: 0.226813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2211]: 0.226828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2212]: 0.226843775 - core[0].svIdle(17), plen 0: [] -EVENT[2213]: 0.227669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2214]: 0.227682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2215]: 0.227698325 - core[1].svIdle(17), plen 0: [] -EVENT[2216]: 0.227813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2217]: 0.227828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2218]: 0.227843775 - core[0].svIdle(17), plen 0: [] -EVENT[2219]: 0.228669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2220]: 0.228682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2221]: 0.228698100 - core[1].svIdle(17), plen 0: [] -EVENT[2222]: 0.228813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2223]: 0.228828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2224]: 0.228843775 - core[0].svIdle(17), plen 0: [] -EVENT[2225]: 0.229669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2226]: 0.229682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2227]: 0.229698075 - core[1].svIdle(17), plen 0: [] -EVENT[2228]: 0.229813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2229]: 0.229828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2230]: 0.229843825 - core[0].svIdle(17), plen 0: [] -EVENT[2231]: 0.230669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2232]: 0.230682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2233]: 0.230698075 - core[1].svIdle(17), plen 0: [] -EVENT[2234]: 0.230813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2235]: 0.230828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2236]: 0.230843775 - core[0].svIdle(17), plen 0: [] -EVENT[2237]: 0.231669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2238]: 0.231682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2239]: 0.231698325 - core[1].svIdle(17), plen 0: [] -EVENT[2240]: 0.231813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2241]: 0.231828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2242]: 0.231843775 - core[0].svIdle(17), plen 0: [] -EVENT[2243]: 0.232669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2244]: 0.232682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2245]: 0.232698100 - core[1].svIdle(17), plen 0: [] -EVENT[2246]: 0.232813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2247]: 0.232828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2248]: 0.232843775 - core[0].svIdle(17), plen 0: [] -EVENT[2249]: 0.233669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2250]: 0.233682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2251]: 0.233698075 - core[1].svIdle(17), plen 0: [] -EVENT[2252]: 0.233813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2253]: 0.233828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2254]: 0.233843825 - core[0].svIdle(17), plen 0: [] -EVENT[2255]: 0.234669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2256]: 0.234682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2257]: 0.234698075 - core[1].svIdle(17), plen 0: [] -EVENT[2258]: 0.234813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2259]: 0.234828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2260]: 0.234843775 - core[0].svIdle(17), plen 0: [] -EVENT[2261]: 0.235669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2262]: 0.235682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2263]: 0.235698325 - core[1].svIdle(17), plen 0: [] -EVENT[2264]: 0.235813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2265]: 0.235828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2266]: 0.235843775 - core[0].svIdle(17), plen 0: [] -EVENT[2267]: 0.236669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2268]: 0.236686525 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2269]: 0.236701650 - core[1].svIdle(17), plen 0: [] -EVENT[2270]: 0.236813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2271]: 0.236828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2272]: 0.236843775 - core[0].svIdle(17), plen 0: [] -EVENT[2273]: 0.237669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2274]: 0.237682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2275]: 0.237698075 - core[1].svIdle(17), plen 0: [] -EVENT[2276]: 0.237813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2277]: 0.237828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2278]: 0.237843825 - core[0].svIdle(17), plen 0: [] -EVENT[2279]: 0.238669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2280]: 0.238682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2281]: 0.238698075 - core[1].svIdle(17), plen 0: [] -EVENT[2282]: 0.238813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2283]: 0.238828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2284]: 0.238843775 - core[0].svIdle(17), plen 0: [] -EVENT[2285]: 0.239669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2286]: 0.239682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2287]: 0.239698325 - core[1].svIdle(17), plen 0: [] -EVENT[2288]: 0.239813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2289]: 0.239828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2290]: 0.239843775 - core[0].svIdle(17), plen 0: [] -EVENT[2291]: 0.240669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2292]: 0.240682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2293]: 0.240698100 - core[1].svIdle(17), plen 0: [] -EVENT[2294]: 0.240813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2295]: 0.240828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2296]: 0.240843775 - core[0].svIdle(17), plen 0: [] -EVENT[2297]: 0.241669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2298]: 0.241682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2299]: 0.241698075 - core[1].svIdle(17), plen 0: [] -EVENT[2300]: 0.241813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2301]: 0.241828225 - core[0].svTaskStartReady(6), plen 0: [tid: 12286700] -EVENT[2302]: 0.241828225 - core[1].svTaskStartReady(6), plen 0: [tid: 12286700] -EVENT[2303]: 0.241840850 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2304]: 0.241856525 - core[0].svTaskStartExec(4), plen 0: [tid: 12286700] -EVENT[2305]: 0.241891850 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461412, size: 9, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.241891850] HEAP: Allocated 9 bytes @ 0x3ffbb8a4 from task "alloc0" on core 0 by: +EVENT[2119]: 0.214017225 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2120]: 0.214037250 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2121]: 0.214048175 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[2122]: 0.214059725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2123]: 0.214077675 - core[1].svIdle(17), plen 0: [] +EVENT[2124]: 0.214095675 - core[0].svPrint(26), plen 70: [msg: I (509) example: Task[0x3ffba1a4]: allocated 48 bytes @ 0x3ffbb0b8 +, lvl: 0, unused: 0] +[0.214095675] LOG: I (509) example: Task[0x3ffba1a4]: allocated 48 bytes @ 0x3ffbb0b8 +EVENT[2125]: 0.214109125 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12296968, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2126]: 0.215654450 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2127]: 0.215666025 - core[0].svTaskStartReady(6), plen 0: [tid: 12299660] +EVENT[2128]: 0.215666025 - core[1].svTaskStartReady(6), plen 0: [tid: 12299660] +EVENT[2129]: 0.215683825 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2130]: 0.215694950 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2131]: 0.215705850 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2132]: 0.215717500 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2133]: 0.215728000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2134]: 0.215738875 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2135]: 0.215749800 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[2136]: 0.215761550 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2137]: 0.215772300 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2138]: 0.215783750 - core[0].svTaskStartExec(4), plen 0: [tid: 12296612] +EVENT[2139]: 0.215801425 - core[1].svTaskStartExec(4), plen 0: [tid: 12299660] +EVENT[2140]: 0.215815250 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[2141]: 0.215827525 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12296968, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[2142]: 0.215838975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[2143]: 0.215851050 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2144]: 0.215862100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2145]: 0.215874300 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2146]: 0.215885925 - core[0].svIdle(17), plen 0: [] +EVENT[2147]: 0.215935950 - core[1].svPrint(26), plen 63: [msg: I (511) example: Task[0x3ffbad8c]: free memory @ 0x3ffbb0b8 +, lvl: 0, unused: 0] +[0.215935950] LOG: I (511) example: Task[0x3ffbad8c]: free memory @ 0x3ffbb0b8 +EVENT[2148]: 0.215957325 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073459384, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.215957325] HEAP: Freed bytes @ 0x3ffbb0b8 from task "free2" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[2149]: 0.215984750 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[2150]: 0.215996150 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2151]: 0.216012725 - core[1].svIdle(17), plen 0: [] +EVENT[2152]: 0.216425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2153]: 0.216439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2154]: 0.216454975 - core[1].svIdle(17), plen 0: [] +EVENT[2155]: 0.216546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2156]: 0.216562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2157]: 0.216577425 - core[0].svIdle(17), plen 0: [] +EVENT[2158]: 0.217425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2159]: 0.217439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2160]: 0.217454675 - core[1].svIdle(17), plen 0: [] +EVENT[2161]: 0.217546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2162]: 0.217562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2163]: 0.217577150 - core[0].svIdle(17), plen 0: [] +EVENT[2164]: 0.218425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2165]: 0.218439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2166]: 0.218454600 - core[1].svIdle(17), plen 0: [] +EVENT[2167]: 0.218546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2168]: 0.218562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2169]: 0.218577125 - core[0].svIdle(17), plen 0: [] +EVENT[2170]: 0.219425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2171]: 0.219439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2172]: 0.219454550 - core[1].svIdle(17), plen 0: [] +EVENT[2173]: 0.219546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2174]: 0.219562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2175]: 0.219577425 - core[0].svIdle(17), plen 0: [] +EVENT[2176]: 0.220425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2177]: 0.220439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2178]: 0.220454550 - core[1].svIdle(17), plen 0: [] +EVENT[2179]: 0.220546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2180]: 0.220562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2181]: 0.220577125 - core[0].svIdle(17), plen 0: [] +EVENT[2182]: 0.221425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2183]: 0.221439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2184]: 0.221454675 - core[1].svIdle(17), plen 0: [] +EVENT[2185]: 0.221546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2186]: 0.221562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2187]: 0.221577150 - core[0].svIdle(17), plen 0: [] +EVENT[2188]: 0.222425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2189]: 0.222439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2190]: 0.222454600 - core[1].svIdle(17), plen 0: [] +EVENT[2191]: 0.222546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2192]: 0.222562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2193]: 0.222577125 - core[0].svIdle(17), plen 0: [] +EVENT[2194]: 0.223425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2195]: 0.223439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2196]: 0.223454550 - core[1].svIdle(17), plen 0: [] +EVENT[2197]: 0.223546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2198]: 0.223562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2199]: 0.223577425 - core[0].svIdle(17), plen 0: [] +EVENT[2200]: 0.224425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2201]: 0.224439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2202]: 0.224454550 - core[1].svIdle(17), plen 0: [] +EVENT[2203]: 0.224546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2204]: 0.224562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2205]: 0.224577125 - core[0].svIdle(17), plen 0: [] +EVENT[2206]: 0.225425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2207]: 0.225439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2208]: 0.225454675 - core[1].svIdle(17), plen 0: [] +EVENT[2209]: 0.225546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2210]: 0.225562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2211]: 0.225577150 - core[0].svIdle(17), plen 0: [] +EVENT[2212]: 0.226425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2213]: 0.226439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2214]: 0.226454600 - core[1].svIdle(17), plen 0: [] +EVENT[2215]: 0.226546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2216]: 0.226562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2217]: 0.226577125 - core[0].svIdle(17), plen 0: [] +EVENT[2218]: 0.227425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2219]: 0.227439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2220]: 0.227454550 - core[1].svIdle(17), plen 0: [] +EVENT[2221]: 0.227546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2222]: 0.227562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2223]: 0.227577425 - core[0].svIdle(17), plen 0: [] +EVENT[2224]: 0.228425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2225]: 0.228439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2226]: 0.228454550 - core[1].svIdle(17), plen 0: [] +EVENT[2227]: 0.228546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2228]: 0.228562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2229]: 0.228577125 - core[0].svIdle(17), plen 0: [] +EVENT[2230]: 0.229425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2231]: 0.229443675 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2232]: 0.229458825 - core[1].svIdle(17), plen 0: [] +EVENT[2233]: 0.229546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2234]: 0.229562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2235]: 0.229577125 - core[0].svIdle(17), plen 0: [] +EVENT[2236]: 0.230425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2237]: 0.230439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2238]: 0.230454550 - core[1].svIdle(17), plen 0: [] +EVENT[2239]: 0.230546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2240]: 0.230562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2241]: 0.230577425 - core[0].svIdle(17), plen 0: [] +EVENT[2242]: 0.231425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2243]: 0.231439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2244]: 0.231454550 - core[1].svIdle(17), plen 0: [] +EVENT[2245]: 0.231546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2246]: 0.231562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2247]: 0.231577125 - core[0].svIdle(17), plen 0: [] +EVENT[2248]: 0.232425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2249]: 0.232439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2250]: 0.232454675 - core[1].svIdle(17), plen 0: [] +EVENT[2251]: 0.232546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2252]: 0.232562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2253]: 0.232577150 - core[0].svIdle(17), plen 0: [] +EVENT[2254]: 0.233425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2255]: 0.233439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2256]: 0.233454600 - core[1].svIdle(17), plen 0: [] +EVENT[2257]: 0.233546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2258]: 0.233562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2259]: 0.233577125 - core[0].svIdle(17), plen 0: [] +EVENT[2260]: 0.234425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2261]: 0.234439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2262]: 0.234454550 - core[1].svIdle(17), plen 0: [] +EVENT[2263]: 0.234546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2264]: 0.234562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2265]: 0.234577425 - core[0].svIdle(17), plen 0: [] +EVENT[2266]: 0.235425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2267]: 0.235439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2268]: 0.235454550 - core[1].svIdle(17), plen 0: [] +EVENT[2269]: 0.235546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2270]: 0.235562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2271]: 0.235577125 - core[0].svIdle(17), plen 0: [] +EVENT[2272]: 0.236425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2273]: 0.236439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2274]: 0.236454675 - core[1].svIdle(17), plen 0: [] +EVENT[2275]: 0.236546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2276]: 0.236562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2277]: 0.236577150 - core[0].svIdle(17), plen 0: [] +EVENT[2278]: 0.237425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2279]: 0.237439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2280]: 0.237454600 - core[1].svIdle(17), plen 0: [] +EVENT[2281]: 0.237546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2282]: 0.237562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2283]: 0.237577125 - core[0].svIdle(17), plen 0: [] +EVENT[2284]: 0.238425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2285]: 0.238439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2286]: 0.238454550 - core[1].svIdle(17), plen 0: [] +EVENT[2287]: 0.238546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2288]: 0.238562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2289]: 0.238577425 - core[0].svIdle(17), plen 0: [] +EVENT[2290]: 0.239425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2291]: 0.239439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2292]: 0.239454550 - core[1].svIdle(17), plen 0: [] +EVENT[2293]: 0.239546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2294]: 0.239562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2295]: 0.239577125 - core[0].svIdle(17), plen 0: [] +EVENT[2296]: 0.240425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2297]: 0.240439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2298]: 0.240454675 - core[1].svIdle(17), plen 0: [] +EVENT[2299]: 0.240546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2300]: 0.240562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2301]: 0.240577150 - core[0].svIdle(17), plen 0: [] +EVENT[2302]: 0.241425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2303]: 0.241443000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2304]: 0.241458125 - core[1].svIdle(17), plen 0: [] +EVENT[2305]: 0.241546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2306]: 0.241562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2307]: 0.241577125 - core[0].svIdle(17), plen 0: [] +EVENT[2308]: 0.242425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2309]: 0.242439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2310]: 0.242454550 - core[1].svIdle(17), plen 0: [] +EVENT[2311]: 0.242546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2312]: 0.242561700 - core[0].svTaskStartReady(6), plen 0: [tid: 12284596] +EVENT[2313]: 0.242561700 - core[1].svTaskStartReady(6), plen 0: [tid: 12284596] +EVENT[2314]: 0.242574300 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2315]: 0.242589975 - core[0].svTaskStartExec(4), plen 0: [tid: 12284596] +EVENT[2316]: 0.242625100 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459256, size: 9, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.242625100] HEAP: Allocated 9 bytes @ 0x3ffbb038 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[2306]: 0.241926275 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461428, size: 18, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.241926275] HEAP: Allocated 18 bytes @ 0x3ffbb8b4 from task "alloc0" on core 0 by: +EVENT[2317]: 0.242659350 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459320, size: 18, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.242659350] HEAP: Allocated 18 bytes @ 0x3ffbb078 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[2307]: 0.241943300 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2308]: 0.241959300 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2309]: 0.242029725 - core[0].svPrint(26), plen 70: [msg: I (550) example: Task[0x3ffb7aec]: allocated 18 bytes @ 0x3ffbb8b4 +EVENT[2318]: 0.242676400 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2319]: 0.242692425 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2320]: 0.242747250 - core[0].svPrint(26), plen 70: [msg: I (538) example: Task[0x3ffb72b4]: allocated 18 bytes @ 0x3ffbb078 , lvl: 0, unused: 0] -[0.242029725] LOG: I (550) example: Task[0x3ffb7aec]: allocated 18 bytes @ 0x3ffbb8b4 -EVENT[2310]: 0.242047550 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12287056, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2311]: 0.242060775 - core[0].svTaskStartReady(6), plen 0: [tid: 12289748] -EVENT[2312]: 0.242060775 - core[1].svTaskStartReady(6), plen 0: [tid: 12289748] -EVENT[2313]: 0.242077000 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[2314]: 0.242087875 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[2315]: 0.242098625 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2316]: 0.242112475 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[2317]: 0.242123350 - core[1].svTaskStartExec(4), plen 0: [tid: 12289748] -EVENT[2318]: 0.242134175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2319]: 0.242146150 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12287056, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[2320]: 0.242156400 - core[0].svIdle(17), plen 0: [] -EVENT[2321]: 0.242167800 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2322]: 0.242184175 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2323]: 0.242247725 - core[1].svPrint(26), plen 63: [msg: I (550) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb8b4 +[0.242747250] LOG: I (538) example: Task[0x3ffb72b4]: allocated 18 bytes @ 0x3ffbb078 +EVENT[2321]: 0.242760625 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12284952, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2322]: 0.242774025 - core[0].svTaskStartReady(6), plen 0: [tid: 12287644] +EVENT[2323]: 0.242774025 - core[1].svTaskStartReady(6), plen 0: [tid: 12287644] +EVENT[2324]: 0.242790200 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[2325]: 0.242806100 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[2326]: 0.242816800 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2327]: 0.242830525 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[2328]: 0.242841300 - core[1].svTaskStartExec(4), plen 0: [tid: 12287644] +EVENT[2329]: 0.242852050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2330]: 0.242864300 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12284952, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[2331]: 0.242875550 - core[0].svIdle(17), plen 0: [] +EVENT[2332]: 0.242892800 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2333]: 0.242909050 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2334]: 0.242956925 - core[1].svPrint(26), plen 63: [msg: I (538) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbb078 , lvl: 0, unused: 0] -[0.242247725] LOG: I (550) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb8b4 -EVENT[2324]: 0.242268925 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461428, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.242268925] HEAP: Freed bytes @ 0x3ffbb8b4 from task "free0" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +[0.242956925] LOG: I (538) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbb078 +EVENT[2335]: 0.242978325 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073459320, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.242978325] HEAP: Freed bytes @ 0x3ffbb078 from task "free0" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[2325]: 0.242299925 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[2326]: 0.242311400 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2327]: 0.242328100 - core[1].svIdle(17), plen 0: [] -EVENT[2328]: 0.242669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2329]: 0.242682850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2330]: 0.242698425 - core[1].svIdle(17), plen 0: [] -EVENT[2331]: 0.242813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2332]: 0.242828225 - core[0].svTaskStartReady(6), plen 0: [tid: 12292716] -EVENT[2333]: 0.242828225 - core[1].svTaskStartReady(6), plen 0: [tid: 12292716] -EVENT[2334]: 0.242840850 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2335]: 0.242856525 - core[0].svTaskStartExec(4), plen 0: [tid: 12292716] -EVENT[2336]: 0.242891850 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461428, size: 18, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.242891850] HEAP: Allocated 18 bytes @ 0x3ffbb8b4 from task "alloc1" on core 0 by: +EVENT[2336]: 0.243004800 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[2337]: 0.243016200 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2338]: 0.243032775 - core[1].svIdle(17), plen 0: [] +EVENT[2339]: 0.243425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2340]: 0.243439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2341]: 0.243455150 - core[1].svIdle(17), plen 0: [] +EVENT[2342]: 0.243546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2343]: 0.243561650 - core[0].svTaskStartReady(6), plen 0: [tid: 12290612] +EVENT[2344]: 0.243561650 - core[1].svTaskStartReady(6), plen 0: [tid: 12290612] +EVENT[2345]: 0.243574300 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2346]: 0.243590225 - core[0].svTaskStartExec(4), plen 0: [tid: 12290612] +EVENT[2347]: 0.243625450 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459320, size: 18, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.243625450] HEAP: Allocated 18 bytes @ 0x3ffbb078 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[2337]: 0.242926425 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461452, size: 36, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.242926425] HEAP: Allocated 36 bytes @ 0x3ffbb8cc from task "alloc1" on core 0 by: +EVENT[2348]: 0.243661200 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459384, size: 36, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.243661200] HEAP: Allocated 36 bytes @ 0x3ffbb0b8 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[2338]: 0.242943450 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2339]: 0.242959450 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2340]: 0.243029875 - core[0].svPrint(26), plen 70: [msg: I (551) example: Task[0x3ffb926c]: allocated 36 bytes @ 0x3ffbb8cc +EVENT[2349]: 0.243682350 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2350]: 0.243698300 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2351]: 0.243753075 - core[0].svPrint(26), plen 70: [msg: I (539) example: Task[0x3ffb8a34]: allocated 36 bytes @ 0x3ffbb0b8 , lvl: 0, unused: 0] -[0.243029875] LOG: I (551) example: Task[0x3ffb926c]: allocated 36 bytes @ 0x3ffbb8cc -EVENT[2341]: 0.243043425 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12293072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2342]: 0.243060250 - core[0].svTaskStartReady(6), plen 0: [tid: 12295764] -EVENT[2343]: 0.243060250 - core[1].svTaskStartReady(6), plen 0: [tid: 12295764] -EVENT[2344]: 0.243076550 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[2345]: 0.243087400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[2346]: 0.243098150 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2347]: 0.243111875 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[2348]: 0.243122725 - core[1].svTaskStartExec(4), plen 0: [tid: 12295764] -EVENT[2349]: 0.243133550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2350]: 0.243145575 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12293072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[2351]: 0.243155950 - core[0].svIdle(17), plen 0: [] -EVENT[2352]: 0.243167350 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2353]: 0.243183750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2354]: 0.243247200 - core[1].svPrint(26), plen 63: [msg: I (551) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb8cc +[0.243753075] LOG: I (539) example: Task[0x3ffb8a34]: allocated 36 bytes @ 0x3ffbb0b8 +EVENT[2352]: 0.243766550 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12290968, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2353]: 0.243779725 - core[0].svTaskStartReady(6), plen 0: [tid: 12293660] +EVENT[2354]: 0.243779725 - core[1].svTaskStartReady(6), plen 0: [tid: 12293660] +EVENT[2355]: 0.243796025 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[2356]: 0.243806875 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[2357]: 0.243817700 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2358]: 0.243831575 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[2359]: 0.243842375 - core[1].svTaskStartExec(4), plen 0: [tid: 12293660] +EVENT[2360]: 0.243853100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2361]: 0.243865225 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12290968, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[2362]: 0.243876425 - core[0].svIdle(17), plen 0: [] +EVENT[2363]: 0.243888150 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2364]: 0.243904550 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2365]: 0.243952425 - core[1].svPrint(26), plen 63: [msg: I (539) example: Task[0x3ffb961c]: free memory @ 0x3ffbb0b8 , lvl: 0, unused: 0] -[0.243247200] LOG: I (551) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb8cc -EVENT[2355]: 0.243268350 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461452, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.243268350] HEAP: Freed bytes @ 0x3ffbb8cc from task "free1" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +[0.243952425] LOG: I (539) example: Task[0x3ffb961c]: free memory @ 0x3ffbb0b8 +EVENT[2366]: 0.243977950 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073459384, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.243977950] HEAP: Freed bytes @ 0x3ffbb0b8 from task "free1" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[2356]: 0.243295350 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[2357]: 0.243306775 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2358]: 0.243323350 - core[1].svIdle(17), plen 0: [] -EVENT[2359]: 0.243669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2360]: 0.243682950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2361]: 0.243698525 - core[1].svIdle(17), plen 0: [] -EVENT[2362]: 0.243813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2363]: 0.243828325 - core[0].svTaskStartReady(6), plen 0: [tid: 12298716] -EVENT[2364]: 0.243828325 - core[1].svTaskStartReady(6), plen 0: [tid: 12298716] -EVENT[2365]: 0.243840975 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2366]: 0.243856650 - core[0].svTaskStartExec(4), plen 0: [tid: 12298716] -EVENT[2367]: 0.243892175 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461452, size: 27, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.243892175] HEAP: Allocated 27 bytes @ 0x3ffbb8cc from task "alloc2" on core 0 by: +EVENT[2367]: 0.244005350 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[2368]: 0.244016775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2369]: 0.244033325 - core[1].svIdle(17), plen 0: [] +EVENT[2370]: 0.244425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2371]: 0.244439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2372]: 0.244455150 - core[1].svIdle(17), plen 0: [] +EVENT[2373]: 0.244546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2374]: 0.244562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2375]: 0.244577125 - core[0].svIdle(17), plen 0: [] +EVENT[2376]: 0.245425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2377]: 0.245439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2378]: 0.245454550 - core[1].svIdle(17), plen 0: [] +EVENT[2379]: 0.245546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2380]: 0.245561700 - core[0].svTaskStartReady(6), plen 0: [tid: 12296612] +EVENT[2381]: 0.245561700 - core[1].svTaskStartReady(6), plen 0: [tid: 12296612] +EVENT[2382]: 0.245574300 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2383]: 0.245589975 - core[0].svTaskStartExec(4), plen 0: [tid: 12296612] +EVENT[2384]: 0.245626175 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459384, size: 27, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.245626175] HEAP: Allocated 27 bytes @ 0x3ffbb0b8 from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[2368]: 0.243930850 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461484, size: 54, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.243930850] HEAP: Allocated 54 bytes @ 0x3ffbb8ec from task "alloc2" on core 0 by: +EVENT[2385]: 0.245661800 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459416, size: 54, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.245661800] HEAP: Allocated 54 bytes @ 0x3ffbb0d8 from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[2369]: 0.243947750 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2370]: 0.243963875 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2371]: 0.244034325 - core[0].svPrint(26), plen 70: [msg: I (552) example: Task[0x3ffba9dc]: allocated 54 bytes @ 0x3ffbb8ec +EVENT[2386]: 0.245678850 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2387]: 0.245699000 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2388]: 0.245753825 - core[0].svPrint(26), plen 70: [msg: I (541) example: Task[0x3ffba1a4]: allocated 54 bytes @ 0x3ffbb0d8 , lvl: 0, unused: 0] -[0.244034325] LOG: I (552) example: Task[0x3ffba9dc]: allocated 54 bytes @ 0x3ffbb8ec -EVENT[2372]: 0.244047925 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12299072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2373]: 0.244061150 - core[0].svTaskStartReady(6), plen 0: [tid: 12301764] -EVENT[2374]: 0.244061150 - core[1].svTaskStartReady(6), plen 0: [tid: 12301764] -EVENT[2375]: 0.244077475 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[2376]: 0.244088325 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[2377]: 0.244099075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2378]: 0.244112800 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[2379]: 0.244123700 - core[1].svTaskStartExec(4), plen 0: [tid: 12301764] -EVENT[2380]: 0.244134525 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2381]: 0.244146375 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12299072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[2382]: 0.244157675 - core[0].svIdle(17), plen 0: [] -EVENT[2383]: 0.244169300 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2384]: 0.244189750 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2385]: 0.244253300 - core[1].svPrint(26), plen 63: [msg: I (552) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb8ec +[0.245753825] LOG: I (541) example: Task[0x3ffba1a4]: allocated 54 bytes @ 0x3ffbb0d8 +EVENT[2389]: 0.245767425 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12296968, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2390]: 0.245780625 - core[0].svTaskStartReady(6), plen 0: [tid: 12299660] +EVENT[2391]: 0.245780625 - core[1].svTaskStartReady(6), plen 0: [tid: 12299660] +EVENT[2392]: 0.245796975 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[2393]: 0.245807850 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[2394]: 0.245818650 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2395]: 0.245832350 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[2396]: 0.245843200 - core[1].svTaskStartExec(4), plen 0: [tid: 12299660] +EVENT[2397]: 0.245854025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2398]: 0.245865975 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12296968, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[2399]: 0.245877175 - core[0].svIdle(17), plen 0: [] +EVENT[2400]: 0.245889575 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2401]: 0.245905825 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2402]: 0.245953600 - core[1].svPrint(26), plen 63: [msg: I (541) example: Task[0x3ffbad8c]: free memory @ 0x3ffbb0d8 , lvl: 0, unused: 0] -[0.244253300] LOG: I (552) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb8ec -EVENT[2386]: 0.244274500 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461484, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.244274500] HEAP: Freed bytes @ 0x3ffbb8ec from task "free2" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +[0.245953600] LOG: I (541) example: Task[0x3ffbad8c]: free memory @ 0x3ffbb0d8 +EVENT[2403]: 0.245978850 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073459416, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.245978850] HEAP: Freed bytes @ 0x3ffbb0d8 from task "free2" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[2387]: 0.244301400 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[2388]: 0.244312825 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2389]: 0.244329400 - core[1].svIdle(17), plen 0: [] -EVENT[2390]: 0.244669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2391]: 0.244682950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2392]: 0.244698525 - core[1].svIdle(17), plen 0: [] -EVENT[2393]: 0.244813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2394]: 0.244828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2395]: 0.244843775 - core[0].svIdle(17), plen 0: [] -EVENT[2396]: 0.245669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2397]: 0.245682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2398]: 0.245698325 - core[1].svIdle(17), plen 0: [] -EVENT[2399]: 0.245813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2400]: 0.245828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2401]: 0.245843775 - core[0].svIdle(17), plen 0: [] -EVENT[2402]: 0.246669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2403]: 0.246682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2404]: 0.246698100 - core[1].svIdle(17), plen 0: [] -EVENT[2405]: 0.246813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2406]: 0.246828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2407]: 0.246843775 - core[0].svIdle(17), plen 0: [] -EVENT[2408]: 0.247669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2409]: 0.247682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2410]: 0.247698075 - core[1].svIdle(17), plen 0: [] -EVENT[2411]: 0.247813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2412]: 0.247828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2413]: 0.247843825 - core[0].svIdle(17), plen 0: [] -EVENT[2414]: 0.248669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2415]: 0.248682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2416]: 0.248698075 - core[1].svIdle(17), plen 0: [] -EVENT[2417]: 0.248813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2418]: 0.248828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2419]: 0.248843775 - core[0].svIdle(17), plen 0: [] -EVENT[2420]: 0.249669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2421]: 0.249682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2422]: 0.249698325 - core[1].svIdle(17), plen 0: [] -EVENT[2423]: 0.249813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2424]: 0.249828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2425]: 0.249848325 - core[0].svIdle(17), plen 0: [] -EVENT[2426]: 0.250669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2427]: 0.250682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2428]: 0.250698075 - core[1].svIdle(17), plen 0: [] -EVENT[2429]: 0.250813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2430]: 0.250828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2431]: 0.250843775 - core[0].svIdle(17), plen 0: [] -EVENT[2432]: 0.251669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2433]: 0.251682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2434]: 0.251698325 - core[1].svIdle(17), plen 0: [] -EVENT[2435]: 0.251813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2436]: 0.251828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2437]: 0.251843775 - core[0].svIdle(17), plen 0: [] -EVENT[2438]: 0.252669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2439]: 0.252682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2440]: 0.252698100 - core[1].svIdle(17), plen 0: [] -EVENT[2441]: 0.252813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2442]: 0.252828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2443]: 0.252843775 - core[0].svIdle(17), plen 0: [] -EVENT[2444]: 0.253669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2445]: 0.253682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2446]: 0.253698075 - core[1].svIdle(17), plen 0: [] -EVENT[2447]: 0.253813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2448]: 0.253828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2449]: 0.253843825 - core[0].svIdle(17), plen 0: [] -EVENT[2450]: 0.254669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2451]: 0.254682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2452]: 0.254698075 - core[1].svIdle(17), plen 0: [] -EVENT[2453]: 0.254813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2454]: 0.254828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2455]: 0.254843775 - core[0].svIdle(17), plen 0: [] -EVENT[2456]: 0.255669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2457]: 0.255682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2458]: 0.255698325 - core[1].svIdle(17), plen 0: [] -EVENT[2459]: 0.255813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2460]: 0.255828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2461]: 0.255843775 - core[0].svIdle(17), plen 0: [] -EVENT[2462]: 0.256669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2463]: 0.256682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2464]: 0.256698100 - core[1].svIdle(17), plen 0: [] -EVENT[2465]: 0.256813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2466]: 0.256828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2467]: 0.256843775 - core[0].svIdle(17), plen 0: [] -EVENT[2468]: 0.257669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2469]: 0.257682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2470]: 0.257698075 - core[1].svIdle(17), plen 0: [] -EVENT[2471]: 0.257813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2472]: 0.257828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2473]: 0.257843825 - core[0].svIdle(17), plen 0: [] -EVENT[2474]: 0.258669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2475]: 0.258682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2476]: 0.258698075 - core[1].svIdle(17), plen 0: [] -EVENT[2477]: 0.258813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2478]: 0.258828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2479]: 0.258843775 - core[0].svIdle(17), plen 0: [] -EVENT[2480]: 0.259669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2481]: 0.259682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2482]: 0.259698325 - core[1].svIdle(17), plen 0: [] -EVENT[2483]: 0.259813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2484]: 0.259828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2485]: 0.259843775 - core[0].svIdle(17), plen 0: [] -EVENT[2486]: 0.260669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2487]: 0.260682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2488]: 0.260698100 - core[1].svIdle(17), plen 0: [] -EVENT[2489]: 0.260813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2490]: 0.260828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2491]: 0.260843775 - core[0].svIdle(17), plen 0: [] -EVENT[2492]: 0.261669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2493]: 0.261682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2494]: 0.261698075 - core[1].svIdle(17), plen 0: [] -EVENT[2495]: 0.261813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2496]: 0.261828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2497]: 0.261843825 - core[0].svIdle(17), plen 0: [] -EVENT[2498]: 0.262669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2499]: 0.262682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2500]: 0.262698325 - core[1].svIdle(17), plen 0: [] -EVENT[2501]: 0.262813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2502]: 0.262828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2503]: 0.262843775 - core[0].svIdle(17), plen 0: [] -EVENT[2504]: 0.263669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2505]: 0.263682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2506]: 0.263698100 - core[1].svIdle(17), plen 0: [] -EVENT[2507]: 0.263813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2508]: 0.263828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2509]: 0.263843775 - core[0].svIdle(17), plen 0: [] -EVENT[2510]: 0.264669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2511]: 0.264682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2512]: 0.264698075 - core[1].svIdle(17), plen 0: [] -EVENT[2513]: 0.264813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2514]: 0.264828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2515]: 0.264843825 - core[0].svIdle(17), plen 0: [] -EVENT[2516]: 0.265669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2517]: 0.265682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2518]: 0.265698075 - core[1].svIdle(17), plen 0: [] -EVENT[2519]: 0.265813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2520]: 0.265828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2521]: 0.265843775 - core[0].svIdle(17), plen 0: [] -EVENT[2522]: 0.266669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2523]: 0.266682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2524]: 0.266698325 - core[1].svIdle(17), plen 0: [] -EVENT[2525]: 0.266813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2526]: 0.266828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2527]: 0.266843775 - core[0].svIdle(17), plen 0: [] -EVENT[2528]: 0.267669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2529]: 0.267682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2530]: 0.267698100 - core[1].svIdle(17), plen 0: [] -EVENT[2531]: 0.267813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2532]: 0.267828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2533]: 0.267843775 - core[0].svIdle(17), plen 0: [] -EVENT[2534]: 0.268669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2535]: 0.268682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2536]: 0.268698075 - core[1].svIdle(17), plen 0: [] -EVENT[2537]: 0.268813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2538]: 0.268828600 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2539]: 0.268843825 - core[0].svIdle(17), plen 0: [] -EVENT[2540]: 0.269669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2541]: 0.269682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2542]: 0.269698075 - core[1].svIdle(17), plen 0: [] -EVENT[2543]: 0.269813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2544]: 0.269828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2545]: 0.269843775 - core[0].svIdle(17), plen 0: [] -EVENT[2546]: 0.270669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2547]: 0.270682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2548]: 0.270698325 - core[1].svIdle(17), plen 0: [] -EVENT[2549]: 0.270813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2550]: 0.270828700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2551]: 0.270843775 - core[0].svIdle(17), plen 0: [] -EVENT[2552]: 0.271669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2553]: 0.271682975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2554]: 0.271698100 - core[1].svIdle(17), plen 0: [] -EVENT[2555]: 0.271813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2556]: 0.271828325 - core[0].svTaskStartReady(6), plen 0: [tid: 12286700] -EVENT[2557]: 0.271828325 - core[1].svTaskStartReady(6), plen 0: [tid: 12286700] -EVENT[2558]: 0.271840975 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2559]: 0.271856650 - core[0].svTaskStartExec(4), plen 0: [tid: 12286700] -EVENT[2560]: 0.271875150 - core[0].xTaskGenericNotify(44), plen 7: [xTaskToNotify: 12254080, ulValue: 0, eAction: 2, pulPreviousNotificationValue: 0] -EVENT[2561]: 0.271886225 - core[0].svTaskStartReady(6), plen 0: [tid: 12254080] -EVENT[2562]: 0.271886225 - core[1].svTaskStartReady(6), plen 0: [tid: 12254080] -EVENT[2563]: 0.271899375 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 100] -EVENT[2564]: 0.271915925 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[2565]: 0.271927300 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2566]: 0.271944250 - core[0].svTaskStartExec(4), plen 0: [tid: 12254080] -EVENT[2567]: 0.271962125 - core[0].ulTaskNotifyTake(37), plen 6: [xClearCountOnExit: 0, xTicksToWait: 4294967295] -EVENT[2568]: 0.271978075 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2569]: 0.271993975 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2570]: 0.272043200 - core[0].svPrint(26), plen 37: [msg: I (580) example: Got notify val 1 +EVENT[2404]: 0.246006250 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[2405]: 0.246017675 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2406]: 0.246034225 - core[1].svIdle(17), plen 0: [] +EVENT[2407]: 0.246425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2408]: 0.246439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2409]: 0.246455150 - core[1].svIdle(17), plen 0: [] +EVENT[2410]: 0.246546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2411]: 0.246562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2412]: 0.246577125 - core[0].svIdle(17), plen 0: [] +EVENT[2413]: 0.247425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2414]: 0.247439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2415]: 0.247454550 - core[1].svIdle(17), plen 0: [] +EVENT[2416]: 0.247546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2417]: 0.247562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2418]: 0.247577425 - core[0].svIdle(17), plen 0: [] +EVENT[2419]: 0.248425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2420]: 0.248439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2421]: 0.248454550 - core[1].svIdle(17), plen 0: [] +EVENT[2422]: 0.248546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2423]: 0.248562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2424]: 0.248577125 - core[0].svIdle(17), plen 0: [] +EVENT[2425]: 0.249425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2426]: 0.249439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2427]: 0.249454675 - core[1].svIdle(17), plen 0: [] +EVENT[2428]: 0.249546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2429]: 0.249562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2430]: 0.249577150 - core[0].svIdle(17), plen 0: [] +EVENT[2431]: 0.250425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2432]: 0.250439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2433]: 0.250454600 - core[1].svIdle(17), plen 0: [] +EVENT[2434]: 0.250546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2435]: 0.250562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2436]: 0.250577125 - core[0].svIdle(17), plen 0: [] +EVENT[2437]: 0.251425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2438]: 0.251439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2439]: 0.251454550 - core[1].svIdle(17), plen 0: [] +EVENT[2440]: 0.251546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2441]: 0.251562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2442]: 0.251577425 - core[0].svIdle(17), plen 0: [] +EVENT[2443]: 0.252425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2444]: 0.252439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2445]: 0.252454550 - core[1].svIdle(17), plen 0: [] +EVENT[2446]: 0.252546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2447]: 0.252562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2448]: 0.252577125 - core[0].svIdle(17), plen 0: [] +EVENT[2449]: 0.253425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2450]: 0.253443075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2451]: 0.253458200 - core[1].svIdle(17), plen 0: [] +EVENT[2452]: 0.253546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2453]: 0.253562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2454]: 0.253577125 - core[0].svIdle(17), plen 0: [] +EVENT[2455]: 0.254425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2456]: 0.254439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2457]: 0.254454550 - core[1].svIdle(17), plen 0: [] +EVENT[2458]: 0.254546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2459]: 0.254562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2460]: 0.254577425 - core[0].svIdle(17), plen 0: [] +EVENT[2461]: 0.255425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2462]: 0.255439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2463]: 0.255454550 - core[1].svIdle(17), plen 0: [] +EVENT[2464]: 0.255546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2465]: 0.255562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2466]: 0.255577125 - core[0].svIdle(17), plen 0: [] +EVENT[2467]: 0.256425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2468]: 0.256439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2469]: 0.256454675 - core[1].svIdle(17), plen 0: [] +EVENT[2470]: 0.256546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2471]: 0.256562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2472]: 0.256577150 - core[0].svIdle(17), plen 0: [] +EVENT[2473]: 0.257425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2474]: 0.257439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2475]: 0.257454600 - core[1].svIdle(17), plen 0: [] +EVENT[2476]: 0.257546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2477]: 0.257562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2478]: 0.257577125 - core[0].svIdle(17), plen 0: [] +EVENT[2479]: 0.258425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2480]: 0.258439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2481]: 0.258454550 - core[1].svIdle(17), plen 0: [] +EVENT[2482]: 0.258546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2483]: 0.258562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2484]: 0.258577425 - core[0].svIdle(17), plen 0: [] +EVENT[2485]: 0.259425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2486]: 0.259439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2487]: 0.259454550 - core[1].svIdle(17), plen 0: [] +EVENT[2488]: 0.259546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2489]: 0.259562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2490]: 0.259577125 - core[0].svIdle(17), plen 0: [] +EVENT[2491]: 0.260425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2492]: 0.260439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2493]: 0.260454675 - core[1].svIdle(17), plen 0: [] +EVENT[2494]: 0.260546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2495]: 0.260562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2496]: 0.260577150 - core[0].svIdle(17), plen 0: [] +EVENT[2497]: 0.261425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2498]: 0.261439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2499]: 0.261454600 - core[1].svIdle(17), plen 0: [] +EVENT[2500]: 0.261546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2501]: 0.261562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2502]: 0.261577125 - core[0].svIdle(17), plen 0: [] +EVENT[2503]: 0.262425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2504]: 0.262439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2505]: 0.262454550 - core[1].svIdle(17), plen 0: [] +EVENT[2506]: 0.262546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2507]: 0.262562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2508]: 0.262577425 - core[0].svIdle(17), plen 0: [] +EVENT[2509]: 0.263425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2510]: 0.263439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2511]: 0.263454550 - core[1].svIdle(17), plen 0: [] +EVENT[2512]: 0.263546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2513]: 0.263562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2514]: 0.263577125 - core[0].svIdle(17), plen 0: [] +EVENT[2515]: 0.264425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2516]: 0.264439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2517]: 0.264454675 - core[1].svIdle(17), plen 0: [] +EVENT[2518]: 0.264546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2519]: 0.264562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2520]: 0.264577150 - core[0].svIdle(17), plen 0: [] +EVENT[2521]: 0.265425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2522]: 0.265443675 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2523]: 0.265458825 - core[1].svIdle(17), plen 0: [] +EVENT[2524]: 0.265546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2525]: 0.265562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2526]: 0.265577125 - core[0].svIdle(17), plen 0: [] +EVENT[2527]: 0.266425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2528]: 0.266439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2529]: 0.266454550 - core[1].svIdle(17), plen 0: [] +EVENT[2530]: 0.266546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2531]: 0.266562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2532]: 0.266577425 - core[0].svIdle(17), plen 0: [] +EVENT[2533]: 0.267425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2534]: 0.267439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2535]: 0.267454550 - core[1].svIdle(17), plen 0: [] +EVENT[2536]: 0.267546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2537]: 0.267562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2538]: 0.267577125 - core[0].svIdle(17), plen 0: [] +EVENT[2539]: 0.268425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2540]: 0.268439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2541]: 0.268454675 - core[1].svIdle(17), plen 0: [] +EVENT[2542]: 0.268546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2543]: 0.268562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2544]: 0.268577150 - core[0].svIdle(17), plen 0: [] +EVENT[2545]: 0.269425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2546]: 0.269439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2547]: 0.269454600 - core[1].svIdle(17), plen 0: [] +EVENT[2548]: 0.269546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2549]: 0.269562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2550]: 0.269577125 - core[0].svIdle(17), plen 0: [] +EVENT[2551]: 0.270425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2552]: 0.270439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2553]: 0.270454550 - core[1].svIdle(17), plen 0: [] +EVENT[2554]: 0.270546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2555]: 0.270562100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2556]: 0.270577425 - core[0].svIdle(17), plen 0: [] +EVENT[2557]: 0.271425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2558]: 0.271439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2559]: 0.271454550 - core[1].svIdle(17), plen 0: [] +EVENT[2560]: 0.271546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2561]: 0.271562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2562]: 0.271577125 - core[0].svIdle(17), plen 0: [] +EVENT[2563]: 0.272425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2564]: 0.272439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2565]: 0.272454675 - core[1].svIdle(17), plen 0: [] +EVENT[2566]: 0.272546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2567]: 0.272561675 - core[0].svTaskStartReady(6), plen 0: [tid: 12284596] +EVENT[2568]: 0.272561675 - core[1].svTaskStartReady(6), plen 0: [tid: 12284596] +EVENT[2569]: 0.272574250 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2570]: 0.272589925 - core[0].svTaskStartExec(4), plen 0: [tid: 12284596] +EVENT[2571]: 0.272608100 - core[0].xTaskGenericNotify(44), plen 7: [xTaskToNotify: 12274964, ulValue: 0, eAction: 2, pulPreviousNotificationValue: 0] +EVENT[2572]: 0.272619125 - core[0].svTaskStartReady(6), plen 0: [tid: 12274964] +EVENT[2573]: 0.272619125 - core[1].svTaskStartReady(6), plen 0: [tid: 12274964] +EVENT[2574]: 0.272632225 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 100] +EVENT[2575]: 0.272648775 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[2576]: 0.272660150 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2577]: 0.272677100 - core[0].svTaskStartExec(4), plen 0: [tid: 12274964] +EVENT[2578]: 0.272690850 - core[0].ulTaskNotifyTake(37), plen 6: [xClearCountOnExit: 0, xTicksToWait: 4294967295] +EVENT[2579]: 0.272706775 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2580]: 0.272722800 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2581]: 0.272764375 - core[0].svPrint(26), plen 37: [msg: I (568) example: Got notify val 1 , lvl: 0, unused: 0] -[0.272043200] LOG: I (580) example: Got notify val 1 -EVENT[2571]: 0.272059500 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2572]: 0.272075450 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2573]: 0.272119800 - core[0].svPrint(26), plen 34: [msg: I (580) example: Wait notify 1 +[0.272764375] LOG: I (568) example: Got notify val 1 +EVENT[2582]: 0.272784725 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2583]: 0.272800650 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2584]: 0.272837200 - core[0].svPrint(26), plen 34: [msg: I (568) example: Wait notify 1 , lvl: 0, unused: 0] -[0.272119800] LOG: I (580) example: Wait notify 1 -EVENT[2574]: 0.272138175 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[2575]: 0.272149575 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2576]: 0.272165625 - core[0].svIdle(17), plen 0: [] -EVENT[2577]: 0.272669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2578]: 0.272682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2579]: 0.272698075 - core[1].svIdle(17), plen 0: [] -EVENT[2580]: 0.272813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2581]: 0.272828325 - core[0].svTaskStartReady(6), plen 0: [tid: 12292716] -EVENT[2582]: 0.272828325 - core[1].svTaskStartReady(6), plen 0: [tid: 12292716] -EVENT[2583]: 0.272840975 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2584]: 0.272856775 - core[0].svTaskStartExec(4), plen 0: [tid: 12292716] -EVENT[2585]: 0.272871200 - core[0].xTaskGenericNotify(44), plen 7: [xTaskToNotify: 12254080, ulValue: 0, eAction: 2, pulPreviousNotificationValue: 0] -EVENT[2586]: 0.272882200 - core[0].svTaskStartReady(6), plen 0: [tid: 12254080] -EVENT[2587]: 0.272882200 - core[1].svTaskStartReady(6), plen 0: [tid: 12254080] -EVENT[2588]: 0.272895325 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 100] -EVENT[2589]: 0.272911925 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[2590]: 0.272923300 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2591]: 0.272940250 - core[0].svTaskStartExec(4), plen 0: [tid: 12254080] -EVENT[2592]: 0.272953950 - core[0].ulTaskNotifyTake(37), plen 6: [xClearCountOnExit: 0, xTicksToWait: 4294967295] -EVENT[2593]: 0.272969875 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2594]: 0.272985925 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2595]: 0.273035525 - core[0].svPrint(26), plen 37: [msg: I (581) example: Got notify val 1 +[0.272837200] LOG: I (568) example: Wait notify 1 +EVENT[2585]: 0.272855425 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[2586]: 0.272866775 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2587]: 0.272882700 - core[0].svIdle(17), plen 0: [] +EVENT[2588]: 0.273425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2589]: 0.273439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2590]: 0.273454675 - core[1].svIdle(17), plen 0: [] +EVENT[2591]: 0.273546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2592]: 0.273561675 - core[0].svTaskStartReady(6), plen 0: [tid: 12290612] +EVENT[2593]: 0.273561675 - core[1].svTaskStartReady(6), plen 0: [tid: 12290612] +EVENT[2594]: 0.273574250 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2595]: 0.273589925 - core[0].svTaskStartExec(4), plen 0: [tid: 12290612] +EVENT[2596]: 0.273604300 - core[0].xTaskGenericNotify(44), plen 7: [xTaskToNotify: 12274964, ulValue: 0, eAction: 2, pulPreviousNotificationValue: 0] +EVENT[2597]: 0.273615325 - core[0].svTaskStartReady(6), plen 0: [tid: 12274964] +EVENT[2598]: 0.273615325 - core[1].svTaskStartReady(6), plen 0: [tid: 12274964] +EVENT[2599]: 0.273628425 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 100] +EVENT[2600]: 0.273644975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[2601]: 0.273656350 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2602]: 0.273673300 - core[0].svTaskStartExec(4), plen 0: [tid: 12274964] +EVENT[2603]: 0.273687050 - core[0].ulTaskNotifyTake(37), plen 6: [xClearCountOnExit: 0, xTicksToWait: 4294967295] +EVENT[2604]: 0.273702975 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2605]: 0.273719000 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2606]: 0.273756475 - core[0].svPrint(26), plen 37: [msg: I (569) example: Got notify val 1 , lvl: 0, unused: 0] -[0.273035525] LOG: I (581) example: Got notify val 1 -EVENT[2596]: 0.273051825 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2597]: 0.273067775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2598]: 0.273112250 - core[0].svPrint(26), plen 34: [msg: I (581) example: Wait notify 2 +[0.273756475] LOG: I (569) example: Got notify val 1 +EVENT[2607]: 0.273776650 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2608]: 0.273792575 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2609]: 0.273829125 - core[0].svPrint(26), plen 34: [msg: I (569) example: Wait notify 2 , lvl: 0, unused: 0] -[0.273112250] LOG: I (581) example: Wait notify 2 -EVENT[2599]: 0.273130625 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[2600]: 0.273142025 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2601]: 0.273158075 - core[0].svIdle(17), plen 0: [] -EVENT[2602]: 0.273669400 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2603]: 0.273682925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2604]: 0.273698075 - core[1].svIdle(17), plen 0: [] -EVENT[2605]: 0.273813200 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2606]: 0.273828325 - core[0].svTaskStartReady(6), plen 0: [tid: 12298716] -EVENT[2607]: 0.273828325 - core[1].svTaskStartReady(6), plen 0: [tid: 12298716] -EVENT[2608]: 0.273840975 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2609]: 0.273856775 - core[0].svTaskStartExec(4), plen 0: [tid: 12298716] -EVENT[2610]: 0.273871200 - core[0].xTaskGenericNotify(44), plen 7: [xTaskToNotify: 12254080, ulValue: 0, eAction: 2, pulPreviousNotificationValue: 0] -EVENT[2611]: 0.273882200 - core[0].svTaskStartReady(6), plen 0: [tid: 12254080] -EVENT[2612]: 0.273882200 - core[1].svTaskStartReady(6), plen 0: [tid: 12254080] -EVENT[2613]: 0.273895325 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 100] -EVENT[2614]: 0.273911925 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[2615]: 0.273923300 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2616]: 0.273940250 - core[0].svTaskStartExec(4), plen 0: [tid: 12254080] -EVENT[2617]: 0.273953950 - core[0].ulTaskNotifyTake(37), plen 6: [xClearCountOnExit: 0, xTicksToWait: 4294967295] -EVENT[2618]: 0.273969875 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2619]: 0.273985925 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2620]: 0.274031175 - core[0].svPrint(26), plen 37: [msg: I (582) example: Got notify val 1 +[0.273829125] LOG: I (569) example: Wait notify 2 +EVENT[2610]: 0.273847350 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[2611]: 0.273858700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2612]: 0.273874625 - core[0].svIdle(17), plen 0: [] +EVENT[2613]: 0.274425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2614]: 0.274439400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2615]: 0.274454675 - core[1].svIdle(17), plen 0: [] +EVENT[2616]: 0.274546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2617]: 0.274562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2618]: 0.274577150 - core[0].svIdle(17), plen 0: [] +EVENT[2619]: 0.275425900 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2620]: 0.275439450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2621]: 0.275454600 - core[1].svIdle(17), plen 0: [] +EVENT[2622]: 0.275546700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2623]: 0.275561650 - core[0].svTaskStartReady(6), plen 0: [tid: 12296612] +EVENT[2624]: 0.275561650 - core[1].svTaskStartReady(6), plen 0: [tid: 12296612] +EVENT[2625]: 0.275574300 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2626]: 0.275589975 - core[0].svTaskStartExec(4), plen 0: [tid: 12296612] +EVENT[2627]: 0.275604400 - core[0].xTaskGenericNotify(44), plen 7: [xTaskToNotify: 12274964, ulValue: 0, eAction: 2, pulPreviousNotificationValue: 0] +EVENT[2628]: 0.275615400 - core[0].svTaskStartReady(6), plen 0: [tid: 12274964] +EVENT[2629]: 0.275615400 - core[1].svTaskStartReady(6), plen 0: [tid: 12274964] +EVENT[2630]: 0.275628550 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 100] +EVENT[2631]: 0.275645125 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[2632]: 0.275656475 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2633]: 0.275673425 - core[0].svTaskStartExec(4), plen 0: [tid: 12274964] +EVENT[2634]: 0.275687250 - core[0].ulTaskNotifyTake(37), plen 6: [xClearCountOnExit: 0, xTicksToWait: 4294967295] +EVENT[2635]: 0.275703250 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2636]: 0.275719275 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2637]: 0.275756850 - core[0].svPrint(26), plen 37: [msg: I (571) example: Got notify val 1 , lvl: 0, unused: 0] -[0.274031175] LOG: I (582) example: Got notify val 1 -EVENT[2621]: 0.329656225 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2622]: 0.329664950 - core[0].svTraceStop(11), plen 0: [] -EVENT[2623]: 0.329664950 - core[1].svTraceStop(11), plen 0: [] -Processed 2624 events +[0.275756850] LOG: I (571) example: Got notify val 1 +EVENT[2638]: 0.329911225 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2639]: 0.329919950 - core[0].svTraceStop(11), plen 0: [] +EVENT[2640]: 0.329919950 - core[1].svTraceStop(11), plen 0: [] +Processed 2641 events =============== LOG TRACE REPORT =============== Processed 60 log messages. =============== HEAP TRACE REPORT =============== Processed 99 heap events. -[0.001529550] HEAP: Allocated 8 bytes @ 0x3ffb70d8 from task "main" on core 0 by: +[0.001637325] HEAP: Allocated 8 bytes @ 0x3ffb68a0 from task "main" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:87 -/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 10) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.001864250] HEAP: Allocated 2500 bytes @ 0x3ffb70e8 from task "main" on core 0 by: +[0.001939050] HEAP: Allocated 2500 bytes @ 0x3ffb68b0 from task "main" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:231 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:86 (discriminator 2) -/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 10) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.001904100] HEAP: Allocated 340 bytes @ 0x3ffb7aec from task "main" on core 0 by: +[0.001979950] HEAP: Allocated 340 bytes @ 0x3ffb72b4 from task "main" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:236 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:86 (discriminator 2) -/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 10) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.002037875] HEAP: Allocated 124 bytes @ 0x3ffb7c50 from task "alloc0" on core 0 by: +[0.002130925] HEAP: Allocated 124 bytes @ 0x3ffb7418 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/queue.c:545 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:48 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.002107400] HEAP: Allocated 2500 bytes @ 0x3ffb7cd0 from task "alloc0" on core 0 by: +[0.002205450] HEAP: Allocated 2500 bytes @ 0x3ffb7498 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:231 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:57 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.002141800] HEAP: Allocated 340 bytes @ 0x3ffb86d4 from task "alloc0" on core 0 by: +[0.002240900] HEAP: Allocated 340 bytes @ 0x3ffb7e9c from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:236 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:57 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.002245650] HEAP: Allocated 1 bytes @ 0x3ffb8838 from task "alloc0" on core 0 by: +[0.002345850] HEAP: Allocated 1 bytes @ 0x3ffb8000 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.002782075] HEAP: Allocated 8 bytes @ 0x3ffb8858 from task "main" on core 0 by: +[0.002949925] HEAP: Allocated 8 bytes @ 0x3ffb8020 from task "main" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:87 -/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 10) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.002860725] HEAP: Allocated 2500 bytes @ 0x3ffb8868 from task "main" on core 0 by: +[0.003004025] HEAP: Allocated 2500 bytes @ 0x3ffb8030 from task "main" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:231 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:86 (discriminator 2) -/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 10) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.002902375] HEAP: Allocated 340 bytes @ 0x3ffb926c from task "main" on core 0 by: +[0.003044650] HEAP: Allocated 340 bytes @ 0x3ffb8a34 from task "main" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:236 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:86 (discriminator 2) -/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 10) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.003037100] HEAP: Allocated 124 bytes @ 0x3ffb93d0 from task "alloc1" on core 0 by: +[0.003179725] HEAP: Allocated 124 bytes @ 0x3ffb8b98 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/queue.c:545 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:48 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.003090750] HEAP: Allocated 2500 bytes @ 0x3ffb9450 from task "alloc1" on core 0 by: +[0.003234475] HEAP: Allocated 2500 bytes @ 0x3ffb8c18 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:231 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:57 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.003125150] HEAP: Allocated 340 bytes @ 0x3ffb9e54 from task "alloc1" on core 0 by: +[0.003269925] HEAP: Allocated 340 bytes @ 0x3ffb961c from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:236 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:57 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.003220600] HEAP: Allocated 2 bytes @ 0x3ffb9fb8 from task "alloc1" on core 0 by: +[0.003366350] HEAP: Allocated 2 bytes @ 0x3ffb9780 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.003544375] HEAP: Allocated 8 bytes @ 0x3ffb8848 from task "main" on core 0 by: +[0.003736750] HEAP: Allocated 8 bytes @ 0x3ffb8010 from task "main" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:87 -/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 10) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.003597875] HEAP: Allocated 2500 bytes @ 0x3ffb9fd8 from task "main" on core 0 by: +[0.003802900] HEAP: Allocated 2500 bytes @ 0x3ffb97a0 from task "main" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:231 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:86 (discriminator 2) -/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 10) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.003637125] HEAP: Allocated 340 bytes @ 0x3ffba9dc from task "main" on core 0 by: +[0.003855950] HEAP: Allocated 340 bytes @ 0x3ffba1a4 from task "main" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:236 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:86 (discriminator 2) -/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 10) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.003887725] HEAP: Allocated 124 bytes @ 0x3ffbab40 from task "alloc2" on core 0 by: +[0.004030875] HEAP: Allocated 124 bytes @ 0x3ffba308 from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/queue.c:545 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:48 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.003941625] HEAP: Allocated 2500 bytes @ 0x3ffbabc0 from task "alloc2" on core 0 by: +[0.004085625] HEAP: Allocated 2500 bytes @ 0x3ffba388 from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:231 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:57 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.003976025] HEAP: Allocated 340 bytes @ 0x3ffbb5c4 from task "alloc2" on core 0 by: +[0.004121100] HEAP: Allocated 340 bytes @ 0x3ffbad8c from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:236 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:57 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.004075375] HEAP: Allocated 3 bytes @ 0x3ffb9fc8 from task "alloc2" on core 0 by: +[0.004221350] HEAP: Allocated 3 bytes @ 0x3ffb9790 from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.031895800] HEAP: Allocated 2 bytes @ 0x3ffbb728 from task "alloc0" on core 0 by: +[0.032626425] HEAP: Allocated 2 bytes @ 0x3ffbaef0 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.032891700] HEAP: Allocated 4 bytes @ 0x3ffbb738 from task "alloc1" on core 0 by: +[0.033638000] HEAP: Allocated 4 bytes @ 0x3ffbaf00 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.033892175] HEAP: Allocated 6 bytes @ 0x3ffbb748 from task "alloc2" on core 0 by: +[0.033931975] HEAP: Allocated 6 bytes @ 0x3ffbaf20 from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.061891850] HEAP: Allocated 3 bytes @ 0x3ffbb758 from task "alloc0" on core 0 by: +[0.062624925] HEAP: Allocated 3 bytes @ 0x3ffbaf10 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.062891850] HEAP: Allocated 6 bytes @ 0x3ffbb768 from task "alloc1" on core 0 by: +[0.063638150] HEAP: Allocated 6 bytes @ 0x3ffbaf30 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.063892175] HEAP: Allocated 9 bytes @ 0x3ffbb778 from task "alloc2" on core 0 by: +[0.063937800] HEAP: Allocated 9 bytes @ 0x3ffbaf50 from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.091892175] HEAP: Allocated 4 bytes @ 0x3ffbb788 from task "alloc0" on core 0 by: +[0.092625300] HEAP: Allocated 4 bytes @ 0x3ffbaf40 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.092892175] HEAP: Allocated 8 bytes @ 0x3ffbb798 from task "alloc1" on core 0 by: +[0.093638150] HEAP: Allocated 8 bytes @ 0x3ffbaf60 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.093892000] HEAP: Allocated 12 bytes @ 0x3ffbb7a8 from task "alloc2" on core 0 by: +[0.093933750] HEAP: Allocated 12 bytes @ 0x3ffbaf84 from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.121891850] HEAP: Allocated 5 bytes @ 0x3ffbb7b8 from task "alloc0" on core 0 by: +[0.122624925] HEAP: Allocated 5 bytes @ 0x3ffbaf70 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.122891850] HEAP: Allocated 10 bytes @ 0x3ffbb7c8 from task "alloc1" on core 0 by: +[0.123638150] HEAP: Allocated 10 bytes @ 0x3ffbaf94 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.123892175] HEAP: Allocated 15 bytes @ 0x3ffbb7d8 from task "alloc2" on core 0 by: +[0.123936400] HEAP: Allocated 15 bytes @ 0x3ffbafbc from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.151892175] HEAP: Allocated 6 bytes @ 0x3ffbb7ec from task "alloc0" on core 0 by: +[0.152625450] HEAP: Allocated 6 bytes @ 0x3ffbafa4 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.152892175] HEAP: Allocated 12 bytes @ 0x3ffbb7fc from task "alloc1" on core 0 by: +[0.153638150] HEAP: Allocated 12 bytes @ 0x3ffbafd0 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.153892175] HEAP: Allocated 18 bytes @ 0x3ffbb80c from task "alloc2" on core 0 by: +[0.153933750] HEAP: Allocated 18 bytes @ 0x3ffbaffc from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.181891850] HEAP: Allocated 7 bytes @ 0x3ffbb824 from task "alloc0" on core 0 by: +[0.182624925] HEAP: Allocated 7 bytes @ 0x3ffbafe0 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.182891700] HEAP: Allocated 14 bytes @ 0x3ffbb834 from task "alloc1" on core 0 by: +[0.183638150] HEAP: Allocated 14 bytes @ 0x3ffbb014 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.183892175] HEAP: Allocated 21 bytes @ 0x3ffbb848 from task "alloc2" on core 0 by: +[0.183937500] HEAP: Allocated 21 bytes @ 0x3ffbb048 from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.211892175] HEAP: Allocated 8 bytes @ 0x3ffbb864 from task "alloc0" on core 0 by: +[0.212626475] HEAP: Allocated 8 bytes @ 0x3ffbb028 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.212892175] HEAP: Allocated 16 bytes @ 0x3ffbb874 from task "alloc1" on core 0 by: +[0.213638150] HEAP: Allocated 16 bytes @ 0x3ffbb064 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.213892175] HEAP: Allocated 24 bytes @ 0x3ffbb888 from task "alloc2" on core 0 by: +[0.213933875] HEAP: Allocated 24 bytes @ 0x3ffbb09c from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.241891850] HEAP: Allocated 9 bytes @ 0x3ffbb8a4 from task "alloc0" on core 0 by: +[0.242625100] HEAP: Allocated 9 bytes @ 0x3ffbb038 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.242891850] HEAP: Allocated 18 bytes @ 0x3ffbb8b4 from task "alloc1" on core 0 by: +[0.243625450] HEAP: Allocated 18 bytes @ 0x3ffbb078 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.243892175] HEAP: Allocated 27 bytes @ 0x3ffbb8cc from task "alloc2" on core 0 by: +[0.245626175] HEAP: Allocated 27 bytes @ 0x3ffbb0b8 from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 diff --git a/tools/esp_app_trace/test/sysview/expected_output.json b/tools/esp_app_trace/test/sysview/expected_output.json index 4a42e26841..581d0337df 100644 --- a/tools/esp_app_trace/test/sysview/expected_output.json +++ b/tools/esp_app_trace/test/sysview/expected_output.json @@ -27,7 +27,7 @@ "ram_base": 1061158912, "sys_freq": 40000000 }, - "ts": 6.65e-06 + "ts": 6.675e-06 }, { "core_id": 1, @@ -40,7 +40,7 @@ "ram_base": 1061158912, "sys_freq": 40000000 }, - "ts": 6.65e-06 + "ts": 6.675e-06 }, { "core_id": 0, @@ -50,7 +50,7 @@ "params": { "desc": "N=FreeRTOS Application,D=esp32,C=xtensa,O=FreeRTOS" }, - "ts": 1.855e-05 + "ts": 1.86e-05 }, { "core_id": 1, @@ -60,7 +60,7 @@ "params": { "desc": "N=FreeRTOS Application,D=esp32,C=xtensa,O=FreeRTOS" }, - "ts": 1.855e-05 + "ts": 1.86e-05 }, { "core_id": 0, @@ -70,7 +70,7 @@ "params": { "desc": "I#5=SysTick" }, - "ts": 2.7675e-05 + "ts": 2.775e-05 }, { "core_id": 1, @@ -80,7 +80,7 @@ "params": { "desc": "I#5=SysTick" }, - "ts": 2.7675e-05 + "ts": 2.775e-05 }, { "core_id": 0, @@ -90,7 +90,7 @@ "params": { "desc": "I#6=WIFI_MAC" }, - "ts": 4.9775e-05 + "ts": 4.5925e-05 }, { "core_id": 1, @@ -100,7 +100,7 @@ "params": { "desc": "I#6=WIFI_MAC" }, - "ts": 4.9775e-05 + "ts": 4.5925e-05 }, { "core_id": 0, @@ -110,7 +110,7 @@ "params": { "desc": "I#7=WIFI_NMI" }, - "ts": 6.3875e-05 + "ts": 6.0025e-05 }, { "core_id": 1, @@ -120,7 +120,7 @@ "params": { "desc": "I#7=WIFI_NMI" }, - "ts": 6.3875e-05 + "ts": 6.0025e-05 }, { "core_id": 0, @@ -130,7 +130,7 @@ "params": { "desc": "I#8=WIFI_BB" }, - "ts": 7.3825e-05 + "ts": 7.0125e-05 }, { "core_id": 1, @@ -140,7 +140,7 @@ "params": { "desc": "I#8=WIFI_BB" }, - "ts": 7.3825e-05 + "ts": 7.0125e-05 }, { "core_id": 0, @@ -150,7 +150,7 @@ "params": { "desc": "I#9=BT_MAC" }, - "ts": 8.75e-05 + "ts": 7.9875e-05 }, { "core_id": 1, @@ -160,7 +160,7 @@ "params": { "desc": "I#9=BT_MAC" }, - "ts": 8.75e-05 + "ts": 7.9875e-05 }, { "core_id": 0, @@ -170,7 +170,7 @@ "params": { "desc": "I#10=BT_BB" }, - "ts": 0.000101575 + "ts": 9.395e-05 }, { "core_id": 1, @@ -180,7 +180,7 @@ "params": { "desc": "I#10=BT_BB" }, - "ts": 0.000101575 + "ts": 9.395e-05 }, { "core_id": 0, @@ -190,7 +190,7 @@ "params": { "desc": "I#11=BT_BB_NMI" }, - "ts": 0.000112375 + "ts": 0.000108725 }, { "core_id": 1, @@ -200,7 +200,7 @@ "params": { "desc": "I#11=BT_BB_NMI" }, - "ts": 0.000112375 + "ts": 0.000108725 }, { "core_id": 0, @@ -210,7 +210,7 @@ "params": { "desc": "I#12=RWBT" }, - "ts": 0.0001223 + "ts": 0.000118675 }, { "core_id": 1, @@ -220,7 +220,7 @@ "params": { "desc": "I#12=RWBT" }, - "ts": 0.0001223 + "ts": 0.000118675 }, { "core_id": 0, @@ -230,7 +230,7 @@ "params": { "desc": "I#13=RWBLE" }, - "ts": 0.0001323 + "ts": 0.000128675 }, { "core_id": 1, @@ -240,7 +240,7 @@ "params": { "desc": "I#13=RWBLE" }, - "ts": 0.0001323 + "ts": 0.000128675 }, { "core_id": 0, @@ -250,7 +250,7 @@ "params": { "desc": "I#14=RWBT_NMI" }, - "ts": 0.0001468 + "ts": 0.000143225 }, { "core_id": 1, @@ -260,7 +260,7 @@ "params": { "desc": "I#14=RWBT_NMI" }, - "ts": 0.0001468 + "ts": 0.000143225 }, { "core_id": 0, @@ -270,7 +270,7 @@ "params": { "desc": "I#15=RWBLE_NMI" }, - "ts": 0.0001576 + "ts": 0.000154025 }, { "core_id": 1, @@ -280,7 +280,7 @@ "params": { "desc": "I#15=RWBLE_NMI" }, - "ts": 0.0001576 + "ts": 0.000154025 }, { "core_id": 0, @@ -290,7 +290,7 @@ "params": { "desc": "I#16=SLC0" }, - "ts": 0.0001719 + "ts": 0.00016835 }, { "core_id": 1, @@ -300,7 +300,7 @@ "params": { "desc": "I#16=SLC0" }, - "ts": 0.0001719 + "ts": 0.00016835 }, { "core_id": 0, @@ -310,7 +310,7 @@ "params": { "desc": "I#17=SLC1" }, - "ts": 0.00018955 + "ts": 0.000182075 }, { "core_id": 1, @@ -320,7 +320,7 @@ "params": { "desc": "I#17=SLC1" }, - "ts": 0.00018955 + "ts": 0.000182075 }, { "core_id": 0, @@ -330,7 +330,7 @@ "params": { "desc": "I#18=UHCI0" }, - "ts": 0.000199525 + "ts": 0.000196025 }, { "core_id": 1, @@ -340,7 +340,7 @@ "params": { "desc": "I#18=UHCI0" }, - "ts": 0.000199525 + "ts": 0.000196025 }, { "core_id": 0, @@ -350,7 +350,7 @@ "params": { "desc": "I#19=UHCI1" }, - "ts": 0.0002095 + "ts": 0.000206 }, { "core_id": 1, @@ -360,7 +360,7 @@ "params": { "desc": "I#19=UHCI1" }, - "ts": 0.0002095 + "ts": 0.000206 }, { "core_id": 0, @@ -370,7 +370,7 @@ "params": { "desc": "I#20=TG0_T0_LEVEL" }, - "ts": 0.00022475 + "ts": 0.000221275 }, { "core_id": 1, @@ -380,7 +380,7 @@ "params": { "desc": "I#20=TG0_T0_LEVEL" }, - "ts": 0.00022475 + "ts": 0.000221275 }, { "core_id": 0, @@ -390,7 +390,7 @@ "params": { "desc": "I#21=TG0_T1_LEVEL" }, - "ts": 0.00023615 + "ts": 0.0002327 }, { "core_id": 1, @@ -400,7 +400,7 @@ "params": { "desc": "I#21=TG0_T1_LEVEL" }, - "ts": 0.00023615 + "ts": 0.0002327 }, { "core_id": 0, @@ -410,7 +410,7 @@ "params": { "desc": "I#22=TG0_WDT_LEVEL" }, - "ts": 0.00025185 + "ts": 0.000248425 }, { "core_id": 1, @@ -420,7 +420,7 @@ "params": { "desc": "I#22=TG0_WDT_LEVEL" }, - "ts": 0.00025185 + "ts": 0.000248425 }, { "core_id": 0, @@ -430,7 +430,7 @@ "params": { "desc": "I#23=TG0_LACT_LEVEL" }, - "ts": 0.000263625 + "ts": 0.000260225 }, { "core_id": 1, @@ -440,7 +440,7 @@ "params": { "desc": "I#23=TG0_LACT_LEVEL" }, - "ts": 0.000263625 + "ts": 0.000260225 }, { "core_id": 0, @@ -450,7 +450,7 @@ "params": { "desc": "I#24=TG1_T0_LEVEL" }, - "ts": 0.00027905 + "ts": 0.00027565 }, { "core_id": 1, @@ -460,7 +460,7 @@ "params": { "desc": "I#24=TG1_T0_LEVEL" }, - "ts": 0.00027905 + "ts": 0.00027565 }, { "core_id": 0, @@ -470,7 +470,7 @@ "params": { "desc": "I#25=TG1_T1_LEVEL" }, - "ts": 0.00029445 + "ts": 0.00028725 }, { "core_id": 1, @@ -480,7 +480,7 @@ "params": { "desc": "I#25=TG1_T1_LEVEL" }, - "ts": 0.00029445 + "ts": 0.00028725 }, { "core_id": 0, @@ -490,7 +490,7 @@ "params": { "desc": "I#26=TG1_WDT_LEVEL" }, - "ts": 0.00031 + "ts": 0.000306775 }, { "core_id": 1, @@ -500,7 +500,7 @@ "params": { "desc": "I#26=TG1_WDT_LEVEL" }, - "ts": 0.00031 + "ts": 0.000306775 }, { "core_id": 0, @@ -510,7 +510,7 @@ "params": { "desc": "I#27=TG1_LACT_LEVEL" }, - "ts": 0.000321975 + "ts": 0.000318775 }, { "core_id": 1, @@ -520,7 +520,7 @@ "params": { "desc": "I#27=TG1_LACT_LEVEL" }, - "ts": 0.000321975 + "ts": 0.000318775 }, { "core_id": 0, @@ -530,7 +530,7 @@ "params": { "desc": "I#28=GPIO" }, - "ts": 0.000331875 + "ts": 0.0003287 }, { "core_id": 1, @@ -540,7 +540,7 @@ "params": { "desc": "I#28=GPIO" }, - "ts": 0.000331875 + "ts": 0.0003287 }, { "core_id": 0, @@ -550,7 +550,7 @@ "params": { "desc": "I#29=GPIO_NMI" }, - "ts": 0.000350775 + "ts": 0.000347625 }, { "core_id": 1, @@ -560,7 +560,7 @@ "params": { "desc": "I#29=GPIO_NMI" }, - "ts": 0.000350775 + "ts": 0.000347625 }, { "core_id": 0, @@ -570,7 +570,7 @@ "params": { "desc": "I#30=FROM_CPU0" }, - "ts": 0.000361675 + "ts": 0.00035855 }, { "core_id": 1, @@ -580,7 +580,7 @@ "params": { "desc": "I#30=FROM_CPU0" }, - "ts": 0.000361675 + "ts": 0.00035855 }, { "core_id": 0, @@ -590,7 +590,7 @@ "params": { "desc": "I#31=FROM_CPU1" }, - "ts": 0.000376375 + "ts": 0.0003693 }, { "core_id": 1, @@ -600,7 +600,7 @@ "params": { "desc": "I#31=FROM_CPU1" }, - "ts": 0.000376375 + "ts": 0.0003693 }, { "core_id": 0, @@ -610,7 +610,7 @@ "params": { "desc": "I#32=FROM_CPU2" }, - "ts": 0.0003872 + "ts": 0.000384075 }, { "core_id": 1, @@ -620,7 +620,7 @@ "params": { "desc": "I#32=FROM_CPU2" }, - "ts": 0.0003872 + "ts": 0.000384075 }, { "core_id": 0, @@ -630,7 +630,7 @@ "params": { "desc": "I#33=FROM_CPU3" }, - "ts": 0.0004019 + "ts": 0.000394825 }, { "core_id": 1, @@ -640,7 +640,7 @@ "params": { "desc": "I#33=FROM_CPU3" }, - "ts": 0.0004019 + "ts": 0.000394825 }, { "core_id": 0, @@ -650,7 +650,7 @@ "params": { "desc": "I#34=SPI0" }, - "ts": 0.00041565 + "ts": 0.0004086 }, { "core_id": 1, @@ -660,7 +660,7 @@ "params": { "desc": "I#34=SPI0" }, - "ts": 0.00041565 + "ts": 0.0004086 }, { "core_id": 0, @@ -670,7 +670,7 @@ "params": { "desc": "I#35=SPI1" }, - "ts": 0.0004254 + "ts": 0.000422675 }, { "core_id": 1, @@ -680,7 +680,7 @@ "params": { "desc": "I#35=SPI1" }, - "ts": 0.0004254 + "ts": 0.000422675 }, { "core_id": 0, @@ -690,7 +690,7 @@ "params": { "desc": "I#36=SPI2" }, - "ts": 0.000435175 + "ts": 0.0004339 }, { "core_id": 1, @@ -700,7 +700,7 @@ "params": { "desc": "I#36=SPI2" }, - "ts": 0.000435175 + "ts": 0.0004339 }, { "core_id": 0, @@ -730,7 +730,7 @@ "params": { "desc": "I#38=I2S0" }, - "ts": 0.00045885 + "ts": 0.000455975 }, { "core_id": 1, @@ -740,7 +740,7 @@ "params": { "desc": "I#38=I2S0" }, - "ts": 0.00045885 + "ts": 0.000455975 }, { "core_id": 0, @@ -750,7 +750,7 @@ "params": { "desc": "I#39=I2S1" }, - "ts": 0.0004686 + "ts": 0.000471025 }, { "core_id": 1, @@ -760,7 +760,7 @@ "params": { "desc": "I#39=I2S1" }, - "ts": 0.0004686 + "ts": 0.000471025 }, { "core_id": 0, @@ -770,7 +770,7 @@ "params": { "desc": "I#40=UART0" }, - "ts": 0.000478575 + "ts": 0.000482575 }, { "core_id": 1, @@ -780,7 +780,7 @@ "params": { "desc": "I#40=UART0" }, - "ts": 0.000478575 + "ts": 0.000482575 }, { "core_id": 0, @@ -790,7 +790,7 @@ "params": { "desc": "I#41=UART1" }, - "ts": 0.0004925 + "ts": 0.000493675 }, { "core_id": 1, @@ -800,7 +800,7 @@ "params": { "desc": "I#41=UART1" }, - "ts": 0.0004925 + "ts": 0.000493675 }, { "core_id": 0, @@ -810,7 +810,7 @@ "params": { "desc": "I#42=UART2" }, - "ts": 0.000506375 + "ts": 0.000509025 }, { "core_id": 1, @@ -820,7 +820,7 @@ "params": { "desc": "I#42=UART2" }, - "ts": 0.000506375 + "ts": 0.000509025 }, { "core_id": 0, @@ -830,7 +830,7 @@ "params": { "desc": "I#43=SDIO_HOST" }, - "ts": 0.00051715 + "ts": 0.000525125 }, { "core_id": 1, @@ -840,7 +840,7 @@ "params": { "desc": "I#43=SDIO_HOST" }, - "ts": 0.00051715 + "ts": 0.000525125 }, { "core_id": 0, @@ -850,7 +850,7 @@ "params": { "desc": "I#44=ETH_MAC" }, - "ts": 0.000527475 + "ts": 0.00053665 }, { "core_id": 1, @@ -860,7 +860,7 @@ "params": { "desc": "I#44=ETH_MAC" }, - "ts": 0.000527475 + "ts": 0.00053665 }, { "core_id": 0, @@ -870,7 +870,7 @@ "params": { "desc": "I#45=PWM0" }, - "ts": 0.000541625 + "ts": 0.00055275 }, { "core_id": 1, @@ -880,7 +880,7 @@ "params": { "desc": "I#45=PWM0" }, - "ts": 0.000541625 + "ts": 0.00055275 }, { "core_id": 0, @@ -890,7 +890,7 @@ "params": { "desc": "I#46=PWM1" }, - "ts": 0.0005553 + "ts": 0.0005676 }, { "core_id": 1, @@ -900,7 +900,7 @@ "params": { "desc": "I#46=PWM1" }, - "ts": 0.0005553 + "ts": 0.0005676 }, { "core_id": 0, @@ -910,7 +910,7 @@ "params": { "desc": "I#47=RESERVED" }, - "ts": 0.000565975 + "ts": 0.00057995 }, { "core_id": 1, @@ -920,7 +920,7 @@ "params": { "desc": "I#47=RESERVED" }, - "ts": 0.000565975 + "ts": 0.00057995 }, { "core_id": 0, @@ -930,7 +930,7 @@ "params": { "desc": "I#48=RESERVED" }, - "ts": 0.00057655 + "ts": 0.0005921 }, { "core_id": 1, @@ -940,7 +940,7 @@ "params": { "desc": "I#48=RESERVED" }, - "ts": 0.00057655 + "ts": 0.0005921 }, { "core_id": 0, @@ -950,7 +950,7 @@ "params": { "desc": "I#49=LEDC" }, - "ts": 0.000590325 + "ts": 0.000603425 }, { "core_id": 1, @@ -960,7 +960,7 @@ "params": { "desc": "I#49=LEDC" }, - "ts": 0.000590325 + "ts": 0.000603425 }, { "core_id": 0, @@ -970,7 +970,7 @@ "params": { "desc": "I#50=EFUSE" }, - "ts": 0.000604225 + "ts": 0.000622525 }, { "core_id": 1, @@ -980,7 +980,7 @@ "params": { "desc": "I#50=EFUSE" }, - "ts": 0.000604225 + "ts": 0.000622525 }, { "core_id": 0, @@ -990,7 +990,7 @@ "params": { "desc": "I#51=TWAI" }, - "ts": 0.000618075 + "ts": 0.00063395 }, { "core_id": 1, @@ -1000,7 +1000,7 @@ "params": { "desc": "I#51=TWAI" }, - "ts": 0.000618075 + "ts": 0.00063395 }, { "core_id": 0, @@ -1010,7 +1010,7 @@ "params": { "desc": "I#52=RTC_CORE" }, - "ts": 0.00062865 + "ts": 0.0006502 }, { "core_id": 1, @@ -1020,7 +1020,7 @@ "params": { "desc": "I#52=RTC_CORE" }, - "ts": 0.00062865 + "ts": 0.0006502 }, { "core_id": 0, @@ -1030,7 +1030,7 @@ "params": { "desc": "I#53=RMT" }, - "ts": 0.00063825 + "ts": 0.0006611 }, { "core_id": 1, @@ -1040,7 +1040,7 @@ "params": { "desc": "I#53=RMT" }, - "ts": 0.00063825 + "ts": 0.0006611 }, { "core_id": 0, @@ -1050,7 +1050,7 @@ "params": { "desc": "I#54=PCNT" }, - "ts": 0.000648075 + "ts": 0.0006721 }, { "core_id": 1, @@ -1060,7 +1060,7 @@ "params": { "desc": "I#54=PCNT" }, - "ts": 0.000648075 + "ts": 0.0006721 }, { "core_id": 0, @@ -1070,7 +1070,7 @@ "params": { "desc": "I#55=I2C_EXT0" }, - "ts": 0.0006627 + "ts": 0.00068805 }, { "core_id": 1, @@ -1080,7 +1080,7 @@ "params": { "desc": "I#55=I2C_EXT0" }, - "ts": 0.0006627 + "ts": 0.00068805 }, { "core_id": 0, @@ -1090,7 +1090,7 @@ "params": { "desc": "I#56=I2C_EXT1" }, - "ts": 0.000674475 + "ts": 0.000700025 }, { "core_id": 1, @@ -1100,7 +1100,7 @@ "params": { "desc": "I#56=I2C_EXT1" }, - "ts": 0.000674475 + "ts": 0.000700025 }, { "core_id": 0, @@ -1110,7 +1110,7 @@ "params": { "desc": "I#57=RSA" }, - "ts": 0.000689475 + "ts": 0.000710825 }, { "core_id": 1, @@ -1120,7 +1120,7 @@ "params": { "desc": "I#57=RSA" }, - "ts": 0.000689475 + "ts": 0.000710825 }, { "core_id": 0, @@ -1130,7 +1130,7 @@ "params": { "desc": "I#58=SPI1_DMA" }, - "ts": 0.000705425 + "ts": 0.0007269 }, { "core_id": 1, @@ -1140,7 +1140,7 @@ "params": { "desc": "I#58=SPI1_DMA" }, - "ts": 0.000705425 + "ts": 0.0007269 }, { "core_id": 0, @@ -1150,7 +1150,7 @@ "params": { "desc": "I#59=SPI2_DMA" }, - "ts": 0.00071735 + "ts": 0.000743075 }, { "core_id": 1, @@ -1160,7 +1160,7 @@ "params": { "desc": "I#59=SPI2_DMA" }, - "ts": 0.00071735 + "ts": 0.000743075 }, { "core_id": 0, @@ -1170,7 +1170,7 @@ "params": { "desc": "I#60=SPI3_DMA" }, - "ts": 0.000729475 + "ts": 0.00075505 }, { "core_id": 1, @@ -1180,7 +1180,7 @@ "params": { "desc": "I#60=SPI3_DMA" }, - "ts": 0.000729475 + "ts": 0.00075505 }, { "core_id": 0, @@ -1190,7 +1190,7 @@ "params": { "desc": "I#61=WDT" }, - "ts": 0.0007403 + "ts": 0.00076595 }, { "core_id": 1, @@ -1200,7 +1200,7 @@ "params": { "desc": "I#61=WDT" }, - "ts": 0.0007403 + "ts": 0.00076595 }, { "core_id": 0, @@ -1210,7 +1210,7 @@ "params": { "desc": "I#62=TIMER1" }, - "ts": 0.00076065 + "ts": 0.00078635 }, { "core_id": 1, @@ -1220,7 +1220,7 @@ "params": { "desc": "I#62=TIMER1" }, - "ts": 0.00076065 + "ts": 0.00078635 }, { "core_id": 0, @@ -1230,7 +1230,7 @@ "params": { "desc": "I#63=TIMER2" }, - "ts": 0.0007722 + "ts": 0.000797875 }, { "core_id": 1, @@ -1240,7 +1240,7 @@ "params": { "desc": "I#63=TIMER2" }, - "ts": 0.0007722 + "ts": 0.000797875 }, { "core_id": 0, @@ -1250,7 +1250,7 @@ "params": { "desc": "I#64=TG0_T0_EDGE" }, - "ts": 0.00078515 + "ts": 0.0008109 }, { "core_id": 1, @@ -1260,7 +1260,7 @@ "params": { "desc": "I#64=TG0_T0_EDGE" }, - "ts": 0.00078515 + "ts": 0.0008109 }, { "core_id": 0, @@ -1270,7 +1270,7 @@ "params": { "desc": "I#65=TG0_T1_EDGE" }, - "ts": 0.00080585 + "ts": 0.000827775 }, { "core_id": 1, @@ -1280,7 +1280,7 @@ "params": { "desc": "I#65=TG0_T1_EDGE" }, - "ts": 0.00080585 + "ts": 0.000827775 }, { "core_id": 0, @@ -1290,7 +1290,7 @@ "params": { "desc": "I#66=TG0_WDT_EDGE" }, - "ts": 0.00081875 + "ts": 0.00084455 }, { "core_id": 1, @@ -1300,7 +1300,7 @@ "params": { "desc": "I#66=TG0_WDT_EDGE" }, - "ts": 0.00081875 + "ts": 0.00084455 }, { "core_id": 0, @@ -1310,7 +1310,7 @@ "params": { "desc": "I#67=TG0_LACT_EDGE" }, - "ts": 0.00083605 + "ts": 0.0008618 }, { "core_id": 1, @@ -1320,7 +1320,7 @@ "params": { "desc": "I#67=TG0_LACT_EDGE" }, - "ts": 0.00083605 + "ts": 0.0008618 }, { "core_id": 0, @@ -1330,7 +1330,7 @@ "params": { "desc": "I#68=TG1_T0_EDGE" }, - "ts": 0.00084885 + "ts": 0.000874625 }, { "core_id": 1, @@ -1340,7 +1340,7 @@ "params": { "desc": "I#68=TG1_T0_EDGE" }, - "ts": 0.00084885 + "ts": 0.000874625 }, { "core_id": 0, @@ -1350,7 +1350,7 @@ "params": { "desc": "I#69=TG1_T1_EDGE" }, - "ts": 0.000861475 + "ts": 0.0008873 }, { "core_id": 1, @@ -1360,7 +1360,7 @@ "params": { "desc": "I#69=TG1_T1_EDGE" }, - "ts": 0.000861475 + "ts": 0.0008873 }, { "core_id": 0, @@ -1370,7 +1370,7 @@ "params": { "desc": "I#70=TG1_WDT_EDGE" }, - "ts": 0.000878425 + "ts": 0.00090425 }, { "core_id": 1, @@ -1380,7 +1380,7 @@ "params": { "desc": "I#70=TG1_WDT_EDGE" }, - "ts": 0.000878425 + "ts": 0.00090425 }, { "core_id": 0, @@ -1390,7 +1390,7 @@ "params": { "desc": "I#71=TG1_LACT_EDGE" }, - "ts": 0.000891925 + "ts": 0.0009179 }, { "core_id": 1, @@ -1400,7 +1400,7 @@ "params": { "desc": "I#71=TG1_LACT_EDGE" }, - "ts": 0.000891925 + "ts": 0.0009179 }, { "core_id": 0, @@ -1410,7 +1410,7 @@ "params": { "desc": "I#72=MMU_IA" }, - "ts": 0.000907825 + "ts": 0.0009332 }, { "core_id": 1, @@ -1420,7 +1420,7 @@ "params": { "desc": "I#72=MMU_IA" }, - "ts": 0.000907825 + "ts": 0.0009332 }, { "core_id": 0, @@ -1430,7 +1430,7 @@ "params": { "desc": "I#73=MPU_IA" }, - "ts": 0.0009233 + "ts": 0.000944575 }, { "core_id": 1, @@ -1440,7 +1440,7 @@ "params": { "desc": "I#73=MPU_IA" }, - "ts": 0.0009233 + "ts": 0.000944575 }, { "core_id": 0, @@ -1450,7 +1450,7 @@ "params": { "desc": "I#74=CACHE_IA" }, - "ts": 0.00093545 + "ts": 0.00096105 }, { "core_id": 1, @@ -1460,27 +1460,27 @@ "params": { "desc": "I#74=CACHE_IA" }, - "ts": 0.00093545 + "ts": 0.00096105 }, { "core_id": 0, "ctx_name": "IDLE1", - "id": 13, + "id": 12, "in_irq": false, "params": { - "time": 10000 + "cycles": 2890156 }, - "ts": 0.000944 + "ts": 0.000971475 }, { "core_id": 1, "ctx_name": "IDLE1", - "id": 13, + "id": 12, "in_irq": false, "params": { - "time": 10000 + "cycles": 2890156 }, - "ts": 0.000944 + "ts": 0.000971475 }, { "core_id": 0, @@ -1490,9 +1490,9 @@ "params": { "name": "ipc0", "prio": 24, - "tid": 12253204 + "tid": 12252316 }, - "ts": 0.001056 + "ts": 0.001084025 }, { "core_id": 1, @@ -1502,9 +1502,9 @@ "params": { "name": "ipc0", "prio": 24, - "tid": 12253204 + "tid": 12252316 }, - "ts": 0.001056 + "ts": 0.001084025 }, { "core_id": 0, @@ -1512,12 +1512,12 @@ "id": 21, "in_irq": false, "params": { - "base": 1073410064, - "sz": 1344, - "tid": 12253204, + "base": 1073409176, + "sz": 1352, + "tid": 12252316, "unused": 0 }, - "ts": 0.001061525 + "ts": 0.00108925 }, { "core_id": 1, @@ -1525,12 +1525,12 @@ "id": 21, "in_irq": false, "params": { - "base": 1073410064, - "sz": 1344, - "tid": 12253204, + "base": 1073409176, + "sz": 1352, + "tid": 12252316, "unused": 0 }, - "ts": 0.001061525 + "ts": 0.00108925 }, { "core_id": 0, @@ -1540,9 +1540,9 @@ "params": { "name": "ipc1", "prio": 24, - "tid": 12253560 + "tid": 12254724 }, - "ts": 0.00117065 + "ts": 0.0011949 }, { "core_id": 1, @@ -1552,9 +1552,9 @@ "params": { "name": "ipc1", "prio": 24, - "tid": 12253560 + "tid": 12254724 }, - "ts": 0.00117065 + "ts": 0.0011949 }, { "core_id": 0, @@ -1562,12 +1562,12 @@ "id": 21, "in_irq": false, "params": { - "base": 1073431024, + "base": 1073411584, "sz": 1344, - "tid": 12253560, + "tid": 12254724, "unused": 0 }, - "ts": 0.0011759 + "ts": 0.00120035 }, { "core_id": 1, @@ -1575,12 +1575,12 @@ "id": 21, "in_irq": false, "params": { - "base": 1073431024, + "base": 1073411584, "sz": 1344, - "tid": 12253560, + "tid": 12254724, "unused": 0 }, - "ts": 0.0011759 + "ts": 0.00120035 }, { "core_id": 0, @@ -1590,9 +1590,9 @@ "params": { "name": "main", "prio": 1, - "tid": 12254080 + "tid": 12274964 }, - "ts": 0.001327475 + "ts": 0.0013883 }, { "core_id": 1, @@ -1602,9 +1602,9 @@ "params": { "name": "main", "prio": 1, - "tid": 12254080 + "tid": 12274964 }, - "ts": 0.001327475 + "ts": 0.0013883 }, { "core_id": 0, @@ -1612,12 +1612,12 @@ "id": 21, "in_irq": false, "params": { - "base": 1073433076, - "sz": 1916, - "tid": 12254080, + "base": 1073429776, + "sz": 2400, + "tid": 12274964, "unused": 0 }, - "ts": 0.0013329 + "ts": 0.001393525 }, { "core_id": 1, @@ -1625,12 +1625,12 @@ "id": 21, "in_irq": false, "params": { - "base": 1073433076, - "sz": 1916, - "tid": 12254080, + "base": 1073429776, + "sz": 2400, + "tid": 12274964, "unused": 0 }, - "ts": 0.0013329 + "ts": 0.001393525 }, { "core_id": 0, @@ -1640,7 +1640,7 @@ "params": { "mod_cnt": 0 }, - "ts": 0.00134065 + "ts": 0.00140085 }, { "core_id": 1, @@ -1650,7 +1650,7 @@ "params": { "mod_cnt": 0 }, - "ts": 0.00134065 + "ts": 0.00140085 }, { "core_id": 1, @@ -1660,7 +1660,7 @@ "params": { "irq_num": 5 }, - "ts": 0.001348325 + "ts": 0.0014076 }, { "core_id": 0, @@ -1670,7 +1670,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0013597 + "ts": 0.001419325 }, { "core_id": 1, @@ -1678,7 +1678,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.001370975 + "ts": 0.00143035 }, { "core_id": 0, @@ -1686,9 +1686,9 @@ "id": 6, "in_irq": true, "params": { - "tid": 12254080 + "tid": 12274964 }, - "ts": 0.001381825 + "ts": 0.001441425 }, { "core_id": 1, @@ -1696,9 +1696,19 @@ "id": 6, "in_irq": false, "params": { - "tid": 12254080 + "tid": 12274964 }, - "ts": 0.001381825 + "ts": 0.001441425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.001452425 }, { "core_id": 0, @@ -1706,15 +1716,15 @@ "id": 3, "in_irq": false, "params": {}, - "ts": 0.0013969 + "ts": 0.00146355 }, { "core_id": 1, "ctx_name": "IDLE1", - "id": 17, + "id": 18, "in_irq": false, "params": {}, - "ts": 0.0014077 + "ts": 0.001474825 }, { "core_id": 0, @@ -1724,7 +1734,15 @@ "params": { "irq_num": 30 }, - "ts": 0.001419225 + "ts": 0.001485875 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.001496375 }, { "core_id": 0, @@ -1732,7 +1750,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.001430725 + "ts": 0.00150725 }, { "core_id": 0, @@ -1740,9 +1758,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12254080 + "tid": 12274964 }, - "ts": 0.001447075 + "ts": 0.00152385 }, { "core_id": 0, @@ -1754,7 +1772,7 @@ "evt_off": 512, "mod_id": 0 }, - "ts": 0.00147395 + "ts": 0.001550575 }, { "core_id": 1, @@ -1766,17 +1784,35 @@ "evt_off": 512, "mod_id": 0 }, - "ts": 0.00147395 + "ts": 0.001550575 }, { - "addr": "0x3ffb70d8", + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.001564275 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 3, + "in_irq": false, + "params": {}, + "ts": 0.001579775 + }, + { + "addr": "0x3ffb68a0", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6bef", - "0x400e693b", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3caf", + "0x400e3898", + "0x400880dc", "0x0", "0x0", "0x0", @@ -1787,61 +1823,17 @@ "id": 512, "in_irq": false, "size": 8, - "ts": 0.00152955 + "ts": 0.001637325 }, { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0016694 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.00168285 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0016995 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.00181295 - }, - { - "core_id": 0, - "ctx_name": "main", - "id": 3, - "in_irq": false, - "params": {}, - "ts": 0.00182845 - }, - { - "addr": "0x3ffb70e8", + "addr": "0x3ffb68b0", "callers": [ - "0x40081fef", - "0x40089414", - "0x4008b304", - "0x400d6c38", - "0x400e693b", - "0x40088d94", + "0x40081eff", + "0x40088720", + "0x4008a610", + "0x400d3cf8", + "0x400e3898", + "0x400880dc", "0x0", "0x0", "0x0", @@ -1852,17 +1844,17 @@ "id": 512, "in_irq": false, "size": 2500, - "ts": 0.00186425 + "ts": 0.00193905 }, { - "addr": "0x3ffb7aec", + "addr": "0x3ffb72b4", "callers": [ - "0x40081fef", - "0x40089414", - "0x4008b30f", - "0x400d6c38", - "0x400e693b", - "0x40088d94", + "0x40081eff", + "0x40088720", + "0x4008a61b", + "0x400d3cf8", + "0x400e3898", + "0x400880dc", "0x0", "0x0", "0x0", @@ -1873,7 +1865,7 @@ "id": 512, "in_irq": false, "size": 340, - "ts": 0.0019041 + "ts": 0.00197995 }, { "core_id": 0, @@ -1881,9 +1873,9 @@ "id": 8, "in_irq": false, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.001926775 + "ts": 0.002010625 }, { "core_id": 0, @@ -1893,9 +1885,9 @@ "params": { "name": "alloc0", "prio": 5, - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.0019394 + "ts": 0.002023275 }, { "core_id": 1, @@ -1905,9 +1897,9 @@ "params": { "name": "alloc0", "prio": 5, - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.0019394 + "ts": 0.002023275 }, { "core_id": 0, @@ -1915,12 +1907,12 @@ "id": 21, "in_irq": false, "params": { - "base": 1073443048, - "sz": 4294965096, - "tid": 12286700, + "base": 1073440944, + "sz": 4294965088, + "tid": 12284596, "unused": 0 }, - "ts": 0.0019485 + "ts": 0.002032525 }, { "core_id": 1, @@ -1928,12 +1920,12 @@ "id": 21, "in_irq": false, "params": { - "base": 1073443048, - "sz": 4294965096, - "tid": 12286700, + "base": 1073440944, + "sz": 4294965088, + "tid": 12284596, "unused": 0 }, - "ts": 0.0019485 + "ts": 0.002032525 }, { "core_id": 0, @@ -1941,9 +1933,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.0019592 + "ts": 0.00204325 }, { "core_id": 1, @@ -1951,9 +1943,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.0019592 + "ts": 0.00204325 }, { "core_id": 0, @@ -1963,7 +1955,7 @@ "params": { "irq_num": 30 }, - "ts": 0.001974775 + "ts": 0.002058825 }, { "core_id": 0, @@ -1971,7 +1963,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.00198615 + "ts": 0.002070175 }, { "core_id": 0, @@ -1979,18 +1971,18 @@ "id": 4, "in_irq": false, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.0020025 + "ts": 0.002086525 }, { - "addr": "0x3ffb7c50", + "addr": "0x3ffb7418", "callers": [ - "0x40081fef", - "0x40089414", - "0x40088679", - "0x400d6aa4", - "0x40088d94", + "0x40081eff", + "0x40088720", + "0x400879c1", + "0x400d3b64", + "0x400880dc", "0x0", "0x0", "0x0", @@ -2002,7 +1994,7 @@ "id": 512, "in_irq": false, "size": 124, - "ts": 0.002037875 + "ts": 0.002130925 }, { "core_id": 0, @@ -2014,16 +2006,16 @@ "uxItemSize": 4, "uxQueueLength": 10 }, - "ts": 0.002052175 + "ts": 0.002145225 }, { - "addr": "0x3ffb7cd0", + "addr": "0x3ffb7498", "callers": [ - "0x40081fef", - "0x40089414", - "0x4008b304", - "0x400d6ae0", - "0x40088d94", + "0x40081eff", + "0x40088720", + "0x4008a610", + "0x400d3ba0", + "0x400880dc", "0x0", "0x0", "0x0", @@ -2035,16 +2027,16 @@ "id": 512, "in_irq": false, "size": 2500, - "ts": 0.0021074 + "ts": 0.00220545 }, { - "addr": "0x3ffb86d4", + "addr": "0x3ffb7e9c", "callers": [ - "0x40081fef", - "0x40089414", - "0x4008b30f", - "0x400d6ae0", - "0x40088d94", + "0x40081eff", + "0x40088720", + "0x4008a61b", + "0x400d3ba0", + "0x400880dc", "0x0", "0x0", "0x0", @@ -2056,7 +2048,7 @@ "id": 512, "in_irq": false, "size": 340, - "ts": 0.0021418 + "ts": 0.0022409 }, { "core_id": 0, @@ -2064,9 +2056,9 @@ "id": 8, "in_irq": false, "params": { - "tid": 12289748 + "tid": 12287644 }, - "ts": 0.0021685 + "ts": 0.002267725 }, { "core_id": 0, @@ -2076,9 +2068,9 @@ "params": { "name": "free0", "prio": 5, - "tid": 12289748 + "tid": 12287644 }, - "ts": 0.002181 + "ts": 0.00228025 }, { "core_id": 1, @@ -2088,9 +2080,9 @@ "params": { "name": "free0", "prio": 5, - "tid": 12289748 + "tid": 12287644 }, - "ts": 0.002181 + "ts": 0.00228025 }, { "core_id": 0, @@ -2098,12 +2090,12 @@ "id": 21, "in_irq": false, "params": { - "base": 1073446096, - "sz": 4294965088, - "tid": 12289748, + "base": 1073443992, + "sz": 4294965096, + "tid": 12287644, "unused": 0 }, - "ts": 0.00219015 + "ts": 0.002289425 }, { "core_id": 1, @@ -2111,12 +2103,12 @@ "id": 21, "in_irq": false, "params": { - "base": 1073446096, - "sz": 4294965088, - "tid": 12289748, + "base": 1073443992, + "sz": 4294965096, + "tid": 12287644, "unused": 0 }, - "ts": 0.00219015 + "ts": 0.002289425 }, { "core_id": 0, @@ -2124,9 +2116,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12289748 + "tid": 12287644 }, - "ts": 0.002200975 + "ts": 0.002300275 }, { "core_id": 1, @@ -2134,9 +2126,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12289748 + "tid": 12287644 }, - "ts": 0.002200975 + "ts": 0.002300275 }, { "core_id": 1, @@ -2146,7 +2138,7 @@ "params": { "irq_num": 31 }, - "ts": 0.00221635 + "ts": 0.002315625 }, { "core_id": 1, @@ -2154,16 +2146,16 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.00222925 + "ts": 0.002328675 }, { - "addr": "0x3ffb8838", + "addr": "0x3ffb8000", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -2175,7 +2167,7 @@ "id": 512, "in_irq": false, "size": 1, - "ts": 0.00224565 + "ts": 0.00234585 }, { "core_id": 1, @@ -2183,9 +2175,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12289748 + "tid": 12287644 }, - "ts": 0.00225695 + "ts": 0.002358 }, { "core_id": 1, @@ -2195,16 +2187,16 @@ "params": { "irq_num": 31 }, - "ts": 0.002286975 + "ts": 0.002387975 }, { - "addr": "0x3ffb8848", + "addr": "0x3ffb8010", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -2216,7 +2208,7 @@ "id": 512, "in_irq": false, "size": 2, - "ts": 0.0022979 + "ts": 0.002399325 }, { "core_id": 1, @@ -2224,7 +2216,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.002308975 + "ts": 0.0024109 }, { "core_id": 0, @@ -2234,10 +2226,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.002321625 + "ts": 0.00242315 }, { "core_id": 1, @@ -2245,109 +2237,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.002332075 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12283904, - "xTicksToWait": 0 - }, - "ts": 0.00236625 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (310) example: Task[0x3ffb7aec]: allocated 2 bytes @ 0x3ffb8848\n", - "ts": 0.002605525 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (310) example: Task[0x3ffb7aec]: allocated 2 bytes @ 0x3ffb8848\n", - "ts": 0.002605525 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12287056, - "xTicksToWait": 0 - }, - "ts": 0.0026271 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289748 - }, - "ts": 0.002640225 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289748 - }, - "ts": 0.002640225 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.002656425 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.0026673 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.002678075 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.00269225 + "ts": 0.002440625 }, { "core_id": 1, @@ -2357,7 +2247,153 @@ "params": { "irq_num": 5 }, - "ts": 0.002703 + "ts": 0.0024566 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.002470175 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12281672, + "xTicksToWait": 0 + }, + "ts": 0.00248155 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.0024927 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (297) example: Task[0x3ffb72b4]: allocated 2 bytes @ 0x3ffb8010\n", + "ts": 0.002742275 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (297) example: Task[0x3ffb72b4]: allocated 2 bytes @ 0x3ffb8010\n", + "ts": 0.002742275 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.002759 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 3, + "in_irq": false, + "params": {}, + "ts": 0.002774375 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12284952, + "xTicksToWait": 0 + }, + "ts": 0.002788425 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12287644 + }, + "ts": 0.002801625 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12287644 + }, + "ts": 0.002801625 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.002817875 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.002828825 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.002839525 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.0028533 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287644 + }, + "ts": 0.002864225 }, { "core_id": 0, @@ -2365,35 +2401,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.002713925 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.002725475 - }, - { - "core_id": 0, - "ctx_name": "main", - "id": 4, - "in_irq": false, - "params": { - "tid": 12254080 - }, - "ts": 0.00273595 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289748 - }, - "ts": 0.00275345 + "ts": 0.002875075 }, { "core_id": 1, @@ -2403,20 +2411,43 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12287056, + "xQueue": 12284952, "xTicksToWait": 4294967295 }, - "ts": 0.00277025 + "ts": 0.0028871 }, { - "addr": "0x3ffb8858", + "core_id": 0, + "ctx_name": "main", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274964 + }, + "ts": 0.002897825 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12281672, + "xTicksToWait": 10 + }, + "ts": 0.00293785 + }, + { + "addr": "0x3ffb8020", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6bef", - "0x400e693b", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3caf", + "0x400e3898", + "0x400880dc", "0x0", "0x0", "0x0", @@ -2427,48 +2458,30 @@ "id": 512, "in_irq": false, "size": 8, - "ts": 0.002782075 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.00281335 + "ts": 0.002949925 }, { "core_id": 1, "ctx_name": "free0", - "id": 49, + "id": 53, "in_irq": false, "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12283904, - "xTicksToWait": 10 + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12281672, + "xTicksToWait": 0 }, - "ts": 0.002824975 + "ts": 0.002992925 }, { - "core_id": 0, - "ctx_name": "main", - "id": 3, - "in_irq": false, - "params": {}, - "ts": 0.00283595 - }, - { - "addr": "0x3ffb8868", + "addr": "0x3ffb8030", "callers": [ - "0x40081fef", - "0x40089414", - "0x4008b304", - "0x400d6c38", - "0x400e693b", - "0x40088d94", + "0x40081eff", + "0x40088720", + "0x4008a610", + "0x400d3cf8", + "0x400e3898", + "0x400880dc", "0x0", "0x0", "0x0", @@ -2479,30 +2492,17 @@ "id": 512, "in_irq": false, "size": 2500, - "ts": 0.002860725 + "ts": 0.003004025 }, { - "core_id": 1, - "ctx_name": "free0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12283904, - "xTicksToWait": 0 - }, - "ts": 0.002875775 - }, - { - "addr": "0x3ffb926c", + "addr": "0x3ffb8a34", "callers": [ - "0x40081fef", - "0x40089414", - "0x4008b30f", - "0x400d6c38", - "0x400e693b", - "0x40088d94", + "0x40081eff", + "0x40088720", + "0x4008a61b", + "0x400d3cf8", + "0x400e3898", + "0x400880dc", "0x0", "0x0", "0x0", @@ -2513,7 +2513,7 @@ "id": 512, "in_irq": false, "size": 340, - "ts": 0.002902375 + "ts": 0.00304465 }, { "core_id": 0, @@ -2521,9 +2521,9 @@ "id": 8, "in_irq": false, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.002925 + "ts": 0.0030675 }, { "core_id": 0, @@ -2533,9 +2533,9 @@ "params": { "name": "alloc1", "prio": 5, - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.00293765 + "ts": 0.00308015 }, { "core_id": 1, @@ -2545,9 +2545,9 @@ "params": { "name": "alloc1", "prio": 5, - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.00293765 + "ts": 0.00308015 }, { "core_id": 0, @@ -2555,12 +2555,12 @@ "id": 21, "in_irq": false, "params": { - "base": 1073449064, - "sz": 4294965096, - "tid": 12292716, + "base": 1073446960, + "sz": 4294965088, + "tid": 12290612, "unused": 0 }, - "ts": 0.0029468 + "ts": 0.003089275 }, { "core_id": 1, @@ -2568,12 +2568,12 @@ "id": 21, "in_irq": false, "params": { - "base": 1073449064, - "sz": 4294965096, - "tid": 12292716, + "base": 1073446960, + "sz": 4294965088, + "tid": 12290612, "unused": 0 }, - "ts": 0.0029468 + "ts": 0.003089275 }, { "core_id": 0, @@ -2581,9 +2581,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.002957675 + "ts": 0.0031 }, { "core_id": 1, @@ -2591,9 +2591,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.002957675 + "ts": 0.0031 }, { "core_id": 0, @@ -2603,7 +2603,7 @@ "params": { "irq_num": 30 }, - "ts": 0.0029733 + "ts": 0.003115575 }, { "core_id": 0, @@ -2611,7 +2611,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0029848 + "ts": 0.003126925 }, { "core_id": 0, @@ -2619,18 +2619,18 @@ "id": 4, "in_irq": false, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.00300165 + "ts": 0.0031433 }, { - "addr": "0x3ffb93d0", + "addr": "0x3ffb8b98", "callers": [ - "0x40081fef", - "0x40089414", - "0x40088679", - "0x400d6aa4", - "0x40088d94", + "0x40081eff", + "0x40088720", + "0x400879c1", + "0x400d3b64", + "0x400880dc", "0x0", "0x0", "0x0", @@ -2642,7 +2642,7 @@ "id": 512, "in_irq": false, "size": 124, - "ts": 0.0030371 + "ts": 0.003179725 }, { "core_id": 0, @@ -2654,16 +2654,16 @@ "uxItemSize": 4, "uxQueueLength": 10 }, - "ts": 0.003051375 + "ts": 0.003194025 }, { - "addr": "0x3ffb9450", + "addr": "0x3ffb8c18", "callers": [ - "0x40081fef", - "0x40089414", - "0x4008b304", - "0x400d6ae0", - "0x40088d94", + "0x40081eff", + "0x40088720", + "0x4008a610", + "0x400d3ba0", + "0x400880dc", "0x0", "0x0", "0x0", @@ -2675,16 +2675,16 @@ "id": 512, "in_irq": false, "size": 2500, - "ts": 0.00309075 + "ts": 0.003234475 }, { - "addr": "0x3ffb9e54", + "addr": "0x3ffb961c", "callers": [ - "0x40081fef", - "0x40089414", - "0x4008b30f", - "0x400d6ae0", - "0x40088d94", + "0x40081eff", + "0x40088720", + "0x4008a61b", + "0x400d3ba0", + "0x400880dc", "0x0", "0x0", "0x0", @@ -2696,7 +2696,7 @@ "id": 512, "in_irq": false, "size": 340, - "ts": 0.00312515 + "ts": 0.003269925 }, { "core_id": 0, @@ -2704,9 +2704,9 @@ "id": 8, "in_irq": false, "params": { - "tid": 12295764 + "tid": 12293660 }, - "ts": 0.0031519 + "ts": 0.00329665 }, { "core_id": 0, @@ -2716,9 +2716,9 @@ "params": { "name": "free1", "prio": 5, - "tid": 12295764 + "tid": 12293660 }, - "ts": 0.0031644 + "ts": 0.00330915 }, { "core_id": 1, @@ -2728,9 +2728,9 @@ "params": { "name": "free1", "prio": 5, - "tid": 12295764 + "tid": 12293660 }, - "ts": 0.0031644 + "ts": 0.00330915 }, { "core_id": 0, @@ -2738,12 +2738,12 @@ "id": 21, "in_irq": false, "params": { - "base": 1073452112, - "sz": 4294965088, - "tid": 12295764, + "base": 1073450008, + "sz": 4294965096, + "tid": 12293660, "unused": 0 }, - "ts": 0.00317355 + "ts": 0.00331835 }, { "core_id": 1, @@ -2751,12 +2751,12 @@ "id": 21, "in_irq": false, "params": { - "base": 1073452112, - "sz": 4294965088, - "tid": 12295764, + "base": 1073450008, + "sz": 4294965096, + "tid": 12293660, "unused": 0 }, - "ts": 0.00317355 + "ts": 0.00331835 }, { "core_id": 0, @@ -2764,9 +2764,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12295764 + "tid": 12293660 }, - "ts": 0.003184375 + "ts": 0.003329175 }, { "core_id": 1, @@ -2774,18 +2774,18 @@ "id": 6, "in_irq": false, "params": { - "tid": 12295764 + "tid": 12293660 }, - "ts": 0.003184375 + "ts": 0.003329175 }, { - "addr": "0x3ffb9fb8", + "addr": "0x3ffb9780", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -2797,16 +2797,16 @@ "id": 512, "in_irq": false, "size": 2, - "ts": 0.0032206 + "ts": 0.00336635 }, { - "addr": "0x3ffb9fc8", + "addr": "0x3ffb9790", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -2818,7 +2818,7 @@ "id": 512, "in_irq": false, "size": 4, - "ts": 0.00325505 + "ts": 0.003401775 }, { "core_id": 0, @@ -2828,10 +2828,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.00327195 + "ts": 0.0034187 }, { "core_id": 0, @@ -2841,10 +2841,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.003294125 + "ts": 0.003438675 }, { "core_id": 1, @@ -2852,8 +2852,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (310) example: Task[0x3ffb86d4]: free memory @ 0x3ffb8848\n", - "ts": 0.00333685 + "msg": "I (298) example: Task[0x3ffb7e9c]: free memory @ 0x3ffb8010\n", + "ts": 0.0034623 }, { "core_id": 1, @@ -2861,8 +2861,26 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (310) example: Task[0x3ffb86d4]: free memory @ 0x3ffb8848\n", - "ts": 0.00333685 + "msg": "I (298) example: Task[0x3ffb7e9c]: free memory @ 0x3ffb8010\n", + "ts": 0.0034623 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.003481375 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.003494825 }, { "core_id": 1, @@ -2872,7 +2890,25 @@ "params": { "irq_num": 31 }, - "ts": 0.003357 + "ts": 0.00350665 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (298) example: Task[0x3ffb8a34]: allocated 4 bytes @ 0x3ffb9790\n", + "ts": 0.003526375 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (298) example: Task[0x3ffb8a34]: allocated 4 bytes @ 0x3ffb9790\n", + "ts": 0.003526375 }, { "core_id": 1, @@ -2880,35 +2916,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.00336845 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289748 - }, - "ts": 0.003385425 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (311) example: Task[0x3ffb926c]: allocated 4 bytes @ 0x3ffb9fc8\n", - "ts": 0.00340425 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (311) example: Task[0x3ffb926c]: allocated 4 bytes @ 0x3ffb9fc8\n", - "ts": 0.00340425 + "ts": 0.003537925 }, { "core_id": 0, @@ -2918,17 +2926,45 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12293072, + "xQueue": 12290968, "xTicksToWait": 0 }, - "ts": 0.00341835 + "ts": 0.00355005 }, { - "addr": "0x3ffb8848", + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287644 + }, + "ts": 0.003567875 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.00357885 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.00359575 + }, + { + "addr": "0x3ffb8010", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", + "0x4008da24", + "0x400d3c72", + "0x400880dc", "0x0", "0x0", "0x0", @@ -2942,7 +2978,17 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 0.0034315 + "ts": 0.003606975 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 4, + "in_irq": false, + "params": { + "tid": 12290612 + }, + "ts": 0.003617975 }, { "core_id": 0, @@ -2952,7 +2998,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.003443325 + "ts": 0.0036332 }, { "core_id": 0, @@ -2962,7 +3008,7 @@ "params": { "irq_num": 30 }, - "ts": 0.003462 + "ts": 0.0036529 }, { "core_id": 0, @@ -2970,7 +3016,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.00347595 + "ts": 0.00366705 }, { "core_id": 1, @@ -2980,7 +3026,7 @@ "params": { "irq_num": 31 }, - "ts": 0.003490025 + "ts": 0.00368095 }, { "core_id": 0, @@ -2988,9 +3034,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12254080 + "tid": 12274964 }, - "ts": 0.003501925 + "ts": 0.0036928 }, { "core_id": 1, @@ -2998,7 +3044,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0035128 + "ts": 0.00370385 }, { "core_id": 1, @@ -3006,19 +3052,19 @@ "id": 4, "in_irq": false, "params": { - "tid": 12295764 + "tid": 12293660 }, - "ts": 0.00353205 + "ts": 0.003723175 }, { - "addr": "0x3ffb8848", + "addr": "0x3ffb8010", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6bef", - "0x400e693b", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3caf", + "0x400e3898", + "0x400880dc", "0x0", "0x0", "0x0", @@ -3029,7 +3075,7 @@ "id": 512, "in_irq": false, "size": 8, - "ts": 0.003544375 + "ts": 0.00373675 }, { "core_id": 1, @@ -3039,10 +3085,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12293072, + "xQueue": 12290968, "xTicksToWait": 4294967295 }, - "ts": 0.003561425 + "ts": 0.0037538 }, { "core_id": 1, @@ -3052,20 +3098,33 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.0035801 + "ts": 0.003772075 }, { - "addr": "0x3ffb9fd8", + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12281672, + "xTicksToWait": 0 + }, + "ts": 0.00379115 + }, + { + "addr": "0x3ffb97a0", "callers": [ - "0x40081fef", - "0x40089414", - "0x4008b304", - "0x400d6c38", - "0x400e693b", - "0x40088d94", + "0x40081eff", + "0x40088720", + "0x4008a610", + "0x400d3cf8", + "0x400e3898", + "0x400880dc", "0x0", "0x0", "0x0", @@ -3076,30 +3135,35 @@ "id": 512, "in_irq": false, "size": 2500, - "ts": 0.003597875 + "ts": 0.0038029 }, { "core_id": 1, "ctx_name": "free1", - "id": 53, + "id": 26, "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12283904, - "xTicksToWait": 0 - }, - "ts": 0.0036106 + "lvl": 0, + "msg": "I (299) example: Task[0x3ffb961c]: free memory @ 0x3ffb9790\n", + "ts": 0.003844025 }, { - "addr": "0x3ffba9dc", + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (299) example: Task[0x3ffb961c]: free memory @ 0x3ffb9790\n", + "ts": 0.003844025 + }, + { + "addr": "0x3ffba1a4", "callers": [ - "0x40081fef", - "0x40089414", - "0x4008b30f", - "0x400d6c38", - "0x400e693b", - "0x40088d94", + "0x40081eff", + "0x40088720", + "0x4008a61b", + "0x400d3cf8", + "0x400e3898", + "0x400880dc", "0x0", "0x0", "0x0", @@ -3110,158 +3174,14 @@ "id": 512, "in_irq": false, "size": 340, - "ts": 0.003637125 + "ts": 0.00385595 }, { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (311) example: Task[0x3ffb9e54]: free memory @ 0x3ffb9fc8\n", - "ts": 0.003660625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (311) example: Task[0x3ffb9e54]: free memory @ 0x3ffb9fc8\n", - "ts": 0.003660625 - }, - { - "core_id": 0, - "ctx_name": "main", - "id": 8, - "in_irq": false, - "params": { - "tid": 12298716 - }, - "ts": 0.003672 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0036882 - }, - { - "core_id": 0, - "ctx_name": "main", - "id": 9, - "in_irq": false, - "params": { - "name": "alloc2", - "prio": 5, - "tid": 12298716 - }, - "ts": 0.003700975 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 9, - "in_irq": true, - "params": { - "name": "alloc2", - "prio": 5, - "tid": 12298716 - }, - "ts": 0.003700975 - }, - { - "core_id": 0, - "ctx_name": "main", - "id": 21, - "in_irq": false, - "params": { - "base": 1073455064, - "sz": 4294965096, - "tid": 12298716, - "unused": 0 - }, - "ts": 0.00371195 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 21, - "in_irq": true, - "params": { - "base": 1073455064, - "sz": 4294965096, - "tid": 12298716, - "unused": 0 - }, - "ts": 0.00371195 - }, - { - "core_id": 0, - "ctx_name": "main", - "id": 6, - "in_irq": false, - "params": { - "tid": 12298716 - }, - "ts": 0.00372485 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12298716 - }, - "ts": 0.00372485 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0037423 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.00375315 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12295764 - }, - "ts": 0.0037654 - }, - { - "core_id": 0, - "ctx_name": "main", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0037764 - }, - { - "addr": "0x3ffb9fc8", + "addr": "0x3ffb9790", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", + "0x4008da24", + "0x400d3c72", + "0x400880dc", "0x0", "0x0", "0x0", @@ -3275,27 +3195,105 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 0.00379175 + "ts": 0.00386955 }, { "core_id": 0, - "ctx_name": "alloc2", - "id": 4, + "ctx_name": "main", + "id": 8, "in_irq": false, "params": { - "tid": 12298716 + "tid": 12296612 }, - "ts": 0.003803375 + "ts": 0.0038854 }, { "core_id": 0, - "ctx_name": "SysTick", + "ctx_name": "main", + "id": 9, + "in_irq": false, + "params": { + "name": "alloc2", + "prio": 5, + "tid": 12296612 + }, + "ts": 0.00390035 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 9, + "in_irq": false, + "params": { + "name": "alloc2", + "prio": 5, + "tid": 12296612 + }, + "ts": 0.00390035 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 21, + "in_irq": false, + "params": { + "base": 1073452960, + "sz": 4294965088, + "tid": 12296612, + "unused": 0 + }, + "ts": 0.003911525 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 21, + "in_irq": false, + "params": { + "base": 1073452960, + "sz": 4294965088, + "tid": 12296612, + "unused": 0 + }, + "ts": 0.003911525 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 6, + "in_irq": false, + "params": { + "tid": 12296612 + }, + "ts": 0.00392455 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12296612 + }, + "ts": 0.00392455 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", "id": 2, "in_irq": true, "params": { - "irq_num": 5 + "irq_num": 30 }, - "ts": 0.003819875 + "ts": 0.003943225 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.003957125 }, { "core_id": 1, @@ -3305,15 +3303,17 @@ "params": { "irq_num": 31 }, - "ts": 0.003831475 + "ts": 0.003970975 }, { "core_id": 0, "ctx_name": "alloc2", - "id": 3, + "id": 4, "in_irq": false, - "params": {}, - "ts": 0.003843175 + "params": { + "tid": 12296612 + }, + "ts": 0.00398185 }, { "core_id": 1, @@ -3321,7 +3321,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.003853725 + "ts": 0.003992875 }, { "core_id": 1, @@ -3329,16 +3329,16 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.00387545 + "ts": 0.004014925 }, { - "addr": "0x3ffbab40", + "addr": "0x3ffba308", "callers": [ - "0x40081fef", - "0x40089414", - "0x40088679", - "0x400d6aa4", - "0x40088d94", + "0x40081eff", + "0x40088720", + "0x400879c1", + "0x400d3b64", + "0x400880dc", "0x0", "0x0", "0x0", @@ -3350,7 +3350,7 @@ "id": 512, "in_irq": false, "size": 124, - "ts": 0.003887725 + "ts": 0.004030875 }, { "core_id": 0, @@ -3362,16 +3362,16 @@ "uxItemSize": 4, "uxQueueLength": 10 }, - "ts": 0.003902275 + "ts": 0.0040452 }, { - "addr": "0x3ffbabc0", + "addr": "0x3ffba388", "callers": [ - "0x40081fef", - "0x40089414", - "0x4008b304", - "0x400d6ae0", - "0x40088d94", + "0x40081eff", + "0x40088720", + "0x4008a610", + "0x400d3ba0", + "0x400880dc", "0x0", "0x0", "0x0", @@ -3383,16 +3383,16 @@ "id": 512, "in_irq": false, "size": 2500, - "ts": 0.003941625 + "ts": 0.004085625 }, { - "addr": "0x3ffbb5c4", + "addr": "0x3ffbad8c", "callers": [ - "0x40081fef", - "0x40089414", - "0x4008b30f", - "0x400d6ae0", - "0x40088d94", + "0x40081eff", + "0x40088720", + "0x4008a61b", + "0x400d3ba0", + "0x400880dc", "0x0", "0x0", "0x0", @@ -3404,7 +3404,7 @@ "id": 512, "in_irq": false, "size": 340, - "ts": 0.003976025 + "ts": 0.0041211 }, { "core_id": 0, @@ -3412,9 +3412,9 @@ "id": 8, "in_irq": false, "params": { - "tid": 12301764 + "tid": 12299660 }, - "ts": 0.004002 + "ts": 0.004143675 }, { "core_id": 0, @@ -3424,9 +3424,9 @@ "params": { "name": "free2", "prio": 5, - "tid": 12301764 + "tid": 12299660 }, - "ts": 0.004014625 + "ts": 0.00415625 }, { "core_id": 1, @@ -3436,9 +3436,9 @@ "params": { "name": "free2", "prio": 5, - "tid": 12301764 + "tid": 12299660 }, - "ts": 0.004014625 + "ts": 0.00415625 }, { "core_id": 0, @@ -3446,12 +3446,12 @@ "id": 21, "in_irq": false, "params": { - "base": 1073458112, - "sz": 4294965088, - "tid": 12301764, + "base": 1073456008, + "sz": 4294965096, + "tid": 12299660, "unused": 0 }, - "ts": 0.0040238 + "ts": 0.004169425 }, { "core_id": 1, @@ -3459,12 +3459,12 @@ "id": 21, "in_irq": false, "params": { - "base": 1073458112, - "sz": 4294965088, - "tid": 12301764, + "base": 1073456008, + "sz": 4294965096, + "tid": 12299660, "unused": 0 }, - "ts": 0.0040238 + "ts": 0.004169425 }, { "core_id": 0, @@ -3472,9 +3472,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12301764 + "tid": 12299660 }, - "ts": 0.0040346 + "ts": 0.00418015 }, { "core_id": 1, @@ -3482,9 +3482,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12301764 + "tid": 12299660 }, - "ts": 0.0040346 + "ts": 0.00418015 }, { "core_id": 1, @@ -3494,7 +3494,7 @@ "params": { "irq_num": 31 }, - "ts": 0.00405085 + "ts": 0.00419625 }, { "core_id": 1, @@ -3502,16 +3502,16 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0040637 + "ts": 0.004209125 }, { - "addr": "0x3ffb9fc8", + "addr": "0x3ffb9790", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -3523,7 +3523,7 @@ "id": 512, "in_irq": false, "size": 3, - "ts": 0.004075375 + "ts": 0.00422135 }, { "core_id": 1, @@ -3531,9 +3531,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12301764 + "tid": 12299660 }, - "ts": 0.004086825 + "ts": 0.004233575 }, { "core_id": 1, @@ -3543,16 +3543,16 @@ "params": { "irq_num": 31 }, - "ts": 0.0041132 + "ts": 0.00425995 }, { - "addr": "0x3ffbb728", + "addr": "0x3ffbaef0", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -3564,7 +3564,7 @@ "id": 512, "in_irq": false, "size": 6, - "ts": 0.00412495 + "ts": 0.004271525 }, { "core_id": 1, @@ -3572,7 +3572,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.004136375 + "ts": 0.004282925 }, { "core_id": 0, @@ -3582,10 +3582,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.00414835 + "ts": 0.00429495 }, { "core_id": 1, @@ -3593,7 +3593,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.004158625 + "ts": 0.00430615 }, { "core_id": 0, @@ -3603,10 +3603,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.004177025 + "ts": 0.004324575 }, { "core_id": 0, @@ -3614,8 +3614,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (312) example: Task[0x3ffba9dc]: allocated 6 bytes @ 0x3ffbb728\n", - "ts": 0.004229325 + "msg": "I (299) example: Task[0x3ffba1a4]: allocated 6 bytes @ 0x3ffbaef0\n", + "ts": 0.0043771 }, { "core_id": 0, @@ -3623,8 +3623,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (312) example: Task[0x3ffba9dc]: allocated 6 bytes @ 0x3ffbb728\n", - "ts": 0.004229325 + "msg": "I (299) example: Task[0x3ffba1a4]: allocated 6 bytes @ 0x3ffbaef0\n", + "ts": 0.0043771 }, { "core_id": 0, @@ -3634,10 +3634,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12299072, + "xQueue": 12296968, "xTicksToWait": 0 }, - "ts": 0.004246325 + "ts": 0.004390575 }, { "core_id": 0, @@ -3645,9 +3645,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12301764 + "tid": 12299660 }, - "ts": 0.004259475 + "ts": 0.004403775 }, { "core_id": 1, @@ -3655,9 +3655,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12301764 + "tid": 12299660 }, - "ts": 0.004259475 + "ts": 0.004403775 }, { "core_id": 1, @@ -3667,7 +3667,7 @@ "params": { "irq_num": 31 }, - "ts": 0.00427575 + "ts": 0.004424325 }, { "core_id": 0, @@ -3677,7 +3677,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.0042866 + "ts": 0.004435175 }, { "core_id": 1, @@ -3685,7 +3685,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.004297375 + "ts": 0.004445975 }, { "core_id": 0, @@ -3695,17 +3695,17 @@ "params": { "irq_num": 30 }, - "ts": 0.00431125 + "ts": 0.004460225 }, { "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, "params": { - "tid": 12301764 + "irq_num": 5 }, - "ts": 0.00432205 + "ts": 0.0044719 }, { "core_id": 0, @@ -3713,7 +3713,48 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0043329 + "ts": 0.004482925 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.004494925 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274964 + }, + "ts": 0.004505375 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12299660 + }, + "ts": 0.00452215 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12281672, + "xTicksToWait": 10 + }, + "ts": 0.004534325 }, { "core_id": 1, @@ -3723,10 +3764,68 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12299072, + "xQueue": 12296968, "xTicksToWait": 4294967295 }, - "ts": 0.0043448 + "ts": 0.004546275 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0045576 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12274964 + }, + "ts": 0.0045687 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274964 + }, + "ts": 0.0045687 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 39, + "in_irq": false, + "params": { + "pxMutexHolder": 1073433876 + }, + "ts": 0.00458235 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.004597425 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.004608 }, { "core_id": 0, @@ -3734,9 +3833,134 @@ "id": 4, "in_irq": false, "params": { - "tid": 12254080 + "tid": 12274964 }, - "ts": 0.004355375 + "ts": 0.004618825 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0046297 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12281672, + "xTicksToWait": 0 + }, + "ts": 0.004641 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.00465655 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 42, + "in_irq": false, + "params": { + "pxMutexHolder": 1073433876 + }, + "ts": 0.00467105 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274964 + }, + "ts": 0.004681725 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274964 + }, + "ts": 0.004681725 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 6, + "in_irq": false, + "params": { + "tid": 12299660 + }, + "ts": 0.0046955 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12299660 + }, + "ts": 0.0046955 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.004711225 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0047227 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (299) example: Wait notify 0\n", + "ts": 0.0047393 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (299) example: Wait notify 0\n", + "ts": 0.0047393 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12299660 + }, + "ts": 0.0047505 }, { "core_id": 1, @@ -3746,23 +3970,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.00436755 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12283904, - "xTicksToWait": 0 - }, - "ts": 0.0043946 + "ts": 0.004767725 }, { "core_id": 0, @@ -3772,27 +3983,20 @@ "params": { "irq_num": 30 }, - "ts": 0.00440545 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 6, - "in_irq": true, - "params": { - "tid": 12254080 - }, - "ts": 0.004417125 + "ts": 0.00477865 }, { "core_id": 1, "ctx_name": "free2", - "id": 6, + "id": 53, "in_irq": false, "params": { - "tid": 12254080 + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12281672, + "xTicksToWait": 0 }, - "ts": 0.004417125 + "ts": 0.004790975 }, { "core_id": 0, @@ -3800,30 +4004,15 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.004428475 + "ts": 0.004801725 }, { "core_id": 0, "ctx_name": "main", - "id": 4, + "id": 17, "in_irq": false, - "params": { - "tid": 12254080 - }, - "ts": 0.0044466 - }, - { - "core_id": 0, - "ctx_name": "main", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12283904, - "xTicksToWait": 10 - }, - "ts": 0.00446105 + "params": {}, + "ts": 0.004819425 }, { "core_id": 1, @@ -3831,8 +4020,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (312) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb728\n", - "ts": 0.004485 + "msg": "I (299) example: Task[0x3ffbad8c]: free memory @ 0x3ffbaef0\n", + "ts": 0.00484055 }, { "core_id": 1, @@ -3840,28 +4029,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (312) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb728\n", - "ts": 0.004485 + "msg": "I (299) example: Task[0x3ffbad8c]: free memory @ 0x3ffbaef0\n", + "ts": 0.00484055 }, { - "core_id": 0, - "ctx_name": "main", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12283904, - "xTicksToWait": 0 - }, - "ts": 0.004501225 - }, - { - "addr": "0x3ffbb728", + "addr": "0x3ffbaef0", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", + "0x4008da24", + "0x400d3c72", + "0x400880dc", "0x0", "0x0", "0x0", @@ -3875,25 +4051,7 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 0.00451485 - }, - { - "core_id": 0, - "ctx_name": "main", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (312) example: Wait notify 0\n", - "ts": 0.004542 - }, - { - "core_id": 0, - "ctx_name": "main", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (312) example: Wait notify 0\n", - "ts": 0.004542 + "ts": 0.004866125 }, { "core_id": 1, @@ -3903,7 +4061,7 @@ "params": { "irq_num": 31 }, - "ts": 0.004553025 + "ts": 0.004893775 }, { "core_id": 1, @@ -3911,17 +4069,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0045667 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.004580775 + "ts": 0.004905175 }, { "core_id": 1, @@ -3929,23 +4077,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.00459145 - }, - { - "core_id": 0, - "ctx_name": "main", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.004602475 - }, - { - "core_id": 0, - "ctx_name": "main", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0046186 + "ts": 0.00492175 }, { "core_id": 1, @@ -3955,7 +4087,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0046694 + "ts": 0.0054259 }, { "core_id": 1, @@ -3963,7 +4095,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.004682875 + "ts": 0.0054394 }, { "core_id": 1, @@ -3971,7 +4103,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.00469815 + "ts": 0.005454975 }, { "core_id": 0, @@ -3981,7 +4113,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0048132 + "ts": 0.0055467 }, { "core_id": 0, @@ -3989,7 +4121,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0048287 + "ts": 0.0055621 }, { "core_id": 0, @@ -3997,7 +4129,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.004843775 + "ts": 0.005577425 }, { "core_id": 1, @@ -4007,7 +4139,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0056694 + "ts": 0.0064259 }, { "core_id": 1, @@ -4015,7 +4147,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.005682975 + "ts": 0.0064394 }, { "core_id": 1, @@ -4023,7 +4155,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.0056981 + "ts": 0.00645455 }, { "core_id": 0, @@ -4033,7 +4165,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0058132 + "ts": 0.0065467 }, { "core_id": 0, @@ -4041,7 +4173,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0058287 + "ts": 0.00656205 }, { "core_id": 0, @@ -4049,7 +4181,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.005843775 + "ts": 0.006577125 }, { "core_id": 1, @@ -4059,7 +4191,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0066694 + "ts": 0.0074259 }, { "core_id": 1, @@ -4067,7 +4199,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.006682925 + "ts": 0.0074394 }, { "core_id": 1, @@ -4075,7 +4207,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.006698075 + "ts": 0.007454675 }, { "core_id": 0, @@ -4085,7 +4217,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0068132 + "ts": 0.0075467 }, { "core_id": 0, @@ -4093,7 +4225,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0068286 + "ts": 0.00756205 }, { "core_id": 0, @@ -4101,7 +4233,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.006843825 + "ts": 0.00757715 }, { "core_id": 1, @@ -4111,7 +4243,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0076694 + "ts": 0.0084259 }, { "core_id": 1, @@ -4119,7 +4251,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.007682925 + "ts": 0.00843945 }, { "core_id": 1, @@ -4127,7 +4259,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.007698075 + "ts": 0.0084546 }, { "core_id": 0, @@ -4137,7 +4269,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0078132 + "ts": 0.0085467 }, { "core_id": 0, @@ -4145,7 +4277,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0078287 + "ts": 0.00856205 }, { "core_id": 0, @@ -4153,7 +4285,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.007843775 + "ts": 0.008577125 }, { "core_id": 1, @@ -4163,7 +4295,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0086694 + "ts": 0.0094259 }, { "core_id": 1, @@ -4171,7 +4303,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.008687175 + "ts": 0.0094394 }, { "core_id": 1, @@ -4179,7 +4311,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.008702325 + "ts": 0.00945455 }, { "core_id": 0, @@ -4189,7 +4321,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0088132 + "ts": 0.0095467 }, { "core_id": 0, @@ -4197,7 +4329,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0088287 + "ts": 0.0095621 }, { "core_id": 0, @@ -4205,7 +4337,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.008843775 + "ts": 0.009577425 }, { "core_id": 1, @@ -4215,7 +4347,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0096694 + "ts": 0.0104259 }, { "core_id": 1, @@ -4223,7 +4355,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.009682925 + "ts": 0.0104394 }, { "core_id": 1, @@ -4231,7 +4363,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.009698075 + "ts": 0.01045455 }, { "core_id": 0, @@ -4241,7 +4373,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0098132 + "ts": 0.0105467 }, { "core_id": 0, @@ -4249,7 +4381,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0098286 + "ts": 0.01056205 }, { "core_id": 0, @@ -4257,7 +4389,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.009843825 + "ts": 0.010577125 }, { "core_id": 1, @@ -4267,7 +4399,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0106694 + "ts": 0.0114259 }, { "core_id": 1, @@ -4275,7 +4407,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.010682925 + "ts": 0.0114394 }, { "core_id": 1, @@ -4283,7 +4415,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.010698075 + "ts": 0.011454675 }, { "core_id": 0, @@ -4293,7 +4425,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0108132 + "ts": 0.0115467 }, { "core_id": 0, @@ -4301,7 +4433,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0108287 + "ts": 0.01156205 }, { "core_id": 0, @@ -4309,7 +4441,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.010843775 + "ts": 0.01157715 }, { "core_id": 1, @@ -4319,7 +4451,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0116694 + "ts": 0.0124259 }, { "core_id": 1, @@ -4327,7 +4459,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.011682925 + "ts": 0.0124394 }, { "core_id": 1, @@ -4335,7 +4467,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.011698325 + "ts": 0.012454675 }, { "core_id": 0, @@ -4345,7 +4477,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0118132 + "ts": 0.0125467 }, { "core_id": 0, @@ -4353,7 +4485,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0118287 + "ts": 0.01256205 }, { "core_id": 0, @@ -4361,7 +4493,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.011843775 + "ts": 0.01257715 }, { "core_id": 1, @@ -4371,7 +4503,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0126694 + "ts": 0.0134259 }, { "core_id": 1, @@ -4379,7 +4511,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.012682975 + "ts": 0.01343945 }, { "core_id": 1, @@ -4387,7 +4519,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.0126981 + "ts": 0.0134546 }, { "core_id": 0, @@ -4397,7 +4529,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0128132 + "ts": 0.0135467 }, { "core_id": 0, @@ -4405,7 +4537,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0128287 + "ts": 0.01356205 }, { "core_id": 0, @@ -4413,7 +4545,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.012843775 + "ts": 0.013577125 }, { "core_id": 1, @@ -4423,7 +4555,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0136694 + "ts": 0.0144259 }, { "core_id": 1, @@ -4431,7 +4563,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.013682925 + "ts": 0.0144394 }, { "core_id": 1, @@ -4439,7 +4571,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.013698075 + "ts": 0.01445455 }, { "core_id": 0, @@ -4449,7 +4581,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0138132 + "ts": 0.0145467 }, { "core_id": 0, @@ -4457,7 +4589,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.01382885 + "ts": 0.014562325 }, { "core_id": 0, @@ -4465,7 +4597,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.01384405 + "ts": 0.01457755 }, { "core_id": 1, @@ -4475,7 +4607,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0146694 + "ts": 0.0154259 }, { "core_id": 1, @@ -4483,7 +4615,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.014682925 + "ts": 0.0154394 }, { "core_id": 1, @@ -4491,7 +4623,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.014698075 + "ts": 0.01545455 }, { "core_id": 0, @@ -4501,7 +4633,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0148132 + "ts": 0.0155467 }, { "core_id": 0, @@ -4509,7 +4641,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0148287 + "ts": 0.01556205 }, { "core_id": 0, @@ -4517,7 +4649,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.014843775 + "ts": 0.015577125 }, { "core_id": 1, @@ -4527,7 +4659,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0156694 + "ts": 0.0164259 }, { "core_id": 1, @@ -4535,7 +4667,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.015682925 + "ts": 0.0164394 }, { "core_id": 1, @@ -4543,7 +4675,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.015698325 + "ts": 0.016454675 }, { "core_id": 0, @@ -4553,7 +4685,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0158132 + "ts": 0.0165467 }, { "core_id": 0, @@ -4561,7 +4693,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0158287 + "ts": 0.01656205 }, { "core_id": 0, @@ -4569,7 +4701,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.015843775 + "ts": 0.01657715 }, { "core_id": 1, @@ -4579,7 +4711,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0166694 + "ts": 0.0174259 }, { "core_id": 1, @@ -4587,7 +4719,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.016682975 + "ts": 0.01743945 }, { "core_id": 1, @@ -4595,7 +4727,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.0166981 + "ts": 0.0174546 }, { "core_id": 0, @@ -4605,7 +4737,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0168132 + "ts": 0.0175467 }, { "core_id": 0, @@ -4613,7 +4745,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0168287 + "ts": 0.01756205 }, { "core_id": 0, @@ -4621,7 +4753,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.016843775 + "ts": 0.017577125 }, { "core_id": 1, @@ -4631,7 +4763,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0176694 + "ts": 0.0184259 }, { "core_id": 1, @@ -4639,7 +4771,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.017682925 + "ts": 0.0184394 }, { "core_id": 1, @@ -4647,7 +4779,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.017698075 + "ts": 0.01845455 }, { "core_id": 0, @@ -4657,7 +4789,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0178132 + "ts": 0.0185467 }, { "core_id": 0, @@ -4665,7 +4797,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0178286 + "ts": 0.0185621 }, { "core_id": 0, @@ -4673,7 +4805,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.017843825 + "ts": 0.018577425 }, { "core_id": 1, @@ -4683,7 +4815,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0186694 + "ts": 0.0194259 }, { "core_id": 1, @@ -4691,7 +4823,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.018682925 + "ts": 0.0194394 }, { "core_id": 1, @@ -4699,7 +4831,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.018698075 + "ts": 0.01945455 }, { "core_id": 0, @@ -4709,7 +4841,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0188132 + "ts": 0.0195467 }, { "core_id": 0, @@ -4717,7 +4849,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0188287 + "ts": 0.01956205 }, { "core_id": 0, @@ -4725,7 +4857,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.018843775 + "ts": 0.019577125 }, { "core_id": 1, @@ -4735,7 +4867,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0196694 + "ts": 0.0204259 }, { "core_id": 1, @@ -4743,7 +4875,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.019682925 + "ts": 0.0204394 }, { "core_id": 1, @@ -4751,7 +4883,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.019698325 + "ts": 0.020454675 }, { "core_id": 0, @@ -4761,7 +4893,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0198132 + "ts": 0.0205467 }, { "core_id": 0, @@ -4769,7 +4901,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0198287 + "ts": 0.02056205 }, { "core_id": 0, @@ -4777,7 +4909,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.019843775 + "ts": 0.02057715 }, { "core_id": 1, @@ -4787,7 +4919,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0206694 + "ts": 0.0214259 }, { "core_id": 1, @@ -4795,7 +4927,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0206872 + "ts": 0.02143945 }, { "core_id": 1, @@ -4803,7 +4935,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.020702325 + "ts": 0.0214546 }, { "core_id": 0, @@ -4813,7 +4945,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0208132 + "ts": 0.0215467 }, { "core_id": 0, @@ -4821,7 +4953,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0208287 + "ts": 0.02156205 }, { "core_id": 0, @@ -4829,7 +4961,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.020843775 + "ts": 0.021577125 }, { "core_id": 1, @@ -4839,7 +4971,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0216694 + "ts": 0.0224259 }, { "core_id": 1, @@ -4847,7 +4979,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.021682925 + "ts": 0.0224394 }, { "core_id": 1, @@ -4855,7 +4987,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.021698075 + "ts": 0.02245455 }, { "core_id": 0, @@ -4865,7 +4997,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0218132 + "ts": 0.0225467 }, { "core_id": 0, @@ -4873,7 +5005,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0218286 + "ts": 0.0225621 }, { "core_id": 0, @@ -4881,7 +5013,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.021843825 + "ts": 0.022577425 }, { "core_id": 1, @@ -4891,7 +5023,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0226694 + "ts": 0.0234259 }, { "core_id": 1, @@ -4899,7 +5031,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.022682925 + "ts": 0.0234394 }, { "core_id": 1, @@ -4907,7 +5039,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.022698075 + "ts": 0.02345455 }, { "core_id": 0, @@ -4917,7 +5049,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0228132 + "ts": 0.0235467 }, { "core_id": 0, @@ -4925,7 +5057,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0228287 + "ts": 0.02356205 }, { "core_id": 0, @@ -4933,7 +5065,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.022843775 + "ts": 0.023577125 }, { "core_id": 1, @@ -4943,7 +5075,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0236694 + "ts": 0.0244259 }, { "core_id": 1, @@ -4951,7 +5083,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.023682925 + "ts": 0.024443675 }, { "core_id": 1, @@ -4959,7 +5091,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.023698325 + "ts": 0.024458825 }, { "core_id": 0, @@ -4969,7 +5101,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0238132 + "ts": 0.0245467 }, { "core_id": 0, @@ -4977,7 +5109,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0238287 + "ts": 0.02456205 }, { "core_id": 0, @@ -4985,7 +5117,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.023843775 + "ts": 0.024577125 }, { "core_id": 1, @@ -4995,7 +5127,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0246694 + "ts": 0.0254259 }, { "core_id": 1, @@ -5003,7 +5135,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.024682975 + "ts": 0.0254394 }, { "core_id": 1, @@ -5011,7 +5143,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.0246981 + "ts": 0.02545455 }, { "core_id": 0, @@ -5021,7 +5153,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0248132 + "ts": 0.0255467 }, { "core_id": 0, @@ -5029,7 +5161,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0248287 + "ts": 0.0255621 }, { "core_id": 0, @@ -5037,7 +5169,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.024843775 + "ts": 0.025577425 }, { "core_id": 1, @@ -5047,7 +5179,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0256694 + "ts": 0.0264259 }, { "core_id": 1, @@ -5055,7 +5187,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.025682925 + "ts": 0.0264394 }, { "core_id": 1, @@ -5063,7 +5195,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.025698075 + "ts": 0.02645455 }, { "core_id": 0, @@ -5073,7 +5205,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0258132 + "ts": 0.0265467 }, { "core_id": 0, @@ -5081,7 +5213,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0258286 + "ts": 0.02656205 }, { "core_id": 0, @@ -5089,7 +5221,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.025843825 + "ts": 0.026577125 }, { "core_id": 1, @@ -5099,7 +5231,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0266694 + "ts": 0.0274259 }, { "core_id": 1, @@ -5107,7 +5239,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.026682925 + "ts": 0.0274394 }, { "core_id": 1, @@ -5115,7 +5247,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.026698075 + "ts": 0.027454675 }, { "core_id": 0, @@ -5125,7 +5257,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0268132 + "ts": 0.0275467 }, { "core_id": 0, @@ -5133,7 +5265,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0268287 + "ts": 0.02756205 }, { "core_id": 0, @@ -5141,7 +5273,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.026843775 + "ts": 0.02757715 }, { "core_id": 1, @@ -5151,7 +5283,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0276694 + "ts": 0.0284259 }, { "core_id": 1, @@ -5159,7 +5291,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.027682925 + "ts": 0.02843945 }, { "core_id": 1, @@ -5167,7 +5299,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.027698325 + "ts": 0.0284546 }, { "core_id": 0, @@ -5177,7 +5309,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0278132 + "ts": 0.0285467 }, { "core_id": 0, @@ -5185,7 +5317,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0278287 + "ts": 0.02856205 }, { "core_id": 0, @@ -5193,7 +5325,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.027843775 + "ts": 0.028577125 }, { "core_id": 1, @@ -5203,7 +5335,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0286694 + "ts": 0.0294259 }, { "core_id": 1, @@ -5211,7 +5343,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.028682975 + "ts": 0.0294394 }, { "core_id": 1, @@ -5219,7 +5351,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.0286981 + "ts": 0.02945455 }, { "core_id": 0, @@ -5229,7 +5361,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0288132 + "ts": 0.0295467 }, { "core_id": 0, @@ -5237,7 +5369,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0288287 + "ts": 0.0295621 }, { "core_id": 0, @@ -5245,7 +5377,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.028843775 + "ts": 0.029577425 }, { "core_id": 1, @@ -5255,7 +5387,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0296694 + "ts": 0.0304259 }, { "core_id": 1, @@ -5263,7 +5395,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.029682925 + "ts": 0.0304394 }, { "core_id": 1, @@ -5271,7 +5403,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.029698075 + "ts": 0.03045455 }, { "core_id": 0, @@ -5281,7 +5413,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0298132 + "ts": 0.0305467 }, { "core_id": 0, @@ -5289,7 +5421,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0298286 + "ts": 0.03056205 }, { "core_id": 0, @@ -5297,7 +5429,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.029843825 + "ts": 0.030577125 }, { "core_id": 1, @@ -5307,7 +5439,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0306694 + "ts": 0.0314259 }, { "core_id": 1, @@ -5315,7 +5447,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.030682925 + "ts": 0.0314394 }, { "core_id": 1, @@ -5323,7 +5455,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.030698075 + "ts": 0.031454675 }, { "core_id": 0, @@ -5333,7 +5465,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0308132 + "ts": 0.0315467 }, { "core_id": 0, @@ -5341,7 +5473,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0308287 + "ts": 0.03156205 }, { "core_id": 0, @@ -5349,7 +5481,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.030843775 + "ts": 0.03157715 }, { "core_id": 1, @@ -5359,7 +5491,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0316694 + "ts": 0.0324259 }, { "core_id": 1, @@ -5367,7 +5499,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.031682925 + "ts": 0.03243945 }, { "core_id": 1, @@ -5375,7 +5507,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.031698325 + "ts": 0.0324546 }, { "core_id": 0, @@ -5385,7 +5517,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0318132 + "ts": 0.0325467 }, { "core_id": 0, @@ -5393,9 +5525,9 @@ "id": 6, "in_irq": true, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.031828325 + "ts": 0.03256165 }, { "core_id": 1, @@ -5403,9 +5535,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.031828325 + "ts": 0.03256165 }, { "core_id": 0, @@ -5413,7 +5545,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0318409 + "ts": 0.0325743 }, { "core_id": 0, @@ -5421,18 +5553,18 @@ "id": 4, "in_irq": false, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.0318604 + "ts": 0.032589975 }, { - "addr": "0x3ffbb728", + "addr": "0x3ffbaef0", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -5444,16 +5576,16 @@ "id": 512, "in_irq": false, "size": 2, - "ts": 0.0318958 + "ts": 0.032626425 }, { - "addr": "0x3ffbb738", + "addr": "0x3ffbaf00", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -5465,7 +5597,7 @@ "id": 512, "in_irq": false, "size": 4, - "ts": 0.03193035 + "ts": 0.03266185 }, { "core_id": 0, @@ -5475,10 +5607,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.031947275 + "ts": 0.0326823 }, { "core_id": 0, @@ -5488,10 +5620,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.031963225 + "ts": 0.032698225 }, { "core_id": 0, @@ -5499,8 +5631,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (340) example: Task[0x3ffb7aec]: allocated 4 bytes @ 0x3ffbb738\n", - "ts": 0.0320275 + "msg": "I (328) example: Task[0x3ffb72b4]: allocated 4 bytes @ 0x3ffbaf00\n", + "ts": 0.032750775 }, { "core_id": 0, @@ -5508,8 +5640,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (340) example: Task[0x3ffb7aec]: allocated 4 bytes @ 0x3ffbb738\n", - "ts": 0.0320275 + "msg": "I (328) example: Task[0x3ffb72b4]: allocated 4 bytes @ 0x3ffbaf00\n", + "ts": 0.032750775 }, { "core_id": 0, @@ -5519,10 +5651,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12287056, + "xQueue": 12284952, "xTicksToWait": 0 }, - "ts": 0.0320412 + "ts": 0.032764225 }, { "core_id": 0, @@ -5530,9 +5662,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12289748 + "tid": 12287644 }, - "ts": 0.03205445 + "ts": 0.03277745 }, { "core_id": 1, @@ -5540,9 +5672,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12289748 + "tid": 12287644 }, - "ts": 0.03205445 + "ts": 0.03277745 }, { "core_id": 1, @@ -5552,7 +5684,7 @@ "params": { "irq_num": 31 }, - "ts": 0.032070625 + "ts": 0.0327937 }, { "core_id": 0, @@ -5562,7 +5694,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.032081475 + "ts": 0.03280465 }, { "core_id": 1, @@ -5570,7 +5702,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.032092275 + "ts": 0.0328154 }, { "core_id": 0, @@ -5580,7 +5712,7 @@ "params": { "irq_num": 30 }, - "ts": 0.032106075 + "ts": 0.03282915 }, { "core_id": 1, @@ -5588,9 +5720,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12289748 + "tid": 12287644 }, - "ts": 0.032116925 + "ts": 0.032839875 }, { "core_id": 0, @@ -5598,7 +5730,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.032127825 + "ts": 0.032850675 }, { "core_id": 1, @@ -5608,10 +5740,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12287056, + "xQueue": 12284952, "xTicksToWait": 4294967295 }, - "ts": 0.032139925 + "ts": 0.03286275 }, { "core_id": 0, @@ -5619,7 +5751,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.0321505 + "ts": 0.03287395 }, { "core_id": 1, @@ -5629,10 +5761,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.032166625 + "ts": 0.0328912 }, { "core_id": 1, @@ -5642,10 +5774,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.032182825 + "ts": 0.032907525 }, { "core_id": 1, @@ -5653,8 +5785,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (340) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb738\n", - "ts": 0.032246375 + "msg": "I (328) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbaf00\n", + "ts": 0.0329553 }, { "core_id": 1, @@ -5662,15 +5794,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (340) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb738\n", - "ts": 0.032246375 + "msg": "I (328) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbaf00\n", + "ts": 0.0329553 }, { - "addr": "0x3ffbb738", + "addr": "0x3ffbaf00", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", + "0x4008da24", + "0x400d3c72", + "0x400880dc", "0x0", "0x0", "0x0", @@ -5684,7 +5816,7 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 0.032267375 + "ts": 0.032980775 }, { "core_id": 1, @@ -5694,7 +5826,7 @@ "params": { "irq_num": 31 }, - "ts": 0.03229425 + "ts": 0.0330082 }, { "core_id": 1, @@ -5702,7 +5834,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.032305725 + "ts": 0.0330196 }, { "core_id": 1, @@ -5710,7 +5842,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.032322425 + "ts": 0.033036175 }, { "core_id": 1, @@ -5720,7 +5852,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0326694 + "ts": 0.0334259 }, { "core_id": 1, @@ -5728,7 +5860,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.03268285 + "ts": 0.03343945 }, { "core_id": 1, @@ -5736,7 +5868,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.032698425 + "ts": 0.03345515 }, { "core_id": 0, @@ -5746,7 +5878,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0328132 + "ts": 0.0335467 }, { "core_id": 0, @@ -5754,9 +5886,9 @@ "id": 6, "in_irq": true, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.032828225 + "ts": 0.03356165 }, { "core_id": 1, @@ -5764,9 +5896,29 @@ "id": 6, "in_irq": false, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.032828225 + "ts": 0.03356165 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12296612 + }, + "ts": 0.03357355 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12296612 + }, + "ts": 0.03357355 }, { "core_id": 0, @@ -5774,7 +5926,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.03284085 + "ts": 0.0335861 }, { "core_id": 0, @@ -5782,18 +5934,18 @@ "id": 4, "in_irq": false, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.032856525 + "ts": 0.033601775 }, { - "addr": "0x3ffbb738", + "addr": "0x3ffbaf00", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -5805,16 +5957,16 @@ "id": 512, "in_irq": false, "size": 4, - "ts": 0.0328917 + "ts": 0.033638 }, { - "addr": "0x3ffbb748", + "addr": "0x3ffbaf10", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -5826,7 +5978,7 @@ "id": 512, "in_irq": false, "size": 8, - "ts": 0.032926225 + "ts": 0.033673475 }, { "core_id": 0, @@ -5836,10 +5988,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.03294325 + "ts": 0.0336904 }, { "core_id": 0, @@ -5849,10 +6001,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.032963425 + "ts": 0.033706325 }, { "core_id": 0, @@ -5860,8 +6012,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (341) example: Task[0x3ffb926c]: allocated 8 bytes @ 0x3ffbb748\n", - "ts": 0.033027675 + "msg": "I (329) example: Task[0x3ffb8a34]: allocated 8 bytes @ 0x3ffbaf10\n", + "ts": 0.033758875 }, { "core_id": 0, @@ -5869,8 +6021,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (341) example: Task[0x3ffb926c]: allocated 8 bytes @ 0x3ffbb748\n", - "ts": 0.033027675 + "msg": "I (329) example: Task[0x3ffb8a34]: allocated 8 bytes @ 0x3ffbaf10\n", + "ts": 0.033758875 }, { "core_id": 0, @@ -5880,10 +6032,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12293072, + "xQueue": 12290968, "xTicksToWait": 0 }, - "ts": 0.0330414 + "ts": 0.033776525 }, { "core_id": 0, @@ -5891,9 +6043,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12295764 + "tid": 12293660 }, - "ts": 0.033054625 + "ts": 0.033789675 }, { "core_id": 1, @@ -5901,9 +6053,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12295764 + "tid": 12293660 }, - "ts": 0.033054625 + "ts": 0.033789675 }, { "core_id": 1, @@ -5913,7 +6065,7 @@ "params": { "irq_num": 31 }, - "ts": 0.033070875 + "ts": 0.033806 }, { "core_id": 0, @@ -5923,7 +6075,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.033081725 + "ts": 0.03381685 }, { "core_id": 1, @@ -5931,7 +6083,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.033092475 + "ts": 0.03382765 }, { "core_id": 0, @@ -5941,7 +6093,7 @@ "params": { "irq_num": 30 }, - "ts": 0.0331062 + "ts": 0.0338417 }, { "core_id": 1, @@ -5949,9 +6101,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12295764 + "tid": 12293660 }, - "ts": 0.033116975 + "ts": 0.0338535 }, { "core_id": 0, @@ -5959,7 +6111,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.033127725 + "ts": 0.03386475 }, { "core_id": 1, @@ -5969,18 +6121,20 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12293072, + "xQueue": 12290968, "xTicksToWait": 4294967295 }, - "ts": 0.033139725 + "ts": 0.033876675 }, { "core_id": 0, - "ctx_name": "alloc1", - "id": 17, + "ctx_name": "alloc2", + "id": 4, "in_irq": false, - "params": {}, - "ts": 0.033151025 + "params": { + "tid": 12296612 + }, + "ts": 0.033888475 }, { "core_id": 1, @@ -5990,10 +6144,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.033162675 + "ts": 0.03390125 }, { "core_id": 1, @@ -6003,158 +6157,19 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.033179 + "ts": 0.033919975 }, { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (341) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb748\n", - "ts": 0.033242525 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (341) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb748\n", - "ts": 0.033242525 - }, - { - "addr": "0x3ffbb748", + "addr": "0x3ffbaf20", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.03326705 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.03329405 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.033305475 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.03332205 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0336694 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.03368295 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.033698525 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0338132 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12298716 - }, - "ts": 0.033828325 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12298716 - }, - "ts": 0.033828325 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.033840975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12298716 - }, - "ts": 0.03385665 - }, - { - "addr": "0x3ffbb748", - "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -6166,16 +6181,34 @@ "id": 512, "in_irq": false, "size": 6, - "ts": 0.033892175 + "ts": 0.033931975 }, { - "addr": "0x3ffbb758", + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (329) example: Task[0x3ffb961c]: free memory @ 0x3ffbaf10\n", + "ts": 0.03397305 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (329) example: Task[0x3ffb961c]: free memory @ 0x3ffbaf10\n", + "ts": 0.03397305 + }, + { + "addr": "0x3ffbaf30", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -6187,7 +6220,28 @@ "id": 512, "in_irq": false, "size": 12, - "ts": 0.033926575 + "ts": 0.0339889 + }, + { + "addr": "0x3ffbaf10", + "callers": [ + "0x4008da24", + "0x400d3c72", + "0x400880dc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.0340032 }, { "core_id": 0, @@ -6197,10 +6251,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.033943475 + "ts": 0.034015625 }, { "core_id": 0, @@ -6210,61 +6264,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.03395945 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (342) example: Task[0x3ffba9dc]: allocated 12 bytes @ 0x3ffbb758\n", - "ts": 0.0340298 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (342) example: Task[0x3ffba9dc]: allocated 12 bytes @ 0x3ffbb758\n", - "ts": 0.0340298 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12299072, - "xTicksToWait": 0 - }, - "ts": 0.034047625 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12301764 - }, - "ts": 0.03406085 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12301764 - }, - "ts": 0.03406085 + "ts": 0.034035675 }, { "core_id": 1, @@ -6274,7 +6277,84 @@ "params": { "irq_num": 31 }, - "ts": 0.03407715 + "ts": 0.0340466 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.034058125 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.0340761 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (329) example: Task[0x3ffba1a4]: allocated 12 bytes @ 0x3ffbaf30\n", + "ts": 0.0340941 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (329) example: Task[0x3ffba1a4]: allocated 12 bytes @ 0x3ffbaf30\n", + "ts": 0.0340941 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12296968, + "xTicksToWait": 0 + }, + "ts": 0.034107525 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12299660 + }, + "ts": 0.034124925 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12299660 + }, + "ts": 0.034124925 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.034141275 }, { "core_id": 0, @@ -6284,7 +6364,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.034088 + "ts": 0.034152125 }, { "core_id": 1, @@ -6292,7 +6372,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.034098775 + "ts": 0.03416295 }, { "core_id": 0, @@ -6302,7 +6382,7 @@ "params": { "irq_num": 30 }, - "ts": 0.0341125 + "ts": 0.03417675 }, { "core_id": 1, @@ -6310,9 +6390,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12301764 + "tid": 12299660 }, - "ts": 0.034123375 + "ts": 0.0341875 }, { "core_id": 0, @@ -6320,7 +6400,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0341342 + "ts": 0.0341983 }, { "core_id": 1, @@ -6330,10 +6410,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12299072, + "xQueue": 12296968, "xTicksToWait": 4294967295 }, - "ts": 0.0341462 + "ts": 0.03421025 }, { "core_id": 0, @@ -6341,7 +6421,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.03415645 + "ts": 0.034221475 }, { "core_id": 1, @@ -6351,10 +6431,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.03416785 + "ts": 0.0342333 }, { "core_id": 1, @@ -6364,10 +6444,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.034184225 + "ts": 0.03424955 }, { "core_id": 1, @@ -6375,8 +6455,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (342) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb758\n", - "ts": 0.0342479 + "msg": "I (329) example: Task[0x3ffbad8c]: free memory @ 0x3ffbaf30\n", + "ts": 0.034297325 }, { "core_id": 1, @@ -6384,15 +6464,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (342) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb758\n", - "ts": 0.0342479 + "msg": "I (329) example: Task[0x3ffbad8c]: free memory @ 0x3ffbaf30\n", + "ts": 0.034297325 }, { - "addr": "0x3ffbb758", + "addr": "0x3ffbaf30", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", + "0x4008da24", + "0x400d3c72", + "0x400880dc", "0x0", "0x0", "0x0", @@ -6406,7 +6486,7 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 0.0342691 + "ts": 0.0343187 }, { "core_id": 1, @@ -6416,7 +6496,7 @@ "params": { "irq_num": 31 }, - "ts": 0.034300025 + "ts": 0.034346125 }, { "core_id": 1, @@ -6424,7 +6504,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0343115 + "ts": 0.034357525 }, { "core_id": 1, @@ -6432,7 +6512,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.0343282 + "ts": 0.0343741 }, { "core_id": 1, @@ -6442,7 +6522,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0346694 + "ts": 0.0344259 }, { "core_id": 1, @@ -6450,7 +6530,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.03468285 + "ts": 0.03443945 }, { "core_id": 1, @@ -6458,7 +6538,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.034698425 + "ts": 0.03445515 }, { "core_id": 0, @@ -6468,7 +6548,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0348132 + "ts": 0.0345467 }, { "core_id": 0, @@ -6476,7 +6556,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0348286 + "ts": 0.03456205 }, { "core_id": 0, @@ -6484,7 +6564,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.034843825 + "ts": 0.034577125 }, { "core_id": 1, @@ -6494,7 +6574,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0356694 + "ts": 0.0354259 }, { "core_id": 1, @@ -6502,7 +6582,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.035682925 + "ts": 0.0354394 }, { "core_id": 1, @@ -6510,7 +6590,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.035698075 + "ts": 0.03545455 }, { "core_id": 0, @@ -6520,7 +6600,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0358132 + "ts": 0.0355467 }, { "core_id": 0, @@ -6528,7 +6608,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0358287 + "ts": 0.0355621 }, { "core_id": 0, @@ -6536,7 +6616,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.035843775 + "ts": 0.035577425 }, { "core_id": 1, @@ -6546,7 +6626,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0366694 + "ts": 0.0364259 }, { "core_id": 1, @@ -6554,7 +6634,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.036682925 + "ts": 0.0364394 }, { "core_id": 1, @@ -6562,7 +6642,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.036698325 + "ts": 0.03645455 }, { "core_id": 0, @@ -6572,7 +6652,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0368132 + "ts": 0.0365467 }, { "core_id": 0, @@ -6580,7 +6660,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0368287 + "ts": 0.03656635 }, { "core_id": 0, @@ -6588,7 +6668,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.036843775 + "ts": 0.03658155 }, { "core_id": 1, @@ -6598,7 +6678,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0376694 + "ts": 0.0374259 }, { "core_id": 1, @@ -6606,7 +6686,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.037682975 + "ts": 0.0374394 }, { "core_id": 1, @@ -6614,7 +6694,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.0376981 + "ts": 0.03745455 }, { "core_id": 0, @@ -6624,7 +6704,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0378132 + "ts": 0.0375467 }, { "core_id": 0, @@ -6632,7 +6712,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0378287 + "ts": 0.03756205 }, { "core_id": 0, @@ -6640,7 +6720,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.037843775 + "ts": 0.037577125 }, { "core_id": 1, @@ -6650,7 +6730,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0386694 + "ts": 0.0384259 }, { "core_id": 1, @@ -6658,7 +6738,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.038682925 + "ts": 0.0384394 }, { "core_id": 1, @@ -6666,7 +6746,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.038698075 + "ts": 0.038454675 }, { "core_id": 0, @@ -6676,7 +6756,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0388132 + "ts": 0.0385467 }, { "core_id": 0, @@ -6684,7 +6764,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0388286 + "ts": 0.03856205 }, { "core_id": 0, @@ -6692,7 +6772,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.038843825 + "ts": 0.03857715 }, { "core_id": 1, @@ -6702,7 +6782,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0396694 + "ts": 0.0394259 }, { "core_id": 1, @@ -6710,7 +6790,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.039682925 + "ts": 0.03943945 }, { "core_id": 1, @@ -6718,7 +6798,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.039698075 + "ts": 0.0394546 }, { "core_id": 0, @@ -6728,7 +6808,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0398132 + "ts": 0.0395467 }, { "core_id": 0, @@ -6736,7 +6816,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0398287 + "ts": 0.03956205 }, { "core_id": 0, @@ -6744,7 +6824,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.039843775 + "ts": 0.039577125 }, { "core_id": 1, @@ -6754,7 +6834,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0406694 + "ts": 0.0404259 }, { "core_id": 1, @@ -6762,7 +6842,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.040682925 + "ts": 0.0404394 }, { "core_id": 1, @@ -6770,7 +6850,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.040698325 + "ts": 0.04045455 }, { "core_id": 0, @@ -6780,7 +6860,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0408132 + "ts": 0.0405467 }, { "core_id": 0, @@ -6788,7 +6868,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0408287 + "ts": 0.0405621 }, { "core_id": 0, @@ -6796,7 +6876,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.040843775 + "ts": 0.040577425 }, { "core_id": 1, @@ -6806,7 +6886,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0416694 + "ts": 0.0414259 }, { "core_id": 1, @@ -6814,7 +6894,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.041682975 + "ts": 0.0414394 }, { "core_id": 1, @@ -6822,7 +6902,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.0416981 + "ts": 0.04145455 }, { "core_id": 0, @@ -6832,7 +6912,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0418132 + "ts": 0.0415467 }, { "core_id": 0, @@ -6840,7 +6920,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0418287 + "ts": 0.04156205 }, { "core_id": 0, @@ -6848,7 +6928,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.041843775 + "ts": 0.041577125 }, { "core_id": 1, @@ -6858,7 +6938,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0426694 + "ts": 0.0424259 }, { "core_id": 1, @@ -6866,7 +6946,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.042682925 + "ts": 0.0424394 }, { "core_id": 1, @@ -6874,7 +6954,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.042698075 + "ts": 0.042454675 }, { "core_id": 0, @@ -6884,7 +6964,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0428132 + "ts": 0.0425467 }, { "core_id": 0, @@ -6892,7 +6972,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0428286 + "ts": 0.04256205 }, { "core_id": 0, @@ -6900,7 +6980,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.042843825 + "ts": 0.04257715 }, { "core_id": 1, @@ -6910,7 +6990,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0436694 + "ts": 0.0434259 }, { "core_id": 1, @@ -6918,7 +6998,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.043682925 + "ts": 0.04343945 }, { "core_id": 1, @@ -6926,7 +7006,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.043698075 + "ts": 0.0434546 }, { "core_id": 0, @@ -6936,7 +7016,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0438132 + "ts": 0.0435467 }, { "core_id": 0, @@ -6944,7 +7024,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0438287 + "ts": 0.04356205 }, { "core_id": 0, @@ -6952,7 +7032,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.043843775 + "ts": 0.043577125 }, { "core_id": 1, @@ -6962,7 +7042,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0446694 + "ts": 0.0444259 }, { "core_id": 1, @@ -6970,7 +7050,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.044687175 + "ts": 0.0444394 }, { "core_id": 1, @@ -6978,7 +7058,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.0447023 + "ts": 0.04445455 }, { "core_id": 0, @@ -6988,7 +7068,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0448132 + "ts": 0.0445467 }, { "core_id": 0, @@ -6996,7 +7076,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0448287 + "ts": 0.0445621 }, { "core_id": 0, @@ -7004,7 +7084,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.044843775 + "ts": 0.044577425 }, { "core_id": 1, @@ -7014,7 +7094,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0456694 + "ts": 0.0454259 }, { "core_id": 1, @@ -7022,7 +7102,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.045682925 + "ts": 0.0454394 }, { "core_id": 1, @@ -7030,7 +7110,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.045698075 + "ts": 0.04545455 }, { "core_id": 0, @@ -7040,7 +7120,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0458132 + "ts": 0.0455467 }, { "core_id": 0, @@ -7048,7 +7128,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0458286 + "ts": 0.04556205 }, { "core_id": 0, @@ -7056,7 +7136,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.045843825 + "ts": 0.045577125 }, { "core_id": 1, @@ -7066,7 +7146,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0466694 + "ts": 0.0464259 }, { "core_id": 1, @@ -7074,7 +7154,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.046682925 + "ts": 0.0464394 }, { "core_id": 1, @@ -7082,7 +7162,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.046698075 + "ts": 0.046454675 }, { "core_id": 0, @@ -7092,7 +7172,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0468132 + "ts": 0.0465467 }, { "core_id": 0, @@ -7100,7 +7180,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0468287 + "ts": 0.04656205 }, { "core_id": 0, @@ -7108,7 +7188,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.046843775 + "ts": 0.04657715 }, { "core_id": 1, @@ -7118,7 +7198,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0476694 + "ts": 0.0474259 }, { "core_id": 1, @@ -7126,7 +7206,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.047682925 + "ts": 0.04743945 }, { "core_id": 1, @@ -7134,7 +7214,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.047698325 + "ts": 0.0474546 }, { "core_id": 0, @@ -7144,7 +7224,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0478132 + "ts": 0.0475467 }, { "core_id": 0, @@ -7152,7 +7232,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0478287 + "ts": 0.04756205 }, { "core_id": 0, @@ -7160,7 +7240,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.047843775 + "ts": 0.047577125 }, { "core_id": 1, @@ -7170,7 +7250,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0486694 + "ts": 0.0484259 }, { "core_id": 1, @@ -7178,7 +7258,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.048682975 + "ts": 0.0484394 }, { "core_id": 1, @@ -7186,7 +7266,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.0486981 + "ts": 0.04845455 }, { "core_id": 0, @@ -7196,7 +7276,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0488132 + "ts": 0.0485467 }, { "core_id": 0, @@ -7204,7 +7284,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0488287 + "ts": 0.048566325 }, { "core_id": 0, @@ -7212,7 +7292,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.048843775 + "ts": 0.04858155 }, { "core_id": 1, @@ -7222,7 +7302,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0496694 + "ts": 0.0494259 }, { "core_id": 1, @@ -7230,7 +7310,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.049682925 + "ts": 0.0494394 }, { "core_id": 1, @@ -7238,7 +7318,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.049698075 + "ts": 0.04945455 }, { "core_id": 0, @@ -7248,7 +7328,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0498132 + "ts": 0.0495467 }, { "core_id": 0, @@ -7256,7 +7336,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0498286 + "ts": 0.04956205 }, { "core_id": 0, @@ -7264,7 +7344,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.049843825 + "ts": 0.049577125 }, { "core_id": 1, @@ -7274,7 +7354,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0506694 + "ts": 0.0504259 }, { "core_id": 1, @@ -7282,7 +7362,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.050682925 + "ts": 0.0504394 }, { "core_id": 1, @@ -7290,7 +7370,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.050698075 + "ts": 0.050454675 }, { "core_id": 0, @@ -7300,7 +7380,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0508132 + "ts": 0.0505467 }, { "core_id": 0, @@ -7308,7 +7388,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0508287 + "ts": 0.05056205 }, { "core_id": 0, @@ -7316,7 +7396,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.050843775 + "ts": 0.05057715 }, { "core_id": 1, @@ -7326,7 +7406,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0516694 + "ts": 0.0514259 }, { "core_id": 1, @@ -7334,7 +7414,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.051682925 + "ts": 0.05143945 }, { "core_id": 1, @@ -7342,7 +7422,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.051698325 + "ts": 0.0514546 }, { "core_id": 0, @@ -7352,7 +7432,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0518132 + "ts": 0.0515467 }, { "core_id": 0, @@ -7360,7 +7440,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0518287 + "ts": 0.05156205 }, { "core_id": 0, @@ -7368,7 +7448,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.051843775 + "ts": 0.051577125 }, { "core_id": 1, @@ -7378,7 +7458,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0526694 + "ts": 0.0524259 }, { "core_id": 1, @@ -7386,7 +7466,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.052682975 + "ts": 0.0524394 }, { "core_id": 1, @@ -7394,7 +7474,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.0526981 + "ts": 0.05245455 }, { "core_id": 0, @@ -7404,7 +7484,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0528132 + "ts": 0.0525467 }, { "core_id": 0, @@ -7412,7 +7492,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0528287 + "ts": 0.0525621 }, { "core_id": 0, @@ -7420,7 +7500,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.052843775 + "ts": 0.052577425 }, { "core_id": 1, @@ -7430,7 +7510,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0536694 + "ts": 0.0534259 }, { "core_id": 1, @@ -7438,7 +7518,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.053682925 + "ts": 0.0534394 }, { "core_id": 1, @@ -7446,7 +7526,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.053698075 + "ts": 0.05345455 }, { "core_id": 0, @@ -7456,7 +7536,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0538132 + "ts": 0.0535467 }, { "core_id": 0, @@ -7464,7 +7544,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0538286 + "ts": 0.05356205 }, { "core_id": 0, @@ -7472,7 +7552,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.053843825 + "ts": 0.053577125 }, { "core_id": 1, @@ -7482,7 +7562,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0546694 + "ts": 0.0544259 }, { "core_id": 1, @@ -7490,7 +7570,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.054682925 + "ts": 0.0544394 }, { "core_id": 1, @@ -7498,7 +7578,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.054698075 + "ts": 0.054454675 }, { "core_id": 0, @@ -7508,7 +7588,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0548132 + "ts": 0.0545467 }, { "core_id": 0, @@ -7516,7 +7596,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0548287 + "ts": 0.05456205 }, { "core_id": 0, @@ -7524,7 +7604,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.054843775 + "ts": 0.05457715 }, { "core_id": 1, @@ -7534,7 +7614,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0556694 + "ts": 0.0554259 }, { "core_id": 1, @@ -7542,7 +7622,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.055682925 + "ts": 0.05543945 }, { "core_id": 1, @@ -7550,7 +7630,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.055698325 + "ts": 0.0554546 }, { "core_id": 0, @@ -7560,7 +7640,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0558132 + "ts": 0.0555467 }, { "core_id": 0, @@ -7568,7 +7648,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0558287 + "ts": 0.05556205 }, { "core_id": 0, @@ -7576,7 +7656,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.055843775 + "ts": 0.055577125 }, { "core_id": 1, @@ -7586,7 +7666,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0566694 + "ts": 0.0564259 }, { "core_id": 1, @@ -7594,7 +7674,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0566872 + "ts": 0.0564394 }, { "core_id": 1, @@ -7602,7 +7682,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.05670235 + "ts": 0.05645455 }, { "core_id": 0, @@ -7612,7 +7692,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0568132 + "ts": 0.0565467 }, { "core_id": 0, @@ -7620,7 +7700,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0568287 + "ts": 0.0565621 }, { "core_id": 0, @@ -7628,7 +7708,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.056843775 + "ts": 0.056577425 }, { "core_id": 1, @@ -7638,7 +7718,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0576694 + "ts": 0.0574259 }, { "core_id": 1, @@ -7646,7 +7726,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.057682925 + "ts": 0.0574394 }, { "core_id": 1, @@ -7654,7 +7734,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.057698075 + "ts": 0.05745455 }, { "core_id": 0, @@ -7664,7 +7744,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0578132 + "ts": 0.0575467 }, { "core_id": 0, @@ -7672,7 +7752,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0578286 + "ts": 0.05756205 }, { "core_id": 0, @@ -7680,7 +7760,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.057843825 + "ts": 0.057577125 }, { "core_id": 1, @@ -7690,7 +7770,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0586694 + "ts": 0.0584259 }, { "core_id": 1, @@ -7698,7 +7778,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.058682925 + "ts": 0.0584394 }, { "core_id": 1, @@ -7706,7 +7786,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.058698075 + "ts": 0.058454675 }, { "core_id": 0, @@ -7716,7 +7796,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0588132 + "ts": 0.0585467 }, { "core_id": 0, @@ -7724,7 +7804,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0588287 + "ts": 0.05856205 }, { "core_id": 0, @@ -7732,7 +7812,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.058843775 + "ts": 0.05857715 }, { "core_id": 1, @@ -7742,7 +7822,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0596694 + "ts": 0.0594259 }, { "core_id": 1, @@ -7750,7 +7830,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.059682925 + "ts": 0.05943945 }, { "core_id": 1, @@ -7758,7 +7838,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.059698325 + "ts": 0.0594546 }, { "core_id": 0, @@ -7768,7 +7848,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0598132 + "ts": 0.0595467 }, { "core_id": 0, @@ -7776,7 +7856,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0598287 + "ts": 0.05956205 }, { "core_id": 0, @@ -7784,7 +7864,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.059843775 + "ts": 0.059577125 }, { "core_id": 1, @@ -7794,7 +7874,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0606694 + "ts": 0.0604259 }, { "core_id": 1, @@ -7802,7 +7882,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.060682975 + "ts": 0.0604394 }, { "core_id": 1, @@ -7810,7 +7890,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.0606981 + "ts": 0.06045455 }, { "core_id": 0, @@ -7820,7 +7900,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0608132 + "ts": 0.0605467 }, { "core_id": 0, @@ -7828,7 +7908,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0608287 + "ts": 0.060566325 }, { "core_id": 0, @@ -7836,7 +7916,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.060843775 + "ts": 0.06058155 }, { "core_id": 1, @@ -7846,7 +7926,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0616694 + "ts": 0.0614259 }, { "core_id": 1, @@ -7854,7 +7934,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.061682925 + "ts": 0.0614394 }, { "core_id": 1, @@ -7862,7 +7942,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.061698075 + "ts": 0.06145455 }, { "core_id": 0, @@ -7872,7 +7952,59 @@ "params": { "irq_num": 5 }, - "ts": 0.0618132 + "ts": 0.0615467 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.06156205 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.061577125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0624259 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0624394 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.062454675 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0625467 }, { "core_id": 0, @@ -7880,9 +8012,9 @@ "id": 6, "in_irq": true, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.061828225 + "ts": 0.062561675 }, { "core_id": 1, @@ -7890,9 +8022,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.061828225 + "ts": 0.062561675 }, { "core_id": 0, @@ -7900,7 +8032,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.06184085 + "ts": 0.06257425 }, { "core_id": 0, @@ -7908,18 +8040,18 @@ "id": 4, "in_irq": false, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.061856525 + "ts": 0.062589925 }, { - "addr": "0x3ffbb758", + "addr": "0x3ffbaf10", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -7931,16 +8063,16 @@ "id": 512, "in_irq": false, "size": 3, - "ts": 0.06189185 + "ts": 0.062624925 }, { - "addr": "0x3ffbb768", + "addr": "0x3ffbaf30", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -7952,7 +8084,7 @@ "id": 512, "in_irq": false, "size": 6, - "ts": 0.061926275 + "ts": 0.062660425 }, { "core_id": 0, @@ -7962,10 +8094,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.0619433 + "ts": 0.06267735 }, { "core_id": 0, @@ -7975,10 +8107,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.061959425 + "ts": 0.062693275 }, { "core_id": 0, @@ -7986,8 +8118,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (370) example: Task[0x3ffb7aec]: allocated 6 bytes @ 0x3ffbb768\n", - "ts": 0.062023675 + "msg": "I (358) example: Task[0x3ffb72b4]: allocated 6 bytes @ 0x3ffbaf30\n", + "ts": 0.062745825 }, { "core_id": 0, @@ -7995,8 +8127,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (370) example: Task[0x3ffb7aec]: allocated 6 bytes @ 0x3ffbb768\n", - "ts": 0.062023675 + "msg": "I (358) example: Task[0x3ffb72b4]: allocated 6 bytes @ 0x3ffbaf30\n", + "ts": 0.062745825 }, { "core_id": 0, @@ -8006,10 +8138,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12287056, + "xQueue": 12284952, "xTicksToWait": 0 }, - "ts": 0.062041475 + "ts": 0.062759275 }, { "core_id": 0, @@ -8017,9 +8149,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12289748 + "tid": 12287644 }, - "ts": 0.0620546 + "ts": 0.0627725 }, { "core_id": 1, @@ -8027,9 +8159,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12289748 + "tid": 12287644 }, - "ts": 0.0620546 + "ts": 0.0627725 }, { "core_id": 1, @@ -8039,7 +8171,7 @@ "params": { "irq_num": 31 }, - "ts": 0.0620708 + "ts": 0.062792925 }, { "core_id": 0, @@ -8049,7 +8181,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.062081675 + "ts": 0.062803875 }, { "core_id": 1, @@ -8057,7 +8189,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.06209245 + "ts": 0.06281465 }, { "core_id": 0, @@ -8067,7 +8199,7 @@ "params": { "irq_num": 30 }, - "ts": 0.062106525 + "ts": 0.06282855 }, { "core_id": 1, @@ -8075,9 +8207,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12289748 + "tid": 12287644 }, - "ts": 0.06211735 + "ts": 0.06283935 }, { "core_id": 0, @@ -8085,7 +8217,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.062128225 + "ts": 0.062850075 }, { "core_id": 1, @@ -8095,10 +8227,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12287056, + "xQueue": 12284952, "xTicksToWait": 4294967295 }, - "ts": 0.0621401 + "ts": 0.0628623 }, { "core_id": 0, @@ -8106,7 +8238,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.062150525 + "ts": 0.062872475 }, { "core_id": 1, @@ -8116,10 +8248,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.062162975 + "ts": 0.062884375 }, { "core_id": 1, @@ -8129,10 +8261,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.062179175 + "ts": 0.06290065 }, { "core_id": 1, @@ -8140,8 +8272,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (370) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb768\n", - "ts": 0.062242725 + "msg": "I (358) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbaf30\n", + "ts": 0.062948525 }, { "core_id": 1, @@ -8149,15 +8281,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (370) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb768\n", - "ts": 0.062242725 + "msg": "I (358) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbaf30\n", + "ts": 0.062948525 }, { - "addr": "0x3ffbb768", + "addr": "0x3ffbaf30", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", + "0x4008da24", + "0x400d3c72", + "0x400880dc", "0x0", "0x0", "0x0", @@ -8171,7 +8303,7 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 0.062263725 + "ts": 0.06296975 }, { "core_id": 1, @@ -8181,7 +8313,7 @@ "params": { "irq_num": 31 }, - "ts": 0.062294025 + "ts": 0.062997025 }, { "core_id": 1, @@ -8189,7 +8321,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0623055 + "ts": 0.063008475 }, { "core_id": 1, @@ -8197,7 +8329,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.0623222 + "ts": 0.063025175 }, { "core_id": 1, @@ -8207,7 +8339,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0626694 + "ts": 0.0634259 }, { "core_id": 1, @@ -8215,7 +8347,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.06268285 + "ts": 0.06343945 }, { "core_id": 1, @@ -8223,7 +8355,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.062698425 + "ts": 0.06345515 }, { "core_id": 0, @@ -8233,7 +8365,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0628132 + "ts": 0.0635467 }, { "core_id": 0, @@ -8241,9 +8373,9 @@ "id": 6, "in_irq": true, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.062828225 + "ts": 0.0635617 }, { "core_id": 1, @@ -8251,9 +8383,29 @@ "id": 6, "in_irq": false, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.062828225 + "ts": 0.0635617 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12296612 + }, + "ts": 0.06357355 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12296612 + }, + "ts": 0.06357355 }, { "core_id": 0, @@ -8261,7 +8413,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.06284085 + "ts": 0.06358605 }, { "core_id": 0, @@ -8269,18 +8421,18 @@ "id": 4, "in_irq": false, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.062856525 + "ts": 0.063601725 }, { - "addr": "0x3ffbb768", + "addr": "0x3ffbaf30", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -8292,16 +8444,16 @@ "id": 512, "in_irq": false, "size": 6, - "ts": 0.06289185 + "ts": 0.06363815 }, { - "addr": "0x3ffbb778", + "addr": "0x3ffbaf40", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -8313,7 +8465,7 @@ "id": 512, "in_irq": false, "size": 12, - "ts": 0.062926275 + "ts": 0.0636778 }, { "core_id": 0, @@ -8323,10 +8475,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.0629433 + "ts": 0.063694725 }, { "core_id": 0, @@ -8336,10 +8488,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.062959425 + "ts": 0.06371075 }, { "core_id": 0, @@ -8347,8 +8499,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (371) example: Task[0x3ffb926c]: allocated 12 bytes @ 0x3ffbb778\n", - "ts": 0.0630259 + "msg": "I (359) example: Task[0x3ffb8a34]: allocated 12 bytes @ 0x3ffbaf40\n", + "ts": 0.063765475 }, { "core_id": 0, @@ -8356,8 +8508,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (371) example: Task[0x3ffb926c]: allocated 12 bytes @ 0x3ffbb778\n", - "ts": 0.0630259 + "msg": "I (359) example: Task[0x3ffb8a34]: allocated 12 bytes @ 0x3ffbaf40\n", + "ts": 0.063765475 }, { "core_id": 0, @@ -8367,10 +8519,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12293072, + "xQueue": 12290968, "xTicksToWait": 0 }, - "ts": 0.06303945 + "ts": 0.0637789 }, { "core_id": 0, @@ -8378,9 +8530,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12295764 + "tid": 12293660 }, - "ts": 0.06305685 + "ts": 0.06379215 }, { "core_id": 1, @@ -8388,9 +8540,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12295764 + "tid": 12293660 }, - "ts": 0.06305685 + "ts": 0.06379215 }, { "core_id": 1, @@ -8400,7 +8552,7 @@ "params": { "irq_num": 31 }, - "ts": 0.063073175 + "ts": 0.063808625 }, { "core_id": 0, @@ -8410,7 +8562,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.063084025 + "ts": 0.063819475 }, { "core_id": 1, @@ -8418,7 +8570,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.063094775 + "ts": 0.0638303 }, { "core_id": 0, @@ -8428,7 +8580,7 @@ "params": { "irq_num": 30 }, - "ts": 0.0631085 + "ts": 0.0638441 }, { "core_id": 1, @@ -8436,9 +8588,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12295764 + "tid": 12293660 }, - "ts": 0.06311935 + "ts": 0.0638558 }, { "core_id": 0, @@ -8446,7 +8598,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.063130175 + "ts": 0.063867475 }, { "core_id": 1, @@ -8456,18 +8608,20 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12293072, + "xQueue": 12290968, "xTicksToWait": 4294967295 }, - "ts": 0.063142025 + "ts": 0.06388035 }, { "core_id": 0, - "ctx_name": "alloc1", - "id": 17, + "ctx_name": "alloc2", + "id": 4, "in_irq": false, - "params": {}, - "ts": 0.0631523 + "params": { + "tid": 12296612 + }, + "ts": 0.06389215 }, { "core_id": 1, @@ -8477,10 +8631,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.063163775 + "ts": 0.06390475 }, { "core_id": 1, @@ -8490,158 +8644,19 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.063180075 + "ts": 0.06392635 }, { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (371) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb778\n", - "ts": 0.063243525 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (371) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb778\n", - "ts": 0.063243525 - }, - { - "addr": "0x3ffbb778", + "addr": "0x3ffbaf50", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.063264675 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.063291675 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0633031 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.063319675 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0636694 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.06368295 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.063698525 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0638132 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12298716 - }, - "ts": 0.063828325 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12298716 - }, - "ts": 0.063828325 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.063840975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12298716 - }, - "ts": 0.06385665 - }, - { - "addr": "0x3ffbb778", - "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -8653,16 +8668,34 @@ "id": 512, "in_irq": false, "size": 9, - "ts": 0.063892175 + "ts": 0.0639378 }, { - "addr": "0x3ffbb788", + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (359) example: Task[0x3ffb961c]: free memory @ 0x3ffbaf40\n", + "ts": 0.0639792 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (359) example: Task[0x3ffb961c]: free memory @ 0x3ffbaf40\n", + "ts": 0.0639792 + }, + { + "addr": "0x3ffbaf60", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -8674,7 +8707,28 @@ "id": 512, "in_irq": false, "size": 18, - "ts": 0.0639307 + "ts": 0.0639913 + }, + { + "addr": "0x3ffbaf40", + "callers": [ + "0x4008da24", + "0x400d3c72", + "0x400880dc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.064005175 }, { "core_id": 0, @@ -8684,74 +8738,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.063947725 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12283904, - "xTicksToWait": 0 - }, - "ts": 0.0639637 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (372) example: Task[0x3ffba9dc]: allocated 18 bytes @ 0x3ffbb788\n", - "ts": 0.06403405 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (372) example: Task[0x3ffba9dc]: allocated 18 bytes @ 0x3ffbb788\n", - "ts": 0.06403405 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12299072, - "xTicksToWait": 0 - }, - "ts": 0.06404765 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12301764 - }, - "ts": 0.064060875 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12301764 - }, - "ts": 0.064060875 + "ts": 0.0640176 }, { "core_id": 1, @@ -8761,7 +8751,97 @@ "params": { "irq_num": 31 }, - "ts": 0.064077175 + "ts": 0.0640365 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12281672, + "xTicksToWait": 0 + }, + "ts": 0.064047725 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0640585 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.06407665 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (359) example: Task[0x3ffba1a4]: allocated 18 bytes @ 0x3ffbaf60\n", + "ts": 0.06410445 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (359) example: Task[0x3ffba1a4]: allocated 18 bytes @ 0x3ffbaf60\n", + "ts": 0.06410445 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12296968, + "xTicksToWait": 0 + }, + "ts": 0.06412205 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12299660 + }, + "ts": 0.0641353 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12299660 + }, + "ts": 0.0641353 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.06415165 }, { "core_id": 0, @@ -8771,7 +8851,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.064088025 + "ts": 0.0641625 }, { "core_id": 1, @@ -8779,7 +8859,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0640988 + "ts": 0.064173325 }, { "core_id": 0, @@ -8789,7 +8869,7 @@ "params": { "irq_num": 30 }, - "ts": 0.064112775 + "ts": 0.06418725 }, { "core_id": 1, @@ -8797,9 +8877,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12301764 + "tid": 12299660 }, - "ts": 0.0641236 + "ts": 0.06419815 }, { "core_id": 0, @@ -8807,7 +8887,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.064134475 + "ts": 0.064209025 }, { "core_id": 1, @@ -8817,10 +8897,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12299072, + "xQueue": 12296968, "xTicksToWait": 4294967295 }, - "ts": 0.064146325 + "ts": 0.06422095 }, { "core_id": 0, @@ -8828,7 +8908,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.064157625 + "ts": 0.064232175 }, { "core_id": 1, @@ -8838,10 +8918,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.06416925 + "ts": 0.064244 }, { "core_id": 1, @@ -8851,10 +8931,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.0641897 + "ts": 0.064260225 }, { "core_id": 1, @@ -8862,8 +8942,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (372) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb788\n", - "ts": 0.06425325 + "msg": "I (359) example: Task[0x3ffbad8c]: free memory @ 0x3ffbaf60\n", + "ts": 0.0643081 }, { "core_id": 1, @@ -8871,15 +8951,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (372) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb788\n", - "ts": 0.06425325 + "msg": "I (359) example: Task[0x3ffbad8c]: free memory @ 0x3ffbaf60\n", + "ts": 0.0643081 }, { - "addr": "0x3ffbb788", + "addr": "0x3ffbaf60", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", + "0x4008da24", + "0x400d3c72", + "0x400880dc", "0x0", "0x0", "0x0", @@ -8893,7 +8973,7 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 0.06427445 + "ts": 0.0643295 }, { "core_id": 1, @@ -8903,7 +8983,7 @@ "params": { "irq_num": 31 }, - "ts": 0.06430135 + "ts": 0.06436085 }, { "core_id": 1, @@ -8911,7 +8991,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.064312775 + "ts": 0.0643723 }, { "core_id": 1, @@ -8919,7 +8999,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.06432935 + "ts": 0.064389 }, { "core_id": 1, @@ -8929,7 +9009,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0646694 + "ts": 0.0644259 }, { "core_id": 1, @@ -8937,7 +9017,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.06468295 + "ts": 0.06443945 }, { "core_id": 1, @@ -8945,7 +9025,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.064698525 + "ts": 0.06445515 }, { "core_id": 0, @@ -8955,7 +9035,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0648132 + "ts": 0.0645467 }, { "core_id": 0, @@ -8963,7 +9043,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0648287 + "ts": 0.0645621 }, { "core_id": 0, @@ -8971,7 +9051,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.064843775 + "ts": 0.064577425 }, { "core_id": 1, @@ -8981,7 +9061,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0656694 + "ts": 0.0654259 }, { "core_id": 1, @@ -8989,7 +9069,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.065682925 + "ts": 0.0654394 }, { "core_id": 1, @@ -8997,7 +9077,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.065698325 + "ts": 0.06545455 }, { "core_id": 0, @@ -9007,7 +9087,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0658132 + "ts": 0.0655467 }, { "core_id": 0, @@ -9015,7 +9095,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0658287 + "ts": 0.06556205 }, { "core_id": 0, @@ -9023,7 +9103,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.065843775 + "ts": 0.065577125 }, { "core_id": 1, @@ -9033,7 +9113,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0666694 + "ts": 0.0664259 }, { "core_id": 1, @@ -9041,7 +9121,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.066682975 + "ts": 0.0664394 }, { "core_id": 1, @@ -9049,7 +9129,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.0666981 + "ts": 0.066454675 }, { "core_id": 0, @@ -9059,7 +9139,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0668132 + "ts": 0.0665467 }, { "core_id": 0, @@ -9067,7 +9147,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0668287 + "ts": 0.06656205 }, { "core_id": 0, @@ -9075,7 +9155,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.066843775 + "ts": 0.06657715 }, { "core_id": 1, @@ -9085,7 +9165,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0676694 + "ts": 0.0674259 }, { "core_id": 1, @@ -9093,7 +9173,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.067682925 + "ts": 0.06743945 }, { "core_id": 1, @@ -9101,7 +9181,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.067698075 + "ts": 0.0674546 }, { "core_id": 0, @@ -9111,7 +9191,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0678132 + "ts": 0.0675467 }, { "core_id": 0, @@ -9119,7 +9199,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0678286 + "ts": 0.06756205 }, { "core_id": 0, @@ -9127,7 +9207,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.067843825 + "ts": 0.067577125 }, { "core_id": 1, @@ -9137,7 +9217,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0686694 + "ts": 0.0684259 }, { "core_id": 1, @@ -9145,7 +9225,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.068682925 + "ts": 0.0684394 }, { "core_id": 1, @@ -9153,7 +9233,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.068698075 + "ts": 0.06845455 }, { "core_id": 0, @@ -9163,7 +9243,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0688132 + "ts": 0.0685467 }, { "core_id": 0, @@ -9171,7 +9251,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0688287 + "ts": 0.0685621 }, { "core_id": 0, @@ -9179,7 +9259,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.068843775 + "ts": 0.068577425 }, { "core_id": 1, @@ -9189,7 +9269,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0696694 + "ts": 0.0694259 }, { "core_id": 1, @@ -9197,7 +9277,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.069682925 + "ts": 0.0694394 }, { "core_id": 1, @@ -9205,7 +9285,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.069698325 + "ts": 0.06945455 }, { "core_id": 0, @@ -9215,7 +9295,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0698132 + "ts": 0.0695467 }, { "core_id": 0, @@ -9223,7 +9303,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0698287 + "ts": 0.06956205 }, { "core_id": 0, @@ -9231,7 +9311,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.0698481 + "ts": 0.069577125 }, { "core_id": 1, @@ -9241,7 +9321,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0706694 + "ts": 0.0704259 }, { "core_id": 1, @@ -9249,7 +9329,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.070682925 + "ts": 0.0704394 }, { "core_id": 1, @@ -9257,7 +9337,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.070698075 + "ts": 0.070454675 }, { "core_id": 0, @@ -9267,7 +9347,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0708132 + "ts": 0.0705467 }, { "core_id": 0, @@ -9275,7 +9355,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0708287 + "ts": 0.07056205 }, { "core_id": 0, @@ -9283,7 +9363,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.070843775 + "ts": 0.07057715 }, { "core_id": 1, @@ -9293,7 +9373,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0716694 + "ts": 0.0714259 }, { "core_id": 1, @@ -9301,7 +9381,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.071682925 + "ts": 0.07143945 }, { "core_id": 1, @@ -9309,7 +9389,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.071698325 + "ts": 0.0714546 }, { "core_id": 0, @@ -9319,7 +9399,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0718132 + "ts": 0.0715467 }, { "core_id": 0, @@ -9327,7 +9407,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0718287 + "ts": 0.07156205 }, { "core_id": 0, @@ -9335,7 +9415,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.071843775 + "ts": 0.071577125 }, { "core_id": 1, @@ -9345,7 +9425,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0726694 + "ts": 0.0724259 }, { "core_id": 1, @@ -9353,7 +9433,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.072682975 + "ts": 0.0724394 }, { "core_id": 1, @@ -9361,7 +9441,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.0726981 + "ts": 0.07245455 }, { "core_id": 0, @@ -9371,7 +9451,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0728132 + "ts": 0.0725467 }, { "core_id": 0, @@ -9379,7 +9459,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0728287 + "ts": 0.0725621 }, { "core_id": 0, @@ -9387,7 +9467,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.072843775 + "ts": 0.072577425 }, { "core_id": 1, @@ -9397,7 +9477,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0736694 + "ts": 0.0734259 }, { "core_id": 1, @@ -9405,7 +9485,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.073682925 + "ts": 0.0734394 }, { "core_id": 1, @@ -9413,7 +9493,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.073698075 + "ts": 0.07345455 }, { "core_id": 0, @@ -9423,7 +9503,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0738132 + "ts": 0.0735467 }, { "core_id": 0, @@ -9431,7 +9511,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0738286 + "ts": 0.07356205 }, { "core_id": 0, @@ -9439,7 +9519,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.073843825 + "ts": 0.073577125 }, { "core_id": 1, @@ -9449,7 +9529,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0746694 + "ts": 0.0744259 }, { "core_id": 1, @@ -9457,7 +9537,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.074682925 + "ts": 0.074443775 }, { "core_id": 1, @@ -9465,7 +9545,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.074698075 + "ts": 0.0744589 }, { "core_id": 0, @@ -9475,7 +9555,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0748132 + "ts": 0.0745467 }, { "core_id": 0, @@ -9483,7 +9563,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0748287 + "ts": 0.07456205 }, { "core_id": 0, @@ -9491,7 +9571,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.074843775 + "ts": 0.074577125 }, { "core_id": 1, @@ -9501,7 +9581,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0756694 + "ts": 0.0754259 }, { "core_id": 1, @@ -9509,7 +9589,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.075682925 + "ts": 0.0754394 }, { "core_id": 1, @@ -9517,7 +9597,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.075698325 + "ts": 0.07545455 }, { "core_id": 0, @@ -9527,7 +9607,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0758132 + "ts": 0.0755467 }, { "core_id": 0, @@ -9535,7 +9615,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0758287 + "ts": 0.0755621 }, { "core_id": 0, @@ -9543,7 +9623,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.075843775 + "ts": 0.075577425 }, { "core_id": 1, @@ -9553,7 +9633,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0766694 + "ts": 0.0764259 }, { "core_id": 1, @@ -9561,7 +9641,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.076682975 + "ts": 0.0764394 }, { "core_id": 1, @@ -9569,7 +9649,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.0766981 + "ts": 0.07645455 }, { "core_id": 0, @@ -9579,7 +9659,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0768132 + "ts": 0.0765467 }, { "core_id": 0, @@ -9587,7 +9667,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0768287 + "ts": 0.07656205 }, { "core_id": 0, @@ -9595,7 +9675,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.076843775 + "ts": 0.076577125 }, { "core_id": 1, @@ -9605,7 +9685,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0776694 + "ts": 0.0774259 }, { "core_id": 1, @@ -9613,7 +9693,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.077682925 + "ts": 0.0774394 }, { "core_id": 1, @@ -9621,7 +9701,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.077698075 + "ts": 0.077454675 }, { "core_id": 0, @@ -9631,7 +9711,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0778132 + "ts": 0.0775467 }, { "core_id": 0, @@ -9639,7 +9719,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0778286 + "ts": 0.07756205 }, { "core_id": 0, @@ -9647,7 +9727,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.077843825 + "ts": 0.07757715 }, { "core_id": 1, @@ -9657,7 +9737,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0786694 + "ts": 0.0784259 }, { "core_id": 1, @@ -9665,7 +9745,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.078682925 + "ts": 0.07843945 }, { "core_id": 1, @@ -9673,7 +9753,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.078698075 + "ts": 0.0784546 }, { "core_id": 0, @@ -9683,7 +9763,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0788132 + "ts": 0.0785467 }, { "core_id": 0, @@ -9691,7 +9771,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0788287 + "ts": 0.07856205 }, { "core_id": 0, @@ -9699,7 +9779,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.078843775 + "ts": 0.078577125 }, { "core_id": 1, @@ -9709,7 +9789,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0796694 + "ts": 0.0794259 }, { "core_id": 1, @@ -9717,7 +9797,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.079682925 + "ts": 0.0794394 }, { "core_id": 1, @@ -9725,7 +9805,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.079698325 + "ts": 0.07945455 }, { "core_id": 0, @@ -9735,7 +9815,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0798132 + "ts": 0.0795467 }, { "core_id": 0, @@ -9743,7 +9823,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0798287 + "ts": 0.0795621 }, { "core_id": 0, @@ -9751,7 +9831,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.079843775 + "ts": 0.079577425 }, { "core_id": 1, @@ -9761,7 +9841,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0806694 + "ts": 0.0804259 }, { "core_id": 1, @@ -9769,7 +9849,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.080682975 + "ts": 0.0804394 }, { "core_id": 1, @@ -9777,7 +9857,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.0806981 + "ts": 0.08045455 }, { "core_id": 0, @@ -9787,7 +9867,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0808132 + "ts": 0.0805467 }, { "core_id": 0, @@ -9795,7 +9875,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0808287 + "ts": 0.08056205 }, { "core_id": 0, @@ -9803,7 +9883,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.080843775 + "ts": 0.080577125 }, { "core_id": 1, @@ -9813,7 +9893,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0816694 + "ts": 0.0814259 }, { "core_id": 1, @@ -9821,7 +9901,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.081682925 + "ts": 0.0814394 }, { "core_id": 1, @@ -9829,7 +9909,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.081698075 + "ts": 0.081454675 }, { "core_id": 0, @@ -9839,7 +9919,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0818132 + "ts": 0.0815467 }, { "core_id": 0, @@ -9847,7 +9927,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0818286 + "ts": 0.08156205 }, { "core_id": 0, @@ -9855,7 +9935,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.081843825 + "ts": 0.08157715 }, { "core_id": 1, @@ -9865,7 +9945,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0826694 + "ts": 0.0824259 }, { "core_id": 1, @@ -9873,7 +9953,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.082682925 + "ts": 0.08243945 }, { "core_id": 1, @@ -9881,7 +9961,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.082698325 + "ts": 0.0824546 }, { "core_id": 0, @@ -9891,7 +9971,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0828132 + "ts": 0.0825467 }, { "core_id": 0, @@ -9899,7 +9979,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0828287 + "ts": 0.08256205 }, { "core_id": 0, @@ -9907,7 +9987,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.082843775 + "ts": 0.082577125 }, { "core_id": 1, @@ -9917,7 +9997,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0836694 + "ts": 0.0834259 }, { "core_id": 1, @@ -9925,7 +10005,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.083682975 + "ts": 0.0834394 }, { "core_id": 1, @@ -9933,7 +10013,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.0836981 + "ts": 0.08345455 }, { "core_id": 0, @@ -9943,7 +10023,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0838132 + "ts": 0.0835467 }, { "core_id": 0, @@ -9951,7 +10031,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0838287 + "ts": 0.0835621 }, { "core_id": 0, @@ -9959,7 +10039,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.083843775 + "ts": 0.083577425 }, { "core_id": 1, @@ -9969,7 +10049,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0846694 + "ts": 0.0844259 }, { "core_id": 1, @@ -9977,7 +10057,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.084682925 + "ts": 0.0844394 }, { "core_id": 1, @@ -9985,7 +10065,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.084698075 + "ts": 0.08445455 }, { "core_id": 0, @@ -9995,7 +10075,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0848132 + "ts": 0.0845467 }, { "core_id": 0, @@ -10003,7 +10083,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0848286 + "ts": 0.08456205 }, { "core_id": 0, @@ -10011,7 +10091,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.084843825 + "ts": 0.084577125 }, { "core_id": 1, @@ -10021,7 +10101,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0856694 + "ts": 0.0854259 }, { "core_id": 1, @@ -10029,7 +10109,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.085682925 + "ts": 0.0854394 }, { "core_id": 1, @@ -10037,7 +10117,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.085698075 + "ts": 0.085454675 }, { "core_id": 0, @@ -10047,7 +10127,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0858132 + "ts": 0.0855467 }, { "core_id": 0, @@ -10055,7 +10135,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0858287 + "ts": 0.08556205 }, { "core_id": 0, @@ -10063,7 +10143,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.085843775 + "ts": 0.08557715 }, { "core_id": 1, @@ -10073,7 +10153,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0866694 + "ts": 0.0864259 }, { "core_id": 1, @@ -10081,7 +10161,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.086682925 + "ts": 0.086443675 }, { "core_id": 1, @@ -10089,7 +10169,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.086698325 + "ts": 0.086458825 }, { "core_id": 0, @@ -10099,7 +10179,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0868132 + "ts": 0.0865467 }, { "core_id": 0, @@ -10107,7 +10187,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0868287 + "ts": 0.08656205 }, { "core_id": 0, @@ -10115,7 +10195,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.086843775 + "ts": 0.086577125 }, { "core_id": 1, @@ -10125,7 +10205,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0876694 + "ts": 0.0874259 }, { "core_id": 1, @@ -10133,7 +10213,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.087682975 + "ts": 0.0874394 }, { "core_id": 1, @@ -10141,7 +10221,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.0876981 + "ts": 0.08745455 }, { "core_id": 0, @@ -10151,7 +10231,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0878132 + "ts": 0.0875467 }, { "core_id": 0, @@ -10159,7 +10239,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0878287 + "ts": 0.0875621 }, { "core_id": 0, @@ -10167,7 +10247,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.087843775 + "ts": 0.087577425 }, { "core_id": 1, @@ -10177,7 +10257,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0886694 + "ts": 0.0884259 }, { "core_id": 1, @@ -10185,7 +10265,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.088682925 + "ts": 0.0884394 }, { "core_id": 1, @@ -10193,7 +10273,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.088698075 + "ts": 0.08845455 }, { "core_id": 0, @@ -10203,7 +10283,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0888132 + "ts": 0.0885467 }, { "core_id": 0, @@ -10211,7 +10291,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0888286 + "ts": 0.08856205 }, { "core_id": 0, @@ -10219,7 +10299,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.088843825 + "ts": 0.088577125 }, { "core_id": 1, @@ -10229,7 +10309,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0896694 + "ts": 0.0894259 }, { "core_id": 1, @@ -10237,7 +10317,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.089682925 + "ts": 0.0894394 }, { "core_id": 1, @@ -10245,7 +10325,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.089698075 + "ts": 0.089454675 }, { "core_id": 0, @@ -10255,7 +10335,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0898132 + "ts": 0.0895467 }, { "core_id": 0, @@ -10263,7 +10343,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0898287 + "ts": 0.08956205 }, { "core_id": 0, @@ -10271,7 +10351,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.089843775 + "ts": 0.08957715 }, { "core_id": 1, @@ -10281,7 +10361,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0906694 + "ts": 0.0904259 }, { "core_id": 1, @@ -10289,7 +10369,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.090682925 + "ts": 0.09043945 }, { "core_id": 1, @@ -10297,7 +10377,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.090698325 + "ts": 0.0904546 }, { "core_id": 0, @@ -10307,7 +10387,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0908132 + "ts": 0.0905467 }, { "core_id": 0, @@ -10315,7 +10395,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0908287 + "ts": 0.09056205 }, { "core_id": 0, @@ -10323,7 +10403,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.090843775 + "ts": 0.090577125 }, { "core_id": 1, @@ -10333,7 +10413,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0916694 + "ts": 0.0914259 }, { "core_id": 1, @@ -10341,7 +10421,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.091682975 + "ts": 0.0914394 }, { "core_id": 1, @@ -10349,7 +10429,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.0916981 + "ts": 0.09145455 }, { "core_id": 0, @@ -10359,7 +10439,59 @@ "params": { "irq_num": 5 }, - "ts": 0.0918132 + "ts": 0.0915467 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0915621 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.091577425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0924259 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0924394 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.09245455 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0925467 }, { "core_id": 0, @@ -10367,9 +10499,9 @@ "id": 6, "in_irq": true, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.091828325 + "ts": 0.09256165 }, { "core_id": 1, @@ -10377,9 +10509,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.091828325 + "ts": 0.09256165 }, { "core_id": 0, @@ -10387,7 +10519,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.091840975 + "ts": 0.0925743 }, { "core_id": 0, @@ -10395,18 +10527,18 @@ "id": 4, "in_irq": false, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.09185665 + "ts": 0.092590225 }, { - "addr": "0x3ffbb788", + "addr": "0x3ffbaf40", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -10418,16 +10550,16 @@ "id": 512, "in_irq": false, "size": 4, - "ts": 0.091892175 + "ts": 0.0926253 }, { - "addr": "0x3ffbb798", + "addr": "0x3ffbaf60", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -10439,7 +10571,7 @@ "id": 512, "in_irq": false, "size": 8, - "ts": 0.09193 + "ts": 0.092660875 }, { "core_id": 0, @@ -10449,10 +10581,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.0919469 + "ts": 0.09267785 }, { "core_id": 0, @@ -10462,10 +10594,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.091962875 + "ts": 0.092693825 }, { "core_id": 0, @@ -10473,8 +10605,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (400) example: Task[0x3ffb7aec]: allocated 8 bytes @ 0x3ffbb798\n", - "ts": 0.09202705 + "msg": "I (388) example: Task[0x3ffb72b4]: allocated 8 bytes @ 0x3ffbaf60\n", + "ts": 0.0927506 }, { "core_id": 0, @@ -10482,8 +10614,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (400) example: Task[0x3ffb7aec]: allocated 8 bytes @ 0x3ffbb798\n", - "ts": 0.09202705 + "msg": "I (388) example: Task[0x3ffb72b4]: allocated 8 bytes @ 0x3ffbaf60\n", + "ts": 0.0927506 }, { "core_id": 0, @@ -10493,10 +10625,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12287056, + "xQueue": 12284952, "xTicksToWait": 0 }, - "ts": 0.092040625 + "ts": 0.09276405 }, { "core_id": 0, @@ -10504,9 +10636,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12289748 + "tid": 12287644 }, - "ts": 0.09205375 + "ts": 0.092777275 }, { "core_id": 1, @@ -10514,9 +10646,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12289748 + "tid": 12287644 }, - "ts": 0.09205375 + "ts": 0.092777275 }, { "core_id": 1, @@ -10526,7 +10658,7 @@ "params": { "irq_num": 31 }, - "ts": 0.09206995 + "ts": 0.092793525 }, { "core_id": 0, @@ -10536,7 +10668,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.092080825 + "ts": 0.092804475 }, { "core_id": 1, @@ -10544,7 +10676,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0920916 + "ts": 0.092815225 }, { "core_id": 0, @@ -10554,7 +10686,7 @@ "params": { "irq_num": 30 }, - "ts": 0.0921055 + "ts": 0.092828975 }, { "core_id": 1, @@ -10562,9 +10694,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12289748 + "tid": 12287644 }, - "ts": 0.0921163 + "ts": 0.0928397 }, { "core_id": 0, @@ -10572,7 +10704,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.09212715 + "ts": 0.0928505 }, { "core_id": 1, @@ -10582,10 +10714,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12287056, + "xQueue": 12284952, "xTicksToWait": 4294967295 }, - "ts": 0.09213905 + "ts": 0.0928625 }, { "core_id": 0, @@ -10593,7 +10725,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.092149275 + "ts": 0.092872725 }, { "core_id": 1, @@ -10603,10 +10735,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.092160725 + "ts": 0.092884475 }, { "core_id": 1, @@ -10616,10 +10748,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.092181 + "ts": 0.09290075 }, { "core_id": 1, @@ -10627,8 +10759,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (400) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb798\n", - "ts": 0.09224455 + "msg": "I (388) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbaf60\n", + "ts": 0.092948525 }, { "core_id": 1, @@ -10636,15 +10768,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (400) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb798\n", - "ts": 0.09224455 + "msg": "I (388) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbaf60\n", + "ts": 0.092948525 }, { - "addr": "0x3ffbb798", + "addr": "0x3ffbaf60", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", + "0x4008da24", + "0x400d3c72", + "0x400880dc", "0x0", "0x0", "0x0", @@ -10658,7 +10790,7 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 0.09226575 + "ts": 0.0929699 }, { "core_id": 1, @@ -10668,7 +10800,7 @@ "params": { "irq_num": 31 }, - "ts": 0.092292625 + "ts": 0.09300135 }, { "core_id": 1, @@ -10676,7 +10808,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.09230405 + "ts": 0.0930128 }, { "core_id": 1, @@ -10684,7 +10816,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.092320625 + "ts": 0.0930295 }, { "core_id": 1, @@ -10694,7 +10826,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0926694 + "ts": 0.0934259 }, { "core_id": 1, @@ -10702,7 +10834,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.09268295 + "ts": 0.09343945 }, { "core_id": 1, @@ -10710,7 +10842,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.092698525 + "ts": 0.09345515 }, { "core_id": 0, @@ -10720,7 +10852,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0928132 + "ts": 0.0935467 }, { "core_id": 0, @@ -10728,9 +10860,9 @@ "id": 6, "in_irq": true, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.092828325 + "ts": 0.0935617 }, { "core_id": 1, @@ -10738,9 +10870,29 @@ "id": 6, "in_irq": false, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.092828325 + "ts": 0.0935617 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12296612 + }, + "ts": 0.09357355 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12296612 + }, + "ts": 0.09357355 }, { "core_id": 0, @@ -10748,7 +10900,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.092840975 + "ts": 0.09358605 }, { "core_id": 0, @@ -10756,18 +10908,18 @@ "id": 4, "in_irq": false, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.092856775 + "ts": 0.093601725 }, { - "addr": "0x3ffbb798", + "addr": "0x3ffbaf60", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -10779,16 +10931,16 @@ "id": 512, "in_irq": false, "size": 8, - "ts": 0.092892175 + "ts": 0.09363815 }, { - "addr": "0x3ffbb7a8", + "addr": "0x3ffbaf70", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -10800,7 +10952,7 @@ "id": 512, "in_irq": false, "size": 16, - "ts": 0.0929267 + "ts": 0.093673575 }, { "core_id": 0, @@ -10810,10 +10962,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.09294365 + "ts": 0.093690525 }, { "core_id": 0, @@ -10823,10 +10975,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.092963825 + "ts": 0.093706525 }, { "core_id": 0, @@ -10834,8 +10986,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (401) example: Task[0x3ffb926c]: allocated 16 bytes @ 0x3ffbb7a8\n", - "ts": 0.0930303 + "msg": "I (389) example: Task[0x3ffb8a34]: allocated 16 bytes @ 0x3ffbaf70\n", + "ts": 0.093761375 }, { "core_id": 0, @@ -10843,8 +10995,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (401) example: Task[0x3ffb926c]: allocated 16 bytes @ 0x3ffbb7a8\n", - "ts": 0.0930303 + "msg": "I (389) example: Task[0x3ffb8a34]: allocated 16 bytes @ 0x3ffbaf70\n", + "ts": 0.093761375 }, { "core_id": 0, @@ -10854,10 +11006,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12293072, + "xQueue": 12290968, "xTicksToWait": 0 }, - "ts": 0.09304395 + "ts": 0.093778675 }, { "core_id": 0, @@ -10865,9 +11017,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12295764 + "tid": 12293660 }, - "ts": 0.093057125 + "ts": 0.093791925 }, { "core_id": 1, @@ -10875,9 +11027,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12295764 + "tid": 12293660 }, - "ts": 0.093057125 + "ts": 0.093791925 }, { "core_id": 1, @@ -10887,7 +11039,7 @@ "params": { "irq_num": 31 }, - "ts": 0.09307345 + "ts": 0.093808275 }, { "core_id": 0, @@ -10897,7 +11049,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.0930843 + "ts": 0.093819125 }, { "core_id": 1, @@ -10905,7 +11057,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.09309505 + "ts": 0.09382995 }, { "core_id": 0, @@ -10915,7 +11067,7 @@ "params": { "irq_num": 30 }, - "ts": 0.093108775 + "ts": 0.09384375 }, { "core_id": 1, @@ -10923,9 +11075,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12295764 + "tid": 12293660 }, - "ts": 0.093119625 + "ts": 0.093855475 }, { "core_id": 0, @@ -10933,7 +11085,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.09313045 + "ts": 0.09386685 }, { "core_id": 1, @@ -10943,18 +11095,20 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12293072, + "xQueue": 12290968, "xTicksToWait": 4294967295 }, - "ts": 0.0931423 + "ts": 0.09387885 }, { "core_id": 0, - "ctx_name": "alloc1", - "id": 17, + "ctx_name": "alloc2", + "id": 4, "in_irq": false, - "params": {}, - "ts": 0.093152575 + "params": { + "tid": 12296612 + }, + "ts": 0.093890525 }, { "core_id": 1, @@ -10964,10 +11118,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.09316405 + "ts": 0.093903125 }, { "core_id": 1, @@ -10977,158 +11131,19 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.09318035 + "ts": 0.09392175 }, { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (401) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb7a8\n", - "ts": 0.0932438 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (401) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb7a8\n", - "ts": 0.0932438 - }, - { - "addr": "0x3ffbb7a8", + "addr": "0x3ffbaf84", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.093268825 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.093295825 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.093307375 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.09332395 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0936694 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.09368295 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.093698525 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0938132 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12298716 - }, - "ts": 0.093828325 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12298716 - }, - "ts": 0.093828325 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.093840975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12298716 - }, - "ts": 0.09385665 - }, - { - "addr": "0x3ffbb7a8", - "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -11140,16 +11155,34 @@ "id": 512, "in_irq": false, "size": 12, - "ts": 0.093892 + "ts": 0.09393375 }, { - "addr": "0x3ffbb7b8", + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (389) example: Task[0x3ffb961c]: free memory @ 0x3ffbaf70\n", + "ts": 0.0939748 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (389) example: Task[0x3ffb961c]: free memory @ 0x3ffbaf70\n", + "ts": 0.0939748 + }, + { + "addr": "0x3ffbaf94", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -11161,7 +11194,28 @@ "id": 512, "in_irq": false, "size": 24, - "ts": 0.0939264 + "ts": 0.09399075 + }, + { + "addr": "0x3ffbaf70", + "callers": [ + "0x4008da24", + "0x400d3c72", + "0x400880dc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.094005125 }, { "core_id": 0, @@ -11171,74 +11225,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.0939433 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12283904, - "xTicksToWait": 0 - }, - "ts": 0.093959425 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (402) example: Task[0x3ffba9dc]: allocated 24 bytes @ 0x3ffbb7b8\n", - "ts": 0.09402975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (402) example: Task[0x3ffba9dc]: allocated 24 bytes @ 0x3ffbb7b8\n", - "ts": 0.09402975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12299072, - "xTicksToWait": 0 - }, - "ts": 0.094047575 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12301764 - }, - "ts": 0.0940608 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12301764 - }, - "ts": 0.0940608 + "ts": 0.094017575 }, { "core_id": 1, @@ -11248,7 +11238,97 @@ "params": { "irq_num": 31 }, - "ts": 0.094077125 + "ts": 0.094036725 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12281672, + "xTicksToWait": 0 + }, + "ts": 0.094047975 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.094058825 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.0940771 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (389) example: Task[0x3ffba1a4]: allocated 24 bytes @ 0x3ffbaf94\n", + "ts": 0.09410495 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (389) example: Task[0x3ffba1a4]: allocated 24 bytes @ 0x3ffbaf94\n", + "ts": 0.09410495 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12296968, + "xTicksToWait": 0 + }, + "ts": 0.094118375 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12299660 + }, + "ts": 0.094135775 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12299660 + }, + "ts": 0.094135775 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.094152125 }, { "core_id": 0, @@ -11258,7 +11338,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.094087975 + "ts": 0.094162975 }, { "core_id": 1, @@ -11266,7 +11346,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.094098725 + "ts": 0.0941738 }, { "core_id": 0, @@ -11276,7 +11356,7 @@ "params": { "irq_num": 30 }, - "ts": 0.09411245 + "ts": 0.0941876 }, { "core_id": 1, @@ -11284,9 +11364,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12301764 + "tid": 12299660 }, - "ts": 0.09412335 + "ts": 0.09419835 }, { "core_id": 0, @@ -11294,7 +11374,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.094134175 + "ts": 0.09420915 }, { "core_id": 1, @@ -11304,10 +11384,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12299072, + "xQueue": 12296968, "xTicksToWait": 4294967295 }, - "ts": 0.094146025 + "ts": 0.0942211 }, { "core_id": 0, @@ -11315,7 +11395,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.094157325 + "ts": 0.094232325 }, { "core_id": 1, @@ -11325,10 +11405,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.09416895 + "ts": 0.09424415 }, { "core_id": 1, @@ -11338,10 +11418,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.09418535 + "ts": 0.0942604 }, { "core_id": 1, @@ -11349,8 +11429,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (402) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb7b8\n", - "ts": 0.0942489 + "msg": "I (389) example: Task[0x3ffbad8c]: free memory @ 0x3ffbaf94\n", + "ts": 0.094308175 }, { "core_id": 1, @@ -11358,15 +11438,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (402) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb7b8\n", - "ts": 0.0942489 + "msg": "I (389) example: Task[0x3ffbad8c]: free memory @ 0x3ffbaf94\n", + "ts": 0.094308175 }, { - "addr": "0x3ffbb7b8", + "addr": "0x3ffbaf94", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", + "0x4008da24", + "0x400d3c72", + "0x400880dc", "0x0", "0x0", "0x0", @@ -11380,7 +11460,7 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 0.0942701 + "ts": 0.09432955 }, { "core_id": 1, @@ -11390,7 +11470,7 @@ "params": { "irq_num": 31 }, - "ts": 0.0943011 + "ts": 0.094356975 }, { "core_id": 1, @@ -11398,7 +11478,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.094312575 + "ts": 0.094368375 }, { "core_id": 1, @@ -11406,7 +11486,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.094329275 + "ts": 0.09438495 }, { "core_id": 1, @@ -11416,7 +11496,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0946694 + "ts": 0.0944259 }, { "core_id": 1, @@ -11424,7 +11504,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.09468285 + "ts": 0.09443945 }, { "core_id": 1, @@ -11432,7 +11512,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.094698425 + "ts": 0.09445515 }, { "core_id": 0, @@ -11442,7 +11522,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0948132 + "ts": 0.0945467 }, { "core_id": 0, @@ -11450,7 +11530,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0948286 + "ts": 0.09456205 }, { "core_id": 0, @@ -11458,7 +11538,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.094843825 + "ts": 0.094577125 }, { "core_id": 1, @@ -11468,7 +11548,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0956694 + "ts": 0.0954259 }, { "core_id": 1, @@ -11476,7 +11556,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.095682925 + "ts": 0.0954394 }, { "core_id": 1, @@ -11484,7 +11564,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.095698075 + "ts": 0.09545455 }, { "core_id": 0, @@ -11494,7 +11574,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0958132 + "ts": 0.0955467 }, { "core_id": 0, @@ -11502,7 +11582,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0958287 + "ts": 0.0955621 }, { "core_id": 0, @@ -11510,7 +11590,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.095843775 + "ts": 0.095577425 }, { "core_id": 1, @@ -11520,7 +11600,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0966694 + "ts": 0.0964259 }, { "core_id": 1, @@ -11528,7 +11608,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.096682925 + "ts": 0.0964394 }, { "core_id": 1, @@ -11536,7 +11616,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.096698325 + "ts": 0.09645455 }, { "core_id": 0, @@ -11546,7 +11626,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0968132 + "ts": 0.0965467 }, { "core_id": 0, @@ -11554,7 +11634,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0968287 + "ts": 0.09656635 }, { "core_id": 0, @@ -11562,7 +11642,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.096843775 + "ts": 0.09658155 }, { "core_id": 1, @@ -11572,7 +11652,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0976694 + "ts": 0.0974259 }, { "core_id": 1, @@ -11580,7 +11660,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.097682975 + "ts": 0.0974394 }, { "core_id": 1, @@ -11588,7 +11668,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.0976981 + "ts": 0.09745455 }, { "core_id": 0, @@ -11598,7 +11678,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0978132 + "ts": 0.0975467 }, { "core_id": 0, @@ -11606,7 +11686,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0978287 + "ts": 0.09756205 }, { "core_id": 0, @@ -11614,7 +11694,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.097843775 + "ts": 0.097577125 }, { "core_id": 1, @@ -11624,7 +11704,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0986694 + "ts": 0.0984259 }, { "core_id": 1, @@ -11632,7 +11712,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.098682925 + "ts": 0.0984394 }, { "core_id": 1, @@ -11640,7 +11720,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.098698075 + "ts": 0.098454675 }, { "core_id": 0, @@ -11650,7 +11730,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0988132 + "ts": 0.0985467 }, { "core_id": 0, @@ -11658,7 +11738,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0988286 + "ts": 0.09856205 }, { "core_id": 0, @@ -11666,7 +11746,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.098843825 + "ts": 0.09857715 }, { "core_id": 1, @@ -11676,7 +11756,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0996694 + "ts": 0.0994259 }, { "core_id": 1, @@ -11684,7 +11764,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.099682925 + "ts": 0.09943945 }, { "core_id": 1, @@ -11692,7 +11772,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.099698075 + "ts": 0.0994546 }, { "core_id": 0, @@ -11702,7 +11782,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0998132 + "ts": 0.0995467 }, { "core_id": 0, @@ -11710,7 +11790,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0998287 + "ts": 0.09956205 }, { "core_id": 0, @@ -11718,7 +11798,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.099843775 + "ts": 0.099577125 }, { "core_id": 1, @@ -11728,7 +11808,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1006694 + "ts": 0.1004259 }, { "core_id": 1, @@ -11736,7 +11816,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.100682925 + "ts": 0.1004394 }, { "core_id": 1, @@ -11744,7 +11824,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.100698325 + "ts": 0.10045455 }, { "core_id": 0, @@ -11754,7 +11834,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1008132 + "ts": 0.1005467 }, { "core_id": 0, @@ -11762,7 +11842,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1008287 + "ts": 0.1005621 }, { "core_id": 0, @@ -11770,7 +11850,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.100843775 + "ts": 0.100577425 }, { "core_id": 1, @@ -11780,7 +11860,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1016694 + "ts": 0.1014259 }, { "core_id": 1, @@ -11788,7 +11868,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.101682975 + "ts": 0.1014394 }, { "core_id": 1, @@ -11796,7 +11876,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.1016981 + "ts": 0.10145455 }, { "core_id": 0, @@ -11806,7 +11886,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1018132 + "ts": 0.1015467 }, { "core_id": 0, @@ -11814,7 +11894,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1018287 + "ts": 0.10156205 }, { "core_id": 0, @@ -11822,7 +11902,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.101843775 + "ts": 0.101577125 }, { "core_id": 1, @@ -11832,7 +11912,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1026694 + "ts": 0.1024259 }, { "core_id": 1, @@ -11840,7 +11920,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.102682925 + "ts": 0.1024394 }, { "core_id": 1, @@ -11848,7 +11928,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.102698075 + "ts": 0.102454675 }, { "core_id": 0, @@ -11858,7 +11938,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1028132 + "ts": 0.1025467 }, { "core_id": 0, @@ -11866,7 +11946,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1028286 + "ts": 0.10256205 }, { "core_id": 0, @@ -11874,7 +11954,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.102843825 + "ts": 0.10257715 }, { "core_id": 1, @@ -11884,7 +11964,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1036694 + "ts": 0.1034259 }, { "core_id": 1, @@ -11892,7 +11972,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.103682925 + "ts": 0.10343945 }, { "core_id": 1, @@ -11900,7 +11980,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.103698075 + "ts": 0.1034546 }, { "core_id": 0, @@ -11910,7 +11990,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1038132 + "ts": 0.1035467 }, { "core_id": 0, @@ -11918,7 +11998,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1038287 + "ts": 0.10356205 }, { "core_id": 0, @@ -11926,7 +12006,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.103843775 + "ts": 0.103577125 }, { "core_id": 1, @@ -11936,7 +12016,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1046694 + "ts": 0.1044259 }, { "core_id": 1, @@ -11944,7 +12024,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.10468655 + "ts": 0.1044394 }, { "core_id": 1, @@ -11952,7 +12032,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.104701825 + "ts": 0.10445455 }, { "core_id": 0, @@ -11962,7 +12042,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1048132 + "ts": 0.1045467 }, { "core_id": 0, @@ -11970,7 +12050,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1048287 + "ts": 0.1045621 }, { "core_id": 0, @@ -11978,7 +12058,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.104843775 + "ts": 0.104577425 }, { "core_id": 1, @@ -11988,7 +12068,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1056694 + "ts": 0.1054259 }, { "core_id": 1, @@ -11996,7 +12076,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.105682925 + "ts": 0.1054394 }, { "core_id": 1, @@ -12004,7 +12084,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.105698075 + "ts": 0.10545455 }, { "core_id": 0, @@ -12014,7 +12094,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1058132 + "ts": 0.1055467 }, { "core_id": 0, @@ -12022,7 +12102,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1058286 + "ts": 0.10556205 }, { "core_id": 0, @@ -12030,7 +12110,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.105843825 + "ts": 0.105577125 }, { "core_id": 1, @@ -12040,7 +12120,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1066694 + "ts": 0.1064259 }, { "core_id": 1, @@ -12048,7 +12128,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.106682925 + "ts": 0.1064394 }, { "core_id": 1, @@ -12056,7 +12136,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.106698075 + "ts": 0.106454675 }, { "core_id": 0, @@ -12066,7 +12146,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1068132 + "ts": 0.1065467 }, { "core_id": 0, @@ -12074,7 +12154,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1068287 + "ts": 0.10656205 }, { "core_id": 0, @@ -12082,7 +12162,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.106843775 + "ts": 0.10657715 }, { "core_id": 1, @@ -12092,7 +12172,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1076694 + "ts": 0.1074259 }, { "core_id": 1, @@ -12100,7 +12180,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.107682925 + "ts": 0.10743945 }, { "core_id": 1, @@ -12108,7 +12188,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.107698325 + "ts": 0.1074546 }, { "core_id": 0, @@ -12118,7 +12198,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1078132 + "ts": 0.1075467 }, { "core_id": 0, @@ -12126,7 +12206,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1078287 + "ts": 0.10756205 }, { "core_id": 0, @@ -12134,7 +12214,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.107843775 + "ts": 0.107577125 }, { "core_id": 1, @@ -12144,7 +12224,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1086694 + "ts": 0.1084259 }, { "core_id": 1, @@ -12152,7 +12232,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.108682975 + "ts": 0.1084394 }, { "core_id": 1, @@ -12160,7 +12240,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.1086981 + "ts": 0.10845455 }, { "core_id": 0, @@ -12170,7 +12250,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1088132 + "ts": 0.1085467 }, { "core_id": 0, @@ -12178,7 +12258,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1088287 + "ts": 0.108566325 }, { "core_id": 0, @@ -12186,7 +12266,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.108843775 + "ts": 0.10858155 }, { "core_id": 1, @@ -12196,7 +12276,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1096694 + "ts": 0.1094259 }, { "core_id": 1, @@ -12204,7 +12284,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.109682925 + "ts": 0.1094394 }, { "core_id": 1, @@ -12212,7 +12292,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.109698075 + "ts": 0.10945455 }, { "core_id": 0, @@ -12222,7 +12302,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1098132 + "ts": 0.1095467 }, { "core_id": 0, @@ -12230,7 +12310,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1098286 + "ts": 0.10956205 }, { "core_id": 0, @@ -12238,7 +12318,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.109843825 + "ts": 0.109577125 }, { "core_id": 1, @@ -12248,7 +12328,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1106694 + "ts": 0.1104259 }, { "core_id": 1, @@ -12256,7 +12336,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.110682925 + "ts": 0.1104394 }, { "core_id": 1, @@ -12264,7 +12344,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.110698075 + "ts": 0.110454675 }, { "core_id": 0, @@ -12274,7 +12354,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1108132 + "ts": 0.1105467 }, { "core_id": 0, @@ -12282,7 +12362,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1108287 + "ts": 0.11056205 }, { "core_id": 0, @@ -12290,7 +12370,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.110843775 + "ts": 0.11057715 }, { "core_id": 1, @@ -12300,7 +12380,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1116694 + "ts": 0.1114259 }, { "core_id": 1, @@ -12308,7 +12388,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.111682925 + "ts": 0.11143945 }, { "core_id": 1, @@ -12316,7 +12396,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.111698325 + "ts": 0.1114546 }, { "core_id": 0, @@ -12326,7 +12406,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1118132 + "ts": 0.1115467 }, { "core_id": 0, @@ -12334,7 +12414,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1118287 + "ts": 0.11156205 }, { "core_id": 0, @@ -12342,7 +12422,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.111843775 + "ts": 0.111577125 }, { "core_id": 1, @@ -12352,7 +12432,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1126694 + "ts": 0.1124259 }, { "core_id": 1, @@ -12360,7 +12440,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.112682975 + "ts": 0.1124394 }, { "core_id": 1, @@ -12368,7 +12448,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.1126981 + "ts": 0.11245455 }, { "core_id": 0, @@ -12378,7 +12458,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1128132 + "ts": 0.1125467 }, { "core_id": 0, @@ -12386,7 +12466,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1128287 + "ts": 0.1125621 }, { "core_id": 0, @@ -12394,7 +12474,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.112843775 + "ts": 0.112577425 }, { "core_id": 1, @@ -12404,7 +12484,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1136694 + "ts": 0.1134259 }, { "core_id": 1, @@ -12412,7 +12492,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.113682925 + "ts": 0.1134394 }, { "core_id": 1, @@ -12420,7 +12500,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.113698075 + "ts": 0.11345455 }, { "core_id": 0, @@ -12430,7 +12510,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1138132 + "ts": 0.1135467 }, { "core_id": 0, @@ -12438,7 +12518,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1138286 + "ts": 0.11356205 }, { "core_id": 0, @@ -12446,7 +12526,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.113843825 + "ts": 0.113577125 }, { "core_id": 1, @@ -12456,7 +12536,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1146694 + "ts": 0.1144259 }, { "core_id": 1, @@ -12464,7 +12544,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.114682925 + "ts": 0.1144394 }, { "core_id": 1, @@ -12472,7 +12552,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.114698075 + "ts": 0.114454675 }, { "core_id": 0, @@ -12482,7 +12562,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1148132 + "ts": 0.1145467 }, { "core_id": 0, @@ -12490,7 +12570,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1148287 + "ts": 0.11456205 }, { "core_id": 0, @@ -12498,7 +12578,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.114843775 + "ts": 0.11457715 }, { "core_id": 1, @@ -12508,7 +12588,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1156694 + "ts": 0.1154259 }, { "core_id": 1, @@ -12516,7 +12596,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.115682925 + "ts": 0.11543945 }, { "core_id": 1, @@ -12524,7 +12604,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.115698325 + "ts": 0.1154546 }, { "core_id": 0, @@ -12534,7 +12614,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1158132 + "ts": 0.1155467 }, { "core_id": 0, @@ -12542,7 +12622,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1158287 + "ts": 0.11556205 }, { "core_id": 0, @@ -12550,7 +12630,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.115843775 + "ts": 0.115577125 }, { "core_id": 1, @@ -12560,7 +12640,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1166694 + "ts": 0.1164259 }, { "core_id": 1, @@ -12568,7 +12648,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1166872 + "ts": 0.1164394 }, { "core_id": 1, @@ -12576,7 +12656,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.11670235 + "ts": 0.11645455 }, { "core_id": 0, @@ -12586,7 +12666,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1168132 + "ts": 0.1165467 }, { "core_id": 0, @@ -12594,7 +12674,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1168287 + "ts": 0.1165621 }, { "core_id": 0, @@ -12602,7 +12682,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.116843775 + "ts": 0.116577425 }, { "core_id": 1, @@ -12612,7 +12692,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1176694 + "ts": 0.1174259 }, { "core_id": 1, @@ -12620,7 +12700,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.117682925 + "ts": 0.1174394 }, { "core_id": 1, @@ -12628,7 +12708,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.117698075 + "ts": 0.11745455 }, { "core_id": 0, @@ -12638,7 +12718,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1178132 + "ts": 0.1175467 }, { "core_id": 0, @@ -12646,7 +12726,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1178286 + "ts": 0.11756205 }, { "core_id": 0, @@ -12654,7 +12734,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.117843825 + "ts": 0.117577125 }, { "core_id": 1, @@ -12664,7 +12744,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1186694 + "ts": 0.1184259 }, { "core_id": 1, @@ -12672,7 +12752,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.118682925 + "ts": 0.1184394 }, { "core_id": 1, @@ -12680,7 +12760,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.118698075 + "ts": 0.118454675 }, { "core_id": 0, @@ -12690,7 +12770,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1188132 + "ts": 0.1185467 }, { "core_id": 0, @@ -12698,7 +12778,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1188287 + "ts": 0.11856205 }, { "core_id": 0, @@ -12706,7 +12786,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.118843775 + "ts": 0.11857715 }, { "core_id": 1, @@ -12716,7 +12796,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1196694 + "ts": 0.1194259 }, { "core_id": 1, @@ -12724,7 +12804,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.119682925 + "ts": 0.11943945 }, { "core_id": 1, @@ -12732,7 +12812,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.119698325 + "ts": 0.1194546 }, { "core_id": 0, @@ -12742,7 +12822,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1198132 + "ts": 0.1195467 }, { "core_id": 0, @@ -12750,7 +12830,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1198287 + "ts": 0.11956205 }, { "core_id": 0, @@ -12758,7 +12838,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.119843775 + "ts": 0.119577125 }, { "core_id": 1, @@ -12768,7 +12848,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1206694 + "ts": 0.1204259 }, { "core_id": 1, @@ -12776,7 +12856,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.120682975 + "ts": 0.1204394 }, { "core_id": 1, @@ -12784,7 +12864,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.1206981 + "ts": 0.12045455 }, { "core_id": 0, @@ -12794,7 +12874,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1208132 + "ts": 0.1205467 }, { "core_id": 0, @@ -12802,7 +12882,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1208287 + "ts": 0.120566325 }, { "core_id": 0, @@ -12810,7 +12890,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.120843775 + "ts": 0.12058155 }, { "core_id": 1, @@ -12820,7 +12900,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1216694 + "ts": 0.1214259 }, { "core_id": 1, @@ -12828,7 +12908,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.121682925 + "ts": 0.1214394 }, { "core_id": 1, @@ -12836,7 +12916,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.121698075 + "ts": 0.12145455 }, { "core_id": 0, @@ -12846,7 +12926,59 @@ "params": { "irq_num": 5 }, - "ts": 0.1218132 + "ts": 0.1215467 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.12156205 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.121577125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1224259 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1224394 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.122454675 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1225467 }, { "core_id": 0, @@ -12854,9 +12986,9 @@ "id": 6, "in_irq": true, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.121828225 + "ts": 0.122561675 }, { "core_id": 1, @@ -12864,9 +12996,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.121828225 + "ts": 0.122561675 }, { "core_id": 0, @@ -12874,7 +13006,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.12184085 + "ts": 0.12257425 }, { "core_id": 0, @@ -12882,18 +13014,18 @@ "id": 4, "in_irq": false, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.121856525 + "ts": 0.122589925 }, { - "addr": "0x3ffbb7b8", + "addr": "0x3ffbaf70", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -12905,16 +13037,16 @@ "id": 512, "in_irq": false, "size": 5, - "ts": 0.12189185 + "ts": 0.122624925 }, { - "addr": "0x3ffbb7c8", + "addr": "0x3ffbaf94", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -12926,7 +13058,7 @@ "id": 512, "in_irq": false, "size": 10, - "ts": 0.121926275 + "ts": 0.122660425 }, { "core_id": 0, @@ -12936,10 +13068,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.1219433 + "ts": 0.12267735 }, { "core_id": 0, @@ -12949,10 +13081,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.121959425 + "ts": 0.122693275 }, { "core_id": 0, @@ -12960,8 +13092,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (430) example: Task[0x3ffb7aec]: allocated 10 bytes @ 0x3ffbb7c8\n", - "ts": 0.12202985 + "msg": "I (418) example: Task[0x3ffb72b4]: allocated 10 bytes @ 0x3ffbaf94\n", + "ts": 0.12274805 }, { "core_id": 0, @@ -12969,8 +13101,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (430) example: Task[0x3ffb7aec]: allocated 10 bytes @ 0x3ffbb7c8\n", - "ts": 0.12202985 + "msg": "I (418) example: Task[0x3ffb72b4]: allocated 10 bytes @ 0x3ffbaf94\n", + "ts": 0.12274805 }, { "core_id": 0, @@ -12980,10 +13112,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12287056, + "xQueue": 12284952, "xTicksToWait": 0 }, - "ts": 0.122047575 + "ts": 0.12276155 }, { "core_id": 0, @@ -12991,9 +13123,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12289748 + "tid": 12287644 }, - "ts": 0.1220608 + "ts": 0.122778975 }, { "core_id": 1, @@ -13001,9 +13133,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12289748 + "tid": 12287644 }, - "ts": 0.1220608 + "ts": 0.122778975 }, { "core_id": 1, @@ -13013,7 +13145,7 @@ "params": { "irq_num": 31 }, - "ts": 0.12207705 + "ts": 0.12279525 }, { "core_id": 0, @@ -13023,7 +13155,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.1220879 + "ts": 0.1228061 }, { "core_id": 1, @@ -13031,7 +13163,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.122098675 + "ts": 0.122816975 }, { "core_id": 0, @@ -13041,7 +13173,7 @@ "params": { "irq_num": 30 }, - "ts": 0.1221125 + "ts": 0.1228308 }, { "core_id": 1, @@ -13049,9 +13181,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12289748 + "tid": 12287644 }, - "ts": 0.1221234 + "ts": 0.12284165 }, { "core_id": 0, @@ -13059,7 +13191,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.122134225 + "ts": 0.1228525 }, { "core_id": 1, @@ -13069,10 +13201,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12287056, + "xQueue": 12284952, "xTicksToWait": 4294967295 }, - "ts": 0.122146175 + "ts": 0.1228645 }, { "core_id": 0, @@ -13080,7 +13212,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.122156425 + "ts": 0.1228748 }, { "core_id": 1, @@ -13090,10 +13222,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.12216785 + "ts": 0.122886425 }, { "core_id": 1, @@ -13103,10 +13235,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.1221842 + "ts": 0.12290275 }, { "core_id": 1, @@ -13114,8 +13246,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (430) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb7c8\n", - "ts": 0.12224775 + "msg": "I (418) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbaf94\n", + "ts": 0.122950525 }, { "core_id": 1, @@ -13123,15 +13255,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (430) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb7c8\n", - "ts": 0.12224775 + "msg": "I (418) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbaf94\n", + "ts": 0.122950525 }, { - "addr": "0x3ffbb7c8", + "addr": "0x3ffbaf94", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", + "0x4008da24", + "0x400d3c72", + "0x400880dc", "0x0", "0x0", "0x0", @@ -13145,7 +13277,7 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 0.12226895 + "ts": 0.1229719 }, { "core_id": 1, @@ -13155,7 +13287,7 @@ "params": { "irq_num": 31 }, - "ts": 0.122299975 + "ts": 0.122999325 }, { "core_id": 1, @@ -13163,7 +13295,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.12231145 + "ts": 0.12301085 }, { "core_id": 1, @@ -13171,7 +13303,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.12232815 + "ts": 0.123027425 }, { "core_id": 1, @@ -13181,7 +13313,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1226694 + "ts": 0.1234259 }, { "core_id": 1, @@ -13189,7 +13321,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.12268285 + "ts": 0.12343945 }, { "core_id": 1, @@ -13197,7 +13329,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.122698425 + "ts": 0.12345515 }, { "core_id": 0, @@ -13207,7 +13339,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1228132 + "ts": 0.1235467 }, { "core_id": 0, @@ -13215,9 +13347,9 @@ "id": 6, "in_irq": true, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.122828225 + "ts": 0.12356165 }, { "core_id": 1, @@ -13225,9 +13357,29 @@ "id": 6, "in_irq": false, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.122828225 + "ts": 0.12356165 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12296612 + }, + "ts": 0.12357355 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12296612 + }, + "ts": 0.12357355 }, { "core_id": 0, @@ -13235,7 +13387,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.12284085 + "ts": 0.1235861 }, { "core_id": 0, @@ -13243,18 +13395,18 @@ "id": 4, "in_irq": false, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.122856525 + "ts": 0.123601775 }, { - "addr": "0x3ffbb7c8", + "addr": "0x3ffbaf94", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -13266,16 +13418,16 @@ "id": 512, "in_irq": false, "size": 10, - "ts": 0.12289185 + "ts": 0.12363815 }, { - "addr": "0x3ffbb7d8", + "addr": "0x3ffbafa4", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -13287,7 +13439,7 @@ "id": 512, "in_irq": false, "size": 20, - "ts": 0.122926275 + "ts": 0.12367715 }, { "core_id": 0, @@ -13297,10 +13449,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.1229433 + "ts": 0.123694075 }, { "core_id": 0, @@ -13310,10 +13462,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.122959425 + "ts": 0.1237101 }, { "core_id": 0, @@ -13321,8 +13473,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (431) example: Task[0x3ffb926c]: allocated 20 bytes @ 0x3ffbb7d8\n", - "ts": 0.12302985 + "msg": "I (419) example: Task[0x3ffb8a34]: allocated 20 bytes @ 0x3ffbafa4\n", + "ts": 0.123764825 }, { "core_id": 0, @@ -13330,8 +13482,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (431) example: Task[0x3ffb926c]: allocated 20 bytes @ 0x3ffbb7d8\n", - "ts": 0.12302985 + "msg": "I (419) example: Task[0x3ffb8a34]: allocated 20 bytes @ 0x3ffbafa4\n", + "ts": 0.123764825 }, { "core_id": 0, @@ -13341,10 +13493,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12293072, + "xQueue": 12290968, "xTicksToWait": 0 }, - "ts": 0.1230434 + "ts": 0.12377825 }, { "core_id": 0, @@ -13352,9 +13504,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12295764 + "tid": 12293660 }, - "ts": 0.123060825 + "ts": 0.1237915 }, { "core_id": 1, @@ -13362,9 +13514,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12295764 + "tid": 12293660 }, - "ts": 0.123060825 + "ts": 0.1237915 }, { "core_id": 1, @@ -13374,7 +13526,7 @@ "params": { "irq_num": 31 }, - "ts": 0.123077125 + "ts": 0.12380785 }, { "core_id": 0, @@ -13384,7 +13536,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.123087975 + "ts": 0.1238187 }, { "core_id": 1, @@ -13392,7 +13544,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.123098725 + "ts": 0.123829525 }, { "core_id": 0, @@ -13402,7 +13554,7 @@ "params": { "irq_num": 30 }, - "ts": 0.12311245 + "ts": 0.123843325 }, { "core_id": 1, @@ -13410,9 +13562,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12295764 + "tid": 12293660 }, - "ts": 0.1231233 + "ts": 0.12385525 }, { "core_id": 0, @@ -13420,7 +13572,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.123134125 + "ts": 0.123866325 }, { "core_id": 1, @@ -13430,18 +13582,20 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12293072, + "xQueue": 12290968, "xTicksToWait": 4294967295 }, - "ts": 0.123146 + "ts": 0.12387825 }, { "core_id": 0, - "ctx_name": "alloc1", - "id": 17, + "ctx_name": "alloc2", + "id": 4, "in_irq": false, - "params": {}, - "ts": 0.12315625 + "params": { + "tid": 12296612 + }, + "ts": 0.123889925 }, { "core_id": 1, @@ -13451,10 +13605,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.123167725 + "ts": 0.12390255 }, { "core_id": 1, @@ -13464,158 +13618,19 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.123184025 + "ts": 0.12392495 }, { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (431) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb7d8\n", - "ts": 0.123247475 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (431) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb7d8\n", - "ts": 0.123247475 - }, - { - "addr": "0x3ffbb7d8", + "addr": "0x3ffbafbc", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.12326865 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.12329565 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.123307075 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.12332365 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1236694 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.12368295 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.123698525 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1238132 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12298716 - }, - "ts": 0.123828325 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12298716 - }, - "ts": 0.123828325 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.123840975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12298716 - }, - "ts": 0.12385665 - }, - { - "addr": "0x3ffbb7d8", - "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -13627,16 +13642,34 @@ "id": 512, "in_irq": false, "size": 15, - "ts": 0.123892175 + "ts": 0.1239364 }, { - "addr": "0x3ffbb7ec", + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (419) example: Task[0x3ffb961c]: free memory @ 0x3ffbafa4\n", + "ts": 0.123977725 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (419) example: Task[0x3ffb961c]: free memory @ 0x3ffbafa4\n", + "ts": 0.123977725 + }, + { + "addr": "0x3ffbafd0", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -13648,7 +13681,28 @@ "id": 512, "in_irq": false, "size": 30, - "ts": 0.12393085 + "ts": 0.1239893 + }, + { + "addr": "0x3ffbafa4", + "callers": [ + "0x4008da24", + "0x400d3c72", + "0x400880dc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.124003525 }, { "core_id": 0, @@ -13658,10 +13712,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.12394775 + "ts": 0.1240161 }, { "core_id": 0, @@ -13671,61 +13725,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.123963725 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (432) example: Task[0x3ffba9dc]: allocated 30 bytes @ 0x3ffbb7ec\n", - "ts": 0.124034075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (432) example: Task[0x3ffba9dc]: allocated 30 bytes @ 0x3ffbb7ec\n", - "ts": 0.124034075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12299072, - "xTicksToWait": 0 - }, - "ts": 0.1240478 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12301764 - }, - "ts": 0.124061025 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12301764 - }, - "ts": 0.124061025 + "ts": 0.12403595 }, { "core_id": 1, @@ -13735,7 +13738,84 @@ "params": { "irq_num": 31 }, - "ts": 0.124077325 + "ts": 0.124046875 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1240584 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.12407635 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (419) example: Task[0x3ffba1a4]: allocated 30 bytes @ 0x3ffbafd0\n", + "ts": 0.1240941 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (419) example: Task[0x3ffba1a4]: allocated 30 bytes @ 0x3ffbafd0\n", + "ts": 0.1240941 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12296968, + "xTicksToWait": 0 + }, + "ts": 0.1241117 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12299660 + }, + "ts": 0.12412495 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12299660 + }, + "ts": 0.12412495 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.1241413 }, { "core_id": 0, @@ -13745,7 +13825,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.124088175 + "ts": 0.12415215 }, { "core_id": 1, @@ -13753,7 +13833,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.12409895 + "ts": 0.124162975 }, { "core_id": 0, @@ -13763,7 +13843,7 @@ "params": { "irq_num": 30 }, - "ts": 0.124112675 + "ts": 0.1241768 }, { "core_id": 1, @@ -13771,9 +13851,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12301764 + "tid": 12299660 }, - "ts": 0.124125 + "ts": 0.124187725 }, { "core_id": 0, @@ -13781,7 +13861,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.124135825 + "ts": 0.1241986 }, { "core_id": 1, @@ -13791,10 +13871,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12299072, + "xQueue": 12296968, "xTicksToWait": 4294967295 }, - "ts": 0.1241477 + "ts": 0.12421055 }, { "core_id": 0, @@ -13802,7 +13882,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.124158975 + "ts": 0.124221775 }, { "core_id": 1, @@ -13812,10 +13892,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.124170625 + "ts": 0.124233575 }, { "core_id": 1, @@ -13825,10 +13905,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.124190325 + "ts": 0.124249925 }, { "core_id": 1, @@ -13836,8 +13916,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (432) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb7ec\n", - "ts": 0.124253875 + "msg": "I (419) example: Task[0x3ffbad8c]: free memory @ 0x3ffbafd0\n", + "ts": 0.1242978 }, { "core_id": 1, @@ -13845,15 +13925,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (432) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb7ec\n", - "ts": 0.124253875 + "msg": "I (419) example: Task[0x3ffbad8c]: free memory @ 0x3ffbafd0\n", + "ts": 0.1242978 }, { - "addr": "0x3ffbb7ec", + "addr": "0x3ffbafd0", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", + "0x4008da24", + "0x400d3c72", + "0x400880dc", "0x0", "0x0", "0x0", @@ -13867,7 +13947,7 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 0.124275075 + "ts": 0.124319225 }, { "core_id": 1, @@ -13877,7 +13957,7 @@ "params": { "irq_num": 31 }, - "ts": 0.124301975 + "ts": 0.124349975 }, { "core_id": 1, @@ -13885,7 +13965,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1243134 + "ts": 0.124361425 }, { "core_id": 1, @@ -13893,7 +13973,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.124329975 + "ts": 0.124378125 }, { "core_id": 1, @@ -13903,7 +13983,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1246694 + "ts": 0.1244259 }, { "core_id": 1, @@ -13911,7 +13991,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.12468295 + "ts": 0.12443945 }, { "core_id": 1, @@ -13919,7 +13999,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.124698525 + "ts": 0.12445515 }, { "core_id": 0, @@ -13929,7 +14009,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1248132 + "ts": 0.1245467 }, { "core_id": 0, @@ -13937,7 +14017,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1248287 + "ts": 0.1245621 }, { "core_id": 0, @@ -13945,7 +14025,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.124843775 + "ts": 0.124577425 }, { "core_id": 1, @@ -13955,7 +14035,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1256694 + "ts": 0.1254259 }, { "core_id": 1, @@ -13963,7 +14043,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.125682925 + "ts": 0.1254394 }, { "core_id": 1, @@ -13971,7 +14051,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.125698325 + "ts": 0.12545455 }, { "core_id": 0, @@ -13981,7 +14061,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1258132 + "ts": 0.1255467 }, { "core_id": 0, @@ -13989,7 +14069,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1258287 + "ts": 0.12556205 }, { "core_id": 0, @@ -13997,7 +14077,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.125843775 + "ts": 0.125577125 }, { "core_id": 1, @@ -14007,7 +14087,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1266694 + "ts": 0.1264259 }, { "core_id": 1, @@ -14015,7 +14095,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.126682975 + "ts": 0.1264394 }, { "core_id": 1, @@ -14023,7 +14103,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.1266981 + "ts": 0.126454675 }, { "core_id": 0, @@ -14033,7 +14113,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1268132 + "ts": 0.1265467 }, { "core_id": 0, @@ -14041,7 +14121,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1268287 + "ts": 0.12656205 }, { "core_id": 0, @@ -14049,7 +14129,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.126843775 + "ts": 0.12657715 }, { "core_id": 1, @@ -14059,7 +14139,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1276694 + "ts": 0.1274259 }, { "core_id": 1, @@ -14067,7 +14147,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.127682925 + "ts": 0.12743945 }, { "core_id": 1, @@ -14075,7 +14155,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.127698075 + "ts": 0.1274546 }, { "core_id": 0, @@ -14085,7 +14165,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1278132 + "ts": 0.1275467 }, { "core_id": 0, @@ -14093,7 +14173,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1278286 + "ts": 0.12756205 }, { "core_id": 0, @@ -14101,7 +14181,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.127843825 + "ts": 0.127577125 }, { "core_id": 1, @@ -14111,7 +14191,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1286694 + "ts": 0.1284259 }, { "core_id": 1, @@ -14119,7 +14199,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.128682925 + "ts": 0.1284394 }, { "core_id": 1, @@ -14127,7 +14207,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.128698075 + "ts": 0.12845455 }, { "core_id": 0, @@ -14137,7 +14217,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1288132 + "ts": 0.1285467 }, { "core_id": 0, @@ -14145,7 +14225,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1288287 + "ts": 0.1285621 }, { "core_id": 0, @@ -14153,7 +14233,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.128843775 + "ts": 0.128577425 }, { "core_id": 1, @@ -14163,7 +14243,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1296694 + "ts": 0.1294259 }, { "core_id": 1, @@ -14171,7 +14251,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.129682925 + "ts": 0.1294394 }, { "core_id": 1, @@ -14179,7 +14259,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.129698325 + "ts": 0.12945455 }, { "core_id": 0, @@ -14189,7 +14269,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1298132 + "ts": 0.1295467 }, { "core_id": 0, @@ -14197,7 +14277,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1298287 + "ts": 0.12956205 }, { "core_id": 0, @@ -14205,7 +14285,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.1298481 + "ts": 0.129577125 }, { "core_id": 1, @@ -14215,7 +14295,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1306694 + "ts": 0.1304259 }, { "core_id": 1, @@ -14223,7 +14303,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.130682925 + "ts": 0.1304394 }, { "core_id": 1, @@ -14231,7 +14311,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.130698075 + "ts": 0.130454675 }, { "core_id": 0, @@ -14241,7 +14321,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1308132 + "ts": 0.1305467 }, { "core_id": 0, @@ -14249,7 +14329,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1308287 + "ts": 0.13056205 }, { "core_id": 0, @@ -14257,7 +14337,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.130843775 + "ts": 0.13057715 }, { "core_id": 1, @@ -14267,7 +14347,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1316694 + "ts": 0.1314259 }, { "core_id": 1, @@ -14275,7 +14355,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.131682925 + "ts": 0.13143945 }, { "core_id": 1, @@ -14283,7 +14363,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.131698325 + "ts": 0.1314546 }, { "core_id": 0, @@ -14293,7 +14373,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1318132 + "ts": 0.1315467 }, { "core_id": 0, @@ -14301,7 +14381,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1318287 + "ts": 0.13156205 }, { "core_id": 0, @@ -14309,7 +14389,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.131843775 + "ts": 0.131577125 }, { "core_id": 1, @@ -14319,7 +14399,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1326694 + "ts": 0.1324259 }, { "core_id": 1, @@ -14327,7 +14407,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.132682975 + "ts": 0.1324394 }, { "core_id": 1, @@ -14335,7 +14415,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.1326981 + "ts": 0.13245455 }, { "core_id": 0, @@ -14345,7 +14425,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1328132 + "ts": 0.1325467 }, { "core_id": 0, @@ -14353,7 +14433,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1328287 + "ts": 0.1325621 }, { "core_id": 0, @@ -14361,7 +14441,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.132843775 + "ts": 0.132577425 }, { "core_id": 1, @@ -14371,7 +14451,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1336694 + "ts": 0.1334259 }, { "core_id": 1, @@ -14379,7 +14459,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.133682925 + "ts": 0.1334394 }, { "core_id": 1, @@ -14387,7 +14467,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.133698075 + "ts": 0.13345455 }, { "core_id": 0, @@ -14397,7 +14477,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1338132 + "ts": 0.1335467 }, { "core_id": 0, @@ -14405,7 +14485,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1338286 + "ts": 0.13356205 }, { "core_id": 0, @@ -14413,7 +14493,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.133843825 + "ts": 0.133577125 }, { "core_id": 1, @@ -14423,7 +14503,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1346694 + "ts": 0.1344259 }, { "core_id": 1, @@ -14431,7 +14511,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.134682925 + "ts": 0.13444365 }, { "core_id": 1, @@ -14439,7 +14519,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.134698075 + "ts": 0.1344588 }, { "core_id": 0, @@ -14449,7 +14529,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1348132 + "ts": 0.1345467 }, { "core_id": 0, @@ -14457,7 +14537,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1348287 + "ts": 0.13456205 }, { "core_id": 0, @@ -14465,7 +14545,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.134843775 + "ts": 0.134577125 }, { "core_id": 1, @@ -14475,7 +14555,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1356694 + "ts": 0.1354259 }, { "core_id": 1, @@ -14483,7 +14563,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.135682925 + "ts": 0.1354394 }, { "core_id": 1, @@ -14491,7 +14571,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.135698325 + "ts": 0.13545455 }, { "core_id": 0, @@ -14501,7 +14581,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1358132 + "ts": 0.1355467 }, { "core_id": 0, @@ -14509,7 +14589,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1358287 + "ts": 0.1355621 }, { "core_id": 0, @@ -14517,7 +14597,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.135843775 + "ts": 0.135577425 }, { "core_id": 1, @@ -14527,7 +14607,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1366694 + "ts": 0.1364259 }, { "core_id": 1, @@ -14535,7 +14615,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.136682975 + "ts": 0.1364394 }, { "core_id": 1, @@ -14543,7 +14623,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.1366981 + "ts": 0.13645455 }, { "core_id": 0, @@ -14553,7 +14633,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1368132 + "ts": 0.1365467 }, { "core_id": 0, @@ -14561,7 +14641,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1368287 + "ts": 0.13656205 }, { "core_id": 0, @@ -14569,7 +14649,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.136843775 + "ts": 0.136577125 }, { "core_id": 1, @@ -14579,7 +14659,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1376694 + "ts": 0.1374259 }, { "core_id": 1, @@ -14587,7 +14667,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.137682925 + "ts": 0.1374394 }, { "core_id": 1, @@ -14595,7 +14675,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.137698075 + "ts": 0.137454675 }, { "core_id": 0, @@ -14605,7 +14685,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1378132 + "ts": 0.1375467 }, { "core_id": 0, @@ -14613,7 +14693,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1378286 + "ts": 0.13756205 }, { "core_id": 0, @@ -14621,7 +14701,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.137843825 + "ts": 0.13757715 }, { "core_id": 1, @@ -14631,7 +14711,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1386694 + "ts": 0.1384259 }, { "core_id": 1, @@ -14639,7 +14719,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.138682925 + "ts": 0.13843945 }, { "core_id": 1, @@ -14647,7 +14727,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.138698075 + "ts": 0.1384546 }, { "core_id": 0, @@ -14657,7 +14737,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1388132 + "ts": 0.1385467 }, { "core_id": 0, @@ -14665,7 +14745,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1388287 + "ts": 0.13856205 }, { "core_id": 0, @@ -14673,7 +14753,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.138843775 + "ts": 0.138577125 }, { "core_id": 1, @@ -14683,7 +14763,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1396694 + "ts": 0.1394259 }, { "core_id": 1, @@ -14691,7 +14771,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.139682925 + "ts": 0.1394394 }, { "core_id": 1, @@ -14699,7 +14779,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.139698325 + "ts": 0.13945455 }, { "core_id": 0, @@ -14709,7 +14789,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1398132 + "ts": 0.1395467 }, { "core_id": 0, @@ -14717,7 +14797,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1398287 + "ts": 0.1395621 }, { "core_id": 0, @@ -14725,7 +14805,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.139843775 + "ts": 0.139577425 }, { "core_id": 1, @@ -14735,7 +14815,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1406694 + "ts": 0.1404259 }, { "core_id": 1, @@ -14743,7 +14823,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.140682975 + "ts": 0.1404394 }, { "core_id": 1, @@ -14751,7 +14831,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.1406981 + "ts": 0.14045455 }, { "core_id": 0, @@ -14761,7 +14841,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1408132 + "ts": 0.1405467 }, { "core_id": 0, @@ -14769,7 +14849,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1408287 + "ts": 0.14056205 }, { "core_id": 0, @@ -14777,7 +14857,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.140843775 + "ts": 0.140577125 }, { "core_id": 1, @@ -14787,7 +14867,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1416694 + "ts": 0.1414259 }, { "core_id": 1, @@ -14795,7 +14875,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.141682925 + "ts": 0.1414394 }, { "core_id": 1, @@ -14803,7 +14883,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.141698075 + "ts": 0.141454675 }, { "core_id": 0, @@ -14813,7 +14893,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1418132 + "ts": 0.1415467 }, { "core_id": 0, @@ -14821,7 +14901,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1418286 + "ts": 0.14156205 }, { "core_id": 0, @@ -14829,7 +14909,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.141843825 + "ts": 0.14157715 }, { "core_id": 1, @@ -14839,7 +14919,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1426694 + "ts": 0.1424259 }, { "core_id": 1, @@ -14847,7 +14927,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.142682925 + "ts": 0.14243945 }, { "core_id": 1, @@ -14855,7 +14935,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.142698325 + "ts": 0.1424546 }, { "core_id": 0, @@ -14865,7 +14945,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1428132 + "ts": 0.1425467 }, { "core_id": 0, @@ -14873,7 +14953,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1428287 + "ts": 0.14256205 }, { "core_id": 0, @@ -14881,7 +14961,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.142843775 + "ts": 0.142577125 }, { "core_id": 1, @@ -14891,7 +14971,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1436694 + "ts": 0.1434259 }, { "core_id": 1, @@ -14899,7 +14979,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.143682975 + "ts": 0.1434394 }, { "core_id": 1, @@ -14907,7 +14987,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.1436981 + "ts": 0.14345455 }, { "core_id": 0, @@ -14917,7 +14997,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1438132 + "ts": 0.1435467 }, { "core_id": 0, @@ -14925,7 +15005,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1438287 + "ts": 0.1435621 }, { "core_id": 0, @@ -14933,7 +15013,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.143843775 + "ts": 0.143577425 }, { "core_id": 1, @@ -14943,7 +15023,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1446694 + "ts": 0.1444259 }, { "core_id": 1, @@ -14951,7 +15031,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.144682925 + "ts": 0.1444394 }, { "core_id": 1, @@ -14959,7 +15039,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.144698075 + "ts": 0.14445455 }, { "core_id": 0, @@ -14969,7 +15049,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1448132 + "ts": 0.1445467 }, { "core_id": 0, @@ -14977,7 +15057,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1448286 + "ts": 0.14456205 }, { "core_id": 0, @@ -14985,7 +15065,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.144843825 + "ts": 0.144577125 }, { "core_id": 1, @@ -14995,7 +15075,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1456694 + "ts": 0.1454259 }, { "core_id": 1, @@ -15003,7 +15083,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.145682925 + "ts": 0.1454394 }, { "core_id": 1, @@ -15011,7 +15091,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.145698075 + "ts": 0.145454675 }, { "core_id": 0, @@ -15021,7 +15101,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1458132 + "ts": 0.1455467 }, { "core_id": 0, @@ -15029,7 +15109,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1458287 + "ts": 0.14556205 }, { "core_id": 0, @@ -15037,7 +15117,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.145843775 + "ts": 0.14557715 }, { "core_id": 1, @@ -15047,7 +15127,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1466694 + "ts": 0.1464259 }, { "core_id": 1, @@ -15055,7 +15135,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.146682925 + "ts": 0.146443 }, { "core_id": 1, @@ -15063,7 +15143,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.146698325 + "ts": 0.146458125 }, { "core_id": 0, @@ -15073,7 +15153,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1468132 + "ts": 0.1465467 }, { "core_id": 0, @@ -15081,7 +15161,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1468287 + "ts": 0.14656205 }, { "core_id": 0, @@ -15089,7 +15169,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.146843775 + "ts": 0.146577125 }, { "core_id": 1, @@ -15099,7 +15179,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1476694 + "ts": 0.1474259 }, { "core_id": 1, @@ -15107,7 +15187,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.147682975 + "ts": 0.1474394 }, { "core_id": 1, @@ -15115,7 +15195,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.1476981 + "ts": 0.14745455 }, { "core_id": 0, @@ -15125,7 +15205,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1478132 + "ts": 0.1475467 }, { "core_id": 0, @@ -15133,7 +15213,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1478287 + "ts": 0.1475621 }, { "core_id": 0, @@ -15141,7 +15221,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.147843775 + "ts": 0.147577425 }, { "core_id": 1, @@ -15151,7 +15231,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1486694 + "ts": 0.1484259 }, { "core_id": 1, @@ -15159,7 +15239,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.148682925 + "ts": 0.1484394 }, { "core_id": 1, @@ -15167,7 +15247,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.148698075 + "ts": 0.14845455 }, { "core_id": 0, @@ -15177,7 +15257,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1488132 + "ts": 0.1485467 }, { "core_id": 0, @@ -15185,7 +15265,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1488286 + "ts": 0.14856205 }, { "core_id": 0, @@ -15193,7 +15273,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.148843825 + "ts": 0.148577125 }, { "core_id": 1, @@ -15203,7 +15283,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1496694 + "ts": 0.1494259 }, { "core_id": 1, @@ -15211,7 +15291,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.149682925 + "ts": 0.1494394 }, { "core_id": 1, @@ -15219,7 +15299,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.149698075 + "ts": 0.149454675 }, { "core_id": 0, @@ -15229,7 +15309,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1498132 + "ts": 0.1495467 }, { "core_id": 0, @@ -15237,7 +15317,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1498287 + "ts": 0.14956205 }, { "core_id": 0, @@ -15245,7 +15325,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.149843775 + "ts": 0.14957715 }, { "core_id": 1, @@ -15255,7 +15335,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1506694 + "ts": 0.1504259 }, { "core_id": 1, @@ -15263,7 +15343,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.150682925 + "ts": 0.15043945 }, { "core_id": 1, @@ -15271,7 +15351,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.150698325 + "ts": 0.1504546 }, { "core_id": 0, @@ -15281,7 +15361,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1508132 + "ts": 0.1505467 }, { "core_id": 0, @@ -15289,7 +15369,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1508287 + "ts": 0.15056205 }, { "core_id": 0, @@ -15297,7 +15377,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.150843775 + "ts": 0.150577125 }, { "core_id": 1, @@ -15307,7 +15387,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1516694 + "ts": 0.1514259 }, { "core_id": 1, @@ -15315,7 +15395,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.151682975 + "ts": 0.1514394 }, { "core_id": 1, @@ -15323,7 +15403,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.1516981 + "ts": 0.15145455 }, { "core_id": 0, @@ -15333,7 +15413,59 @@ "params": { "irq_num": 5 }, - "ts": 0.1518132 + "ts": 0.1515467 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1515621 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.151577425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1524259 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1524394 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.15245455 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1525467 }, { "core_id": 0, @@ -15341,9 +15473,9 @@ "id": 6, "in_irq": true, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.151828325 + "ts": 0.15256165 }, { "core_id": 1, @@ -15351,9 +15483,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.151828325 + "ts": 0.15256165 }, { "core_id": 0, @@ -15361,7 +15493,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.151840975 + "ts": 0.1525743 }, { "core_id": 0, @@ -15369,18 +15501,18 @@ "id": 4, "in_irq": false, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.15185665 + "ts": 0.152590225 }, { - "addr": "0x3ffbb7ec", + "addr": "0x3ffbafa4", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -15392,16 +15524,16 @@ "id": 512, "in_irq": false, "size": 6, - "ts": 0.151892175 + "ts": 0.15262545 }, { - "addr": "0x3ffbb7fc", + "addr": "0x3ffbafd0", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -15413,7 +15545,7 @@ "id": 512, "in_irq": false, "size": 12, - "ts": 0.15193065 + "ts": 0.15266115 }, { "core_id": 0, @@ -15423,10 +15555,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.15194755 + "ts": 0.152678125 }, { "core_id": 0, @@ -15436,10 +15568,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.15196355 + "ts": 0.1526941 }, { "core_id": 0, @@ -15447,8 +15579,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (460) example: Task[0x3ffb7aec]: allocated 12 bytes @ 0x3ffbb7fc\n", - "ts": 0.152033875 + "msg": "I (448) example: Task[0x3ffb72b4]: allocated 12 bytes @ 0x3ffbafd0\n", + "ts": 0.1527531 }, { "core_id": 0, @@ -15456,8 +15588,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (460) example: Task[0x3ffb7aec]: allocated 12 bytes @ 0x3ffbb7fc\n", - "ts": 0.152033875 + "msg": "I (448) example: Task[0x3ffb72b4]: allocated 12 bytes @ 0x3ffbafd0\n", + "ts": 0.1527531 }, { "core_id": 0, @@ -15467,10 +15599,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12287056, + "xQueue": 12284952, "xTicksToWait": 0 }, - "ts": 0.152047475 + "ts": 0.1527666 }, { "core_id": 0, @@ -15478,9 +15610,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12289748 + "tid": 12287644 }, - "ts": 0.1520607 + "ts": 0.15277975 }, { "core_id": 1, @@ -15488,9 +15620,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12289748 + "tid": 12287644 }, - "ts": 0.1520607 + "ts": 0.15277975 }, { "core_id": 1, @@ -15500,7 +15632,7 @@ "params": { "irq_num": 31 }, - "ts": 0.15207695 + "ts": 0.152795975 }, { "core_id": 0, @@ -15510,7 +15642,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.1520878 + "ts": 0.152806925 }, { "core_id": 1, @@ -15518,7 +15650,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.152098575 + "ts": 0.152817675 }, { "core_id": 0, @@ -15528,7 +15660,7 @@ "params": { "irq_num": 30 }, - "ts": 0.152112375 + "ts": 0.15283175 }, { "core_id": 1, @@ -15536,9 +15668,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12289748 + "tid": 12287644 }, - "ts": 0.152123175 + "ts": 0.15284255 }, { "core_id": 0, @@ -15546,7 +15678,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.152134025 + "ts": 0.152853275 }, { "core_id": 1, @@ -15556,10 +15688,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12287056, + "xQueue": 12284952, "xTicksToWait": 4294967295 }, - "ts": 0.1521459 + "ts": 0.1528654 }, { "core_id": 0, @@ -15567,7 +15699,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.1521562 + "ts": 0.152875575 }, { "core_id": 1, @@ -15577,10 +15709,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.152167725 + "ts": 0.15288735 }, { "core_id": 1, @@ -15590,10 +15722,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.15218815 + "ts": 0.152903675 }, { "core_id": 1, @@ -15601,8 +15733,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (460) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb7fc\n", - "ts": 0.1522517 + "msg": "I (448) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbafd0\n", + "ts": 0.15295155 }, { "core_id": 1, @@ -15610,15 +15742,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (460) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb7fc\n", - "ts": 0.1522517 + "msg": "I (448) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbafd0\n", + "ts": 0.15295155 }, { - "addr": "0x3ffbb7fc", + "addr": "0x3ffbafd0", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", + "0x4008da24", + "0x400d3c72", + "0x400880dc", "0x0", "0x0", "0x0", @@ -15632,7 +15764,7 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 0.1522729 + "ts": 0.152972775 }, { "core_id": 1, @@ -15642,7 +15774,7 @@ "params": { "irq_num": 31 }, - "ts": 0.1522998 + "ts": 0.15300425 }, { "core_id": 1, @@ -15650,7 +15782,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.152311225 + "ts": 0.1530157 }, { "core_id": 1, @@ -15658,7 +15790,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.1523278 + "ts": 0.1530324 }, { "core_id": 1, @@ -15668,7 +15800,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1526694 + "ts": 0.1534259 }, { "core_id": 1, @@ -15676,7 +15808,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.15268295 + "ts": 0.15343945 }, { "core_id": 1, @@ -15684,7 +15816,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.152698525 + "ts": 0.15345515 }, { "core_id": 0, @@ -15694,7 +15826,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1528132 + "ts": 0.1535467 }, { "core_id": 0, @@ -15702,9 +15834,9 @@ "id": 6, "in_irq": true, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.152828325 + "ts": 0.1535617 }, { "core_id": 1, @@ -15712,9 +15844,29 @@ "id": 6, "in_irq": false, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.152828325 + "ts": 0.1535617 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12296612 + }, + "ts": 0.15357355 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12296612 + }, + "ts": 0.15357355 }, { "core_id": 0, @@ -15722,7 +15874,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.152840975 + "ts": 0.15358605 }, { "core_id": 0, @@ -15730,18 +15882,18 @@ "id": 4, "in_irq": false, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.152856775 + "ts": 0.153601725 }, { - "addr": "0x3ffbb7fc", + "addr": "0x3ffbafd0", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -15753,16 +15905,16 @@ "id": 512, "in_irq": false, "size": 12, - "ts": 0.152892175 + "ts": 0.15363815 }, { - "addr": "0x3ffbb80c", + "addr": "0x3ffbafe0", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -15774,7 +15926,7 @@ "id": 512, "in_irq": false, "size": 24, - "ts": 0.1529267 + "ts": 0.153673575 }, { "core_id": 0, @@ -15784,10 +15936,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.15294365 + "ts": 0.153690525 }, { "core_id": 0, @@ -15797,10 +15949,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.152963825 + "ts": 0.153706525 }, { "core_id": 0, @@ -15808,8 +15960,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (461) example: Task[0x3ffb926c]: allocated 24 bytes @ 0x3ffbb80c\n", - "ts": 0.15303425 + "msg": "I (449) example: Task[0x3ffb8a34]: allocated 24 bytes @ 0x3ffbafe0\n", + "ts": 0.153761375 }, { "core_id": 0, @@ -15817,8 +15969,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (461) example: Task[0x3ffb926c]: allocated 24 bytes @ 0x3ffbb80c\n", - "ts": 0.15303425 + "msg": "I (449) example: Task[0x3ffb8a34]: allocated 24 bytes @ 0x3ffbafe0\n", + "ts": 0.153761375 }, { "core_id": 0, @@ -15828,10 +15980,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12293072, + "xQueue": 12290968, "xTicksToWait": 0 }, - "ts": 0.1530479 + "ts": 0.153778675 }, { "core_id": 0, @@ -15839,9 +15991,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12295764 + "tid": 12293660 }, - "ts": 0.153061075 + "ts": 0.153791925 }, { "core_id": 1, @@ -15849,9 +16001,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12295764 + "tid": 12293660 }, - "ts": 0.153061075 + "ts": 0.153791925 }, { "core_id": 1, @@ -15861,7 +16013,7 @@ "params": { "irq_num": 31 }, - "ts": 0.1530774 + "ts": 0.153808275 }, { "core_id": 0, @@ -15871,7 +16023,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.15308825 + "ts": 0.153819125 }, { "core_id": 1, @@ -15879,7 +16031,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.153098975 + "ts": 0.15382995 }, { "core_id": 0, @@ -15889,7 +16041,7 @@ "params": { "irq_num": 30 }, - "ts": 0.15311275 + "ts": 0.15384375 }, { "core_id": 1, @@ -15897,9 +16049,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12295764 + "tid": 12293660 }, - "ts": 0.1531237 + "ts": 0.153855475 }, { "core_id": 0, @@ -15907,7 +16059,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1531345 + "ts": 0.15386685 }, { "core_id": 1, @@ -15917,18 +16069,20 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12293072, + "xQueue": 12290968, "xTicksToWait": 4294967295 }, - "ts": 0.153146375 + "ts": 0.15387885 }, { "core_id": 0, - "ctx_name": "alloc1", - "id": 17, + "ctx_name": "alloc2", + "id": 4, "in_irq": false, - "params": {}, - "ts": 0.153156625 + "params": { + "tid": 12296612 + }, + "ts": 0.153890525 }, { "core_id": 1, @@ -15938,10 +16092,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.1531681 + "ts": 0.153903125 }, { "core_id": 1, @@ -15951,158 +16105,19 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.1531844 + "ts": 0.15392175 }, { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (461) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb80c\n", - "ts": 0.15324785 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (461) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb80c\n", - "ts": 0.15324785 - }, - { - "addr": "0x3ffbb80c", + "addr": "0x3ffbaffc", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.1532729 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.1532999 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.153311325 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1533279 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1536694 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.15368295 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.153698525 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1538132 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12298716 - }, - "ts": 0.153828325 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12298716 - }, - "ts": 0.153828325 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.153840975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12298716 - }, - "ts": 0.15385665 - }, - { - "addr": "0x3ffbb80c", - "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -16114,16 +16129,34 @@ "id": 512, "in_irq": false, "size": 18, - "ts": 0.153892175 + "ts": 0.15393375 }, { - "addr": "0x3ffbb824", + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (449) example: Task[0x3ffb961c]: free memory @ 0x3ffbafe0\n", + "ts": 0.153974925 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (449) example: Task[0x3ffb961c]: free memory @ 0x3ffbafe0\n", + "ts": 0.153974925 + }, + { + "addr": "0x3ffbb014", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -16135,7 +16168,28 @@ "id": 512, "in_irq": false, "size": 36, - "ts": 0.153926725 + "ts": 0.1539911 + }, + { + "addr": "0x3ffbafe0", + "callers": [ + "0x4008da24", + "0x400d3c72", + "0x400880dc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.154005475 }, { "core_id": 0, @@ -16145,10 +16199,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.153943625 + "ts": 0.154017925 }, { "core_id": 0, @@ -16158,61 +16212,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.153959625 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (462) example: Task[0x3ffba9dc]: allocated 36 bytes @ 0x3ffbb824\n", - "ts": 0.15402995 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (462) example: Task[0x3ffba9dc]: allocated 36 bytes @ 0x3ffbb824\n", - "ts": 0.15402995 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12299072, - "xTicksToWait": 0 - }, - "ts": 0.154047775 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12301764 - }, - "ts": 0.154061125 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12301764 - }, - "ts": 0.154061125 + "ts": 0.154037825 }, { "core_id": 1, @@ -16222,7 +16225,84 @@ "params": { "irq_num": 31 }, - "ts": 0.15407745 + "ts": 0.15404875 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1540603 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.15407825 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (449) example: Task[0x3ffba1a4]: allocated 36 bytes @ 0x3ffbb014\n", + "ts": 0.15409625 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (449) example: Task[0x3ffba1a4]: allocated 36 bytes @ 0x3ffbb014\n", + "ts": 0.15409625 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12296968, + "xTicksToWait": 0 + }, + "ts": 0.1541097 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12299660 + }, + "ts": 0.15412645 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12299660 + }, + "ts": 0.15412645 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.1541428 }, { "core_id": 0, @@ -16232,7 +16312,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.1540883 + "ts": 0.154153675 }, { "core_id": 1, @@ -16240,7 +16320,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.15409905 + "ts": 0.154164475 }, { "core_id": 0, @@ -16250,7 +16330,7 @@ "params": { "irq_num": 30 }, - "ts": 0.154112775 + "ts": 0.1541783 }, { "core_id": 1, @@ -16258,9 +16338,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12301764 + "tid": 12299660 }, - "ts": 0.154123675 + "ts": 0.154189225 }, { "core_id": 0, @@ -16268,7 +16348,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1541345 + "ts": 0.154200075 }, { "core_id": 1, @@ -16278,10 +16358,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12299072, + "xQueue": 12296968, "xTicksToWait": 4294967295 }, - "ts": 0.15414635 + "ts": 0.154212025 }, { "core_id": 0, @@ -16289,7 +16369,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.15415765 + "ts": 0.15422325 }, { "core_id": 1, @@ -16299,10 +16379,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.154169275 + "ts": 0.15423505 }, { "core_id": 1, @@ -16312,10 +16392,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.154185675 + "ts": 0.154251325 }, { "core_id": 1, @@ -16323,8 +16403,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (462) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb824\n", - "ts": 0.154249225 + "msg": "I (449) example: Task[0x3ffbad8c]: free memory @ 0x3ffbb014\n", + "ts": 0.1542991 }, { "core_id": 1, @@ -16332,15 +16412,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (462) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb824\n", - "ts": 0.154249225 + "msg": "I (449) example: Task[0x3ffbad8c]: free memory @ 0x3ffbb014\n", + "ts": 0.1542991 }, { - "addr": "0x3ffbb824", + "addr": "0x3ffbb014", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", + "0x4008da24", + "0x400d3c72", + "0x400880dc", "0x0", "0x0", "0x0", @@ -16354,7 +16434,7 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 0.154270425 + "ts": 0.154320475 }, { "core_id": 1, @@ -16364,7 +16444,7 @@ "params": { "irq_num": 31 }, - "ts": 0.154301425 + "ts": 0.154347875 }, { "core_id": 1, @@ -16372,7 +16452,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1543129 + "ts": 0.1543593 }, { "core_id": 1, @@ -16380,7 +16460,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.1543296 + "ts": 0.15437585 }, { "core_id": 1, @@ -16390,7 +16470,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1546694 + "ts": 0.1544259 }, { "core_id": 1, @@ -16398,7 +16478,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.15468285 + "ts": 0.15443945 }, { "core_id": 1, @@ -16406,7 +16486,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.154698425 + "ts": 0.15445515 }, { "core_id": 0, @@ -16416,7 +16496,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1548132 + "ts": 0.1545467 }, { "core_id": 0, @@ -16424,7 +16504,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1548286 + "ts": 0.15456205 }, { "core_id": 0, @@ -16432,7 +16512,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.154843825 + "ts": 0.154577125 }, { "core_id": 1, @@ -16442,7 +16522,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1556694 + "ts": 0.1554259 }, { "core_id": 1, @@ -16450,7 +16530,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.155682925 + "ts": 0.1554394 }, { "core_id": 1, @@ -16458,7 +16538,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.155698075 + "ts": 0.15545455 }, { "core_id": 0, @@ -16468,7 +16548,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1558132 + "ts": 0.1555467 }, { "core_id": 0, @@ -16476,7 +16556,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1558287 + "ts": 0.1555621 }, { "core_id": 0, @@ -16484,7 +16564,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.155843775 + "ts": 0.155577425 }, { "core_id": 1, @@ -16494,7 +16574,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1566694 + "ts": 0.1564259 }, { "core_id": 1, @@ -16502,7 +16582,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.156682925 + "ts": 0.1564394 }, { "core_id": 1, @@ -16510,7 +16590,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.156698325 + "ts": 0.15645455 }, { "core_id": 0, @@ -16520,7 +16600,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1568132 + "ts": 0.1565467 }, { "core_id": 0, @@ -16528,7 +16608,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1568287 + "ts": 0.156565675 }, { "core_id": 0, @@ -16536,7 +16616,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.156843775 + "ts": 0.156580875 }, { "core_id": 1, @@ -16546,7 +16626,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1576694 + "ts": 0.1574259 }, { "core_id": 1, @@ -16554,7 +16634,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.157682975 + "ts": 0.1574394 }, { "core_id": 1, @@ -16562,7 +16642,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.1576981 + "ts": 0.15745455 }, { "core_id": 0, @@ -16572,7 +16652,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1578132 + "ts": 0.1575467 }, { "core_id": 0, @@ -16580,7 +16660,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1578287 + "ts": 0.15756205 }, { "core_id": 0, @@ -16588,7 +16668,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.157843775 + "ts": 0.157577125 }, { "core_id": 1, @@ -16598,7 +16678,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1586694 + "ts": 0.1584259 }, { "core_id": 1, @@ -16606,7 +16686,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.158682925 + "ts": 0.1584394 }, { "core_id": 1, @@ -16614,7 +16694,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.158698075 + "ts": 0.158454675 }, { "core_id": 0, @@ -16624,7 +16704,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1588132 + "ts": 0.1585467 }, { "core_id": 0, @@ -16632,7 +16712,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1588286 + "ts": 0.15856205 }, { "core_id": 0, @@ -16640,7 +16720,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.158843825 + "ts": 0.15857715 }, { "core_id": 1, @@ -16650,7 +16730,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1596694 + "ts": 0.1594259 }, { "core_id": 1, @@ -16658,7 +16738,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.159682925 + "ts": 0.15943945 }, { "core_id": 1, @@ -16666,7 +16746,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.159698075 + "ts": 0.1594546 }, { "core_id": 0, @@ -16676,7 +16756,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1598132 + "ts": 0.1595467 }, { "core_id": 0, @@ -16684,7 +16764,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1598287 + "ts": 0.15956205 }, { "core_id": 0, @@ -16692,7 +16772,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.159843775 + "ts": 0.159577125 }, { "core_id": 1, @@ -16702,7 +16782,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1606694 + "ts": 0.1604259 }, { "core_id": 1, @@ -16710,7 +16790,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.160682925 + "ts": 0.1604394 }, { "core_id": 1, @@ -16718,7 +16798,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.160698325 + "ts": 0.16045455 }, { "core_id": 0, @@ -16728,7 +16808,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1608132 + "ts": 0.1605467 }, { "core_id": 0, @@ -16736,7 +16816,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1608287 + "ts": 0.1605621 }, { "core_id": 0, @@ -16744,7 +16824,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.160843775 + "ts": 0.160577425 }, { "core_id": 1, @@ -16754,7 +16834,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1616694 + "ts": 0.1614259 }, { "core_id": 1, @@ -16762,7 +16842,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.161682975 + "ts": 0.1614394 }, { "core_id": 1, @@ -16770,7 +16850,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.1616981 + "ts": 0.16145455 }, { "core_id": 0, @@ -16780,7 +16860,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1618132 + "ts": 0.1615467 }, { "core_id": 0, @@ -16788,7 +16868,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1618287 + "ts": 0.16156205 }, { "core_id": 0, @@ -16796,7 +16876,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.161843775 + "ts": 0.161577125 }, { "core_id": 1, @@ -16806,7 +16886,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1626694 + "ts": 0.1624259 }, { "core_id": 1, @@ -16814,7 +16894,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.162682925 + "ts": 0.1624394 }, { "core_id": 1, @@ -16822,7 +16902,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.162698075 + "ts": 0.162454675 }, { "core_id": 0, @@ -16832,7 +16912,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1628132 + "ts": 0.1625467 }, { "core_id": 0, @@ -16840,7 +16920,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1628286 + "ts": 0.16256205 }, { "core_id": 0, @@ -16848,7 +16928,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.162843825 + "ts": 0.16257715 }, { "core_id": 1, @@ -16858,7 +16938,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1636694 + "ts": 0.1634259 }, { "core_id": 1, @@ -16866,7 +16946,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.163682925 + "ts": 0.16343945 }, { "core_id": 1, @@ -16874,7 +16954,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.163698075 + "ts": 0.1634546 }, { "core_id": 0, @@ -16884,7 +16964,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1638132 + "ts": 0.1635467 }, { "core_id": 0, @@ -16892,7 +16972,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1638287 + "ts": 0.16356205 }, { "core_id": 0, @@ -16900,7 +16980,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.163843775 + "ts": 0.163577125 }, { "core_id": 1, @@ -16910,7 +16990,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1646694 + "ts": 0.1644259 }, { "core_id": 1, @@ -16918,7 +16998,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.16468655 + "ts": 0.1644394 }, { "core_id": 1, @@ -16926,7 +17006,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.164701825 + "ts": 0.16445455 }, { "core_id": 0, @@ -16936,7 +17016,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1648132 + "ts": 0.1645467 }, { "core_id": 0, @@ -16944,7 +17024,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1648287 + "ts": 0.1645621 }, { "core_id": 0, @@ -16952,7 +17032,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.164843775 + "ts": 0.164577425 }, { "core_id": 1, @@ -16962,7 +17042,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1656694 + "ts": 0.1654259 }, { "core_id": 1, @@ -16970,7 +17050,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.165682925 + "ts": 0.1654394 }, { "core_id": 1, @@ -16978,7 +17058,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.165698075 + "ts": 0.16545455 }, { "core_id": 0, @@ -16988,7 +17068,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1658132 + "ts": 0.1655467 }, { "core_id": 0, @@ -16996,7 +17076,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1658286 + "ts": 0.16556205 }, { "core_id": 0, @@ -17004,7 +17084,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.165843825 + "ts": 0.165577125 }, { "core_id": 1, @@ -17014,7 +17094,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1666694 + "ts": 0.1664259 }, { "core_id": 1, @@ -17022,7 +17102,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.166682925 + "ts": 0.1664394 }, { "core_id": 1, @@ -17030,7 +17110,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.166698075 + "ts": 0.166454675 }, { "core_id": 0, @@ -17040,7 +17120,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1668132 + "ts": 0.1665467 }, { "core_id": 0, @@ -17048,7 +17128,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1668287 + "ts": 0.16656205 }, { "core_id": 0, @@ -17056,7 +17136,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.166843775 + "ts": 0.16657715 }, { "core_id": 1, @@ -17066,7 +17146,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1676694 + "ts": 0.1674259 }, { "core_id": 1, @@ -17074,7 +17154,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.167682925 + "ts": 0.16743945 }, { "core_id": 1, @@ -17082,7 +17162,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.167698325 + "ts": 0.1674546 }, { "core_id": 0, @@ -17092,7 +17172,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1678132 + "ts": 0.1675467 }, { "core_id": 0, @@ -17100,7 +17180,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1678287 + "ts": 0.16756205 }, { "core_id": 0, @@ -17108,7 +17188,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.167843775 + "ts": 0.167577125 }, { "core_id": 1, @@ -17118,7 +17198,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1686694 + "ts": 0.1684259 }, { "core_id": 1, @@ -17126,7 +17206,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.168682975 + "ts": 0.1684394 }, { "core_id": 1, @@ -17134,7 +17214,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.1686981 + "ts": 0.16845455 }, { "core_id": 0, @@ -17144,7 +17224,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1688132 + "ts": 0.1685467 }, { "core_id": 0, @@ -17152,7 +17232,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1688287 + "ts": 0.168566325 }, { "core_id": 0, @@ -17160,7 +17240,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.168843775 + "ts": 0.16858155 }, { "core_id": 1, @@ -17170,7 +17250,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1696694 + "ts": 0.1694259 }, { "core_id": 1, @@ -17178,7 +17258,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.169682925 + "ts": 0.1694394 }, { "core_id": 1, @@ -17186,7 +17266,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.169698075 + "ts": 0.16945455 }, { "core_id": 0, @@ -17196,7 +17276,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1698132 + "ts": 0.1695467 }, { "core_id": 0, @@ -17204,7 +17284,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1698286 + "ts": 0.16956205 }, { "core_id": 0, @@ -17212,7 +17292,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.169843825 + "ts": 0.169577125 }, { "core_id": 1, @@ -17222,7 +17302,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1706694 + "ts": 0.1704259 }, { "core_id": 1, @@ -17230,7 +17310,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.170682925 + "ts": 0.1704394 }, { "core_id": 1, @@ -17238,7 +17318,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.170698075 + "ts": 0.170454675 }, { "core_id": 0, @@ -17248,7 +17328,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1708132 + "ts": 0.1705467 }, { "core_id": 0, @@ -17256,7 +17336,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1708287 + "ts": 0.17056205 }, { "core_id": 0, @@ -17264,7 +17344,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.170843775 + "ts": 0.17057715 }, { "core_id": 1, @@ -17274,7 +17354,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1716694 + "ts": 0.1714259 }, { "core_id": 1, @@ -17282,7 +17362,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.171682925 + "ts": 0.17143945 }, { "core_id": 1, @@ -17290,7 +17370,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.171698325 + "ts": 0.1714546 }, { "core_id": 0, @@ -17300,7 +17380,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1718132 + "ts": 0.1715467 }, { "core_id": 0, @@ -17308,7 +17388,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1718287 + "ts": 0.17156205 }, { "core_id": 0, @@ -17316,7 +17396,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.171843775 + "ts": 0.171577125 }, { "core_id": 1, @@ -17326,7 +17406,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1726694 + "ts": 0.1724259 }, { "core_id": 1, @@ -17334,7 +17414,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.172682975 + "ts": 0.1724394 }, { "core_id": 1, @@ -17342,7 +17422,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.1726981 + "ts": 0.17245455 }, { "core_id": 0, @@ -17352,7 +17432,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1728132 + "ts": 0.1725467 }, { "core_id": 0, @@ -17360,7 +17440,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1728287 + "ts": 0.1725621 }, { "core_id": 0, @@ -17368,7 +17448,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.172843775 + "ts": 0.172577425 }, { "core_id": 1, @@ -17378,7 +17458,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1736694 + "ts": 0.1734259 }, { "core_id": 1, @@ -17386,7 +17466,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.173682925 + "ts": 0.1734394 }, { "core_id": 1, @@ -17394,7 +17474,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.173698075 + "ts": 0.17345455 }, { "core_id": 0, @@ -17404,7 +17484,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1738132 + "ts": 0.1735467 }, { "core_id": 0, @@ -17412,7 +17492,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1738286 + "ts": 0.17356205 }, { "core_id": 0, @@ -17420,7 +17500,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.173843825 + "ts": 0.173577125 }, { "core_id": 1, @@ -17430,7 +17510,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1746694 + "ts": 0.1744259 }, { "core_id": 1, @@ -17438,7 +17518,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.174682925 + "ts": 0.1744394 }, { "core_id": 1, @@ -17446,7 +17526,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.174698075 + "ts": 0.174454675 }, { "core_id": 0, @@ -17456,7 +17536,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1748132 + "ts": 0.1745467 }, { "core_id": 0, @@ -17464,7 +17544,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1748287 + "ts": 0.17456205 }, { "core_id": 0, @@ -17472,7 +17552,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.174843775 + "ts": 0.17457715 }, { "core_id": 1, @@ -17482,7 +17562,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1756694 + "ts": 0.1754259 }, { "core_id": 1, @@ -17490,7 +17570,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.175682925 + "ts": 0.17543945 }, { "core_id": 1, @@ -17498,7 +17578,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.175698325 + "ts": 0.1754546 }, { "core_id": 0, @@ -17508,7 +17588,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1758132 + "ts": 0.1755467 }, { "core_id": 0, @@ -17516,7 +17596,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1758287 + "ts": 0.17556205 }, { "core_id": 0, @@ -17524,7 +17604,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.175843775 + "ts": 0.175577125 }, { "core_id": 1, @@ -17534,7 +17614,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1766694 + "ts": 0.1764259 }, { "core_id": 1, @@ -17542,7 +17622,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1766872 + "ts": 0.1764394 }, { "core_id": 1, @@ -17550,7 +17630,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.17670235 + "ts": 0.17645455 }, { "core_id": 0, @@ -17560,7 +17640,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1768132 + "ts": 0.1765467 }, { "core_id": 0, @@ -17568,7 +17648,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1768287 + "ts": 0.1765621 }, { "core_id": 0, @@ -17576,7 +17656,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.176843775 + "ts": 0.176577425 }, { "core_id": 1, @@ -17586,7 +17666,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1776694 + "ts": 0.1774259 }, { "core_id": 1, @@ -17594,7 +17674,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.177682925 + "ts": 0.1774394 }, { "core_id": 1, @@ -17602,7 +17682,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.177698075 + "ts": 0.17745455 }, { "core_id": 0, @@ -17612,7 +17692,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1778132 + "ts": 0.1775467 }, { "core_id": 0, @@ -17620,7 +17700,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1778286 + "ts": 0.17756205 }, { "core_id": 0, @@ -17628,7 +17708,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.177843825 + "ts": 0.177577125 }, { "core_id": 1, @@ -17638,7 +17718,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1786694 + "ts": 0.1784259 }, { "core_id": 1, @@ -17646,7 +17726,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.178682925 + "ts": 0.1784394 }, { "core_id": 1, @@ -17654,7 +17734,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.178698075 + "ts": 0.178454675 }, { "core_id": 0, @@ -17664,7 +17744,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1788132 + "ts": 0.1785467 }, { "core_id": 0, @@ -17672,7 +17752,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1788287 + "ts": 0.17856205 }, { "core_id": 0, @@ -17680,7 +17760,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.178843775 + "ts": 0.17857715 }, { "core_id": 1, @@ -17690,7 +17770,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1796694 + "ts": 0.1794259 }, { "core_id": 1, @@ -17698,7 +17778,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.179682925 + "ts": 0.17943945 }, { "core_id": 1, @@ -17706,7 +17786,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.179698325 + "ts": 0.1794546 }, { "core_id": 0, @@ -17716,7 +17796,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1798132 + "ts": 0.1795467 }, { "core_id": 0, @@ -17724,7 +17804,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1798287 + "ts": 0.17956205 }, { "core_id": 0, @@ -17732,7 +17812,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.179843775 + "ts": 0.179577125 }, { "core_id": 1, @@ -17742,7 +17822,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1806694 + "ts": 0.1804259 }, { "core_id": 1, @@ -17750,7 +17830,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.180682975 + "ts": 0.1804394 }, { "core_id": 1, @@ -17758,7 +17838,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.1806981 + "ts": 0.18045455 }, { "core_id": 0, @@ -17768,7 +17848,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1808132 + "ts": 0.1805467 }, { "core_id": 0, @@ -17776,7 +17856,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1808287 + "ts": 0.180566325 }, { "core_id": 0, @@ -17784,7 +17864,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.180843775 + "ts": 0.18058155 }, { "core_id": 1, @@ -17794,7 +17874,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1816694 + "ts": 0.1814259 }, { "core_id": 1, @@ -17802,7 +17882,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.181682925 + "ts": 0.1814394 }, { "core_id": 1, @@ -17810,7 +17890,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.181698075 + "ts": 0.18145455 }, { "core_id": 0, @@ -17820,7 +17900,59 @@ "params": { "irq_num": 5 }, - "ts": 0.1818132 + "ts": 0.1815467 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.18156205 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.181577125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1824259 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1824394 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.182454675 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1825467 }, { "core_id": 0, @@ -17828,9 +17960,9 @@ "id": 6, "in_irq": true, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.181828225 + "ts": 0.182561675 }, { "core_id": 1, @@ -17838,9 +17970,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.181828225 + "ts": 0.182561675 }, { "core_id": 0, @@ -17848,7 +17980,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.18184085 + "ts": 0.18257425 }, { "core_id": 0, @@ -17856,18 +17988,18 @@ "id": 4, "in_irq": false, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.181856525 + "ts": 0.182589925 }, { - "addr": "0x3ffbb824", + "addr": "0x3ffbafe0", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -17879,16 +18011,16 @@ "id": 512, "in_irq": false, "size": 7, - "ts": 0.18189185 + "ts": 0.182624925 }, { - "addr": "0x3ffbb834", + "addr": "0x3ffbb014", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -17900,7 +18032,7 @@ "id": 512, "in_irq": false, "size": 14, - "ts": 0.181926275 + "ts": 0.182660425 }, { "core_id": 0, @@ -17910,10 +18042,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.1819433 + "ts": 0.18267735 }, { "core_id": 0, @@ -17923,10 +18055,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.1819593 + "ts": 0.182693275 }, { "core_id": 0, @@ -17934,8 +18066,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (490) example: Task[0x3ffb7aec]: allocated 14 bytes @ 0x3ffbb834\n", - "ts": 0.182029725 + "msg": "I (478) example: Task[0x3ffb72b4]: allocated 14 bytes @ 0x3ffbb014\n", + "ts": 0.18274805 }, { "core_id": 0, @@ -17943,8 +18075,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (490) example: Task[0x3ffb7aec]: allocated 14 bytes @ 0x3ffbb834\n", - "ts": 0.182029725 + "msg": "I (478) example: Task[0x3ffb72b4]: allocated 14 bytes @ 0x3ffbb014\n", + "ts": 0.18274805 }, { "core_id": 0, @@ -17954,10 +18086,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12287056, + "xQueue": 12284952, "xTicksToWait": 0 }, - "ts": 0.182047475 + "ts": 0.18276155 }, { "core_id": 0, @@ -17965,9 +18097,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12289748 + "tid": 12287644 }, - "ts": 0.1820607 + "ts": 0.182779025 }, { "core_id": 1, @@ -17975,9 +18107,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12289748 + "tid": 12287644 }, - "ts": 0.1820607 + "ts": 0.182779025 }, { "core_id": 1, @@ -17987,7 +18119,7 @@ "params": { "irq_num": 31 }, - "ts": 0.182076925 + "ts": 0.182795275 }, { "core_id": 0, @@ -17997,7 +18129,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.1820878 + "ts": 0.1828061 }, { "core_id": 1, @@ -18005,7 +18137,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.18209855 + "ts": 0.182816975 }, { "core_id": 0, @@ -18015,7 +18147,7 @@ "params": { "irq_num": 30 }, - "ts": 0.1821124 + "ts": 0.1828308 }, { "core_id": 1, @@ -18023,9 +18155,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12289748 + "tid": 12287644 }, - "ts": 0.182123275 + "ts": 0.18284165 }, { "core_id": 0, @@ -18033,7 +18165,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.18213415 + "ts": 0.1828525 }, { "core_id": 1, @@ -18043,10 +18175,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12287056, + "xQueue": 12284952, "xTicksToWait": 4294967295 }, - "ts": 0.182146025 + "ts": 0.1828645 }, { "core_id": 0, @@ -18054,7 +18186,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.182156325 + "ts": 0.1828748 }, { "core_id": 1, @@ -18064,10 +18196,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.18216785 + "ts": 0.182886425 }, { "core_id": 1, @@ -18077,10 +18209,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.18218415 + "ts": 0.18290275 }, { "core_id": 1, @@ -18088,8 +18220,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (490) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb834\n", - "ts": 0.1822477 + "msg": "I (478) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbb014\n", + "ts": 0.182950525 }, { "core_id": 1, @@ -18097,15 +18229,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (490) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb834\n", - "ts": 0.1822477 + "msg": "I (478) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbb014\n", + "ts": 0.182950525 }, { - "addr": "0x3ffbb834", + "addr": "0x3ffbb014", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", + "0x4008da24", + "0x400d3c72", + "0x400880dc", "0x0", "0x0", "0x0", @@ -18119,7 +18251,7 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 0.1822689 + "ts": 0.1829719 }, { "core_id": 1, @@ -18129,7 +18261,7 @@ "params": { "irq_num": 31 }, - "ts": 0.18230005 + "ts": 0.182999325 }, { "core_id": 1, @@ -18137,7 +18269,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.182311525 + "ts": 0.18301085 }, { "core_id": 1, @@ -18145,7 +18277,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.182328225 + "ts": 0.183027425 }, { "core_id": 1, @@ -18155,7 +18287,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1826694 + "ts": 0.1834259 }, { "core_id": 1, @@ -18163,7 +18295,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.18268285 + "ts": 0.18343945 }, { "core_id": 1, @@ -18171,7 +18303,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.182698425 + "ts": 0.18345515 }, { "core_id": 0, @@ -18181,7 +18313,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1828132 + "ts": 0.1835467 }, { "core_id": 0, @@ -18189,9 +18321,9 @@ "id": 6, "in_irq": true, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.182828225 + "ts": 0.18356165 }, { "core_id": 1, @@ -18199,9 +18331,29 @@ "id": 6, "in_irq": false, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.182828225 + "ts": 0.18356165 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12296612 + }, + "ts": 0.18357355 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12296612 + }, + "ts": 0.18357355 }, { "core_id": 0, @@ -18209,7 +18361,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.18284085 + "ts": 0.1835861 }, { "core_id": 0, @@ -18217,18 +18369,18 @@ "id": 4, "in_irq": false, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.182856525 + "ts": 0.183601775 }, { - "addr": "0x3ffbb834", + "addr": "0x3ffbb014", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -18240,16 +18392,16 @@ "id": 512, "in_irq": false, "size": 14, - "ts": 0.1828917 + "ts": 0.18363815 }, { - "addr": "0x3ffbb848", + "addr": "0x3ffbb028", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -18261,7 +18413,7 @@ "id": 512, "in_irq": false, "size": 28, - "ts": 0.182926225 + "ts": 0.183677725 }, { "core_id": 0, @@ -18271,10 +18423,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.18294325 + "ts": 0.18369465 }, { "core_id": 0, @@ -18284,10 +18436,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.18295925 + "ts": 0.183710675 }, { "core_id": 0, @@ -18295,8 +18447,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (491) example: Task[0x3ffb926c]: allocated 28 bytes @ 0x3ffbb848\n", - "ts": 0.183029675 + "msg": "I (479) example: Task[0x3ffb8a34]: allocated 28 bytes @ 0x3ffbb028\n", + "ts": 0.1837654 }, { "core_id": 0, @@ -18304,8 +18456,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (491) example: Task[0x3ffb926c]: allocated 28 bytes @ 0x3ffbb848\n", - "ts": 0.183029675 + "msg": "I (479) example: Task[0x3ffb8a34]: allocated 28 bytes @ 0x3ffbb028\n", + "ts": 0.1837654 }, { "core_id": 0, @@ -18315,10 +18467,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12293072, + "xQueue": 12290968, "xTicksToWait": 0 }, - "ts": 0.183043225 + "ts": 0.183778825 }, { "core_id": 0, @@ -18326,9 +18478,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12295764 + "tid": 12293660 }, - "ts": 0.18306065 + "ts": 0.183792075 }, { "core_id": 1, @@ -18336,9 +18488,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12295764 + "tid": 12293660 }, - "ts": 0.18306065 + "ts": 0.183792075 }, { "core_id": 1, @@ -18348,7 +18500,7 @@ "params": { "irq_num": 31 }, - "ts": 0.183076975 + "ts": 0.183808675 }, { "core_id": 0, @@ -18358,7 +18510,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.183087825 + "ts": 0.18381945 }, { "core_id": 1, @@ -18366,7 +18518,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.183098575 + "ts": 0.183830375 }, { "core_id": 0, @@ -18376,7 +18528,7 @@ "params": { "irq_num": 30 }, - "ts": 0.1831123 + "ts": 0.183844225 }, { "core_id": 1, @@ -18384,9 +18536,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12295764 + "tid": 12293660 }, - "ts": 0.18312315 + "ts": 0.18385615 }, { "core_id": 0, @@ -18394,7 +18546,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.183133975 + "ts": 0.183867325 }, { "core_id": 1, @@ -18404,18 +18556,20 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12293072, + "xQueue": 12290968, "xTicksToWait": 4294967295 }, - "ts": 0.183145825 + "ts": 0.18387925 }, { "core_id": 0, - "ctx_name": "alloc1", - "id": 17, + "ctx_name": "alloc2", + "id": 4, "in_irq": false, - "params": {}, - "ts": 0.1831561 + "params": { + "tid": 12296612 + }, + "ts": 0.183891 }, { "core_id": 1, @@ -18425,10 +18579,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.183167575 + "ts": 0.183903625 }, { "core_id": 1, @@ -18438,158 +18592,19 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.183183875 + "ts": 0.18392605 }, { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (491) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb848\n", - "ts": 0.183247325 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (491) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb848\n", - "ts": 0.183247325 - }, - { - "addr": "0x3ffbb848", + "addr": "0x3ffbb048", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.1832686 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.1832956 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.183307025 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.1833236 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1836694 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.18368295 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.183698525 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1838132 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12298716 - }, - "ts": 0.183828325 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12298716 - }, - "ts": 0.183828325 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.183840975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12298716 - }, - "ts": 0.18385665 - }, - { - "addr": "0x3ffbb848", - "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -18601,16 +18616,34 @@ "id": 512, "in_irq": false, "size": 21, - "ts": 0.183892175 + "ts": 0.1839375 }, { - "addr": "0x3ffbb864", + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (479) example: Task[0x3ffb961c]: free memory @ 0x3ffbb028\n", + "ts": 0.18397865 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (479) example: Task[0x3ffb961c]: free memory @ 0x3ffbb028\n", + "ts": 0.18397865 + }, + { + "addr": "0x3ffbb064", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -18622,7 +18655,28 @@ "id": 512, "in_irq": false, "size": 42, - "ts": 0.18393085 + "ts": 0.183990225 + }, + { + "addr": "0x3ffbb028", + "callers": [ + "0x4008da24", + "0x400d3c72", + "0x400880dc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.18400445 }, { "core_id": 0, @@ -18632,10 +18686,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.18394775 + "ts": 0.184017025 }, { "core_id": 0, @@ -18645,61 +18699,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.183963725 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (492) example: Task[0x3ffba9dc]: allocated 42 bytes @ 0x3ffbb864\n", - "ts": 0.184034075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (492) example: Task[0x3ffba9dc]: allocated 42 bytes @ 0x3ffbb864\n", - "ts": 0.184034075 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12299072, - "xTicksToWait": 0 - }, - "ts": 0.1840478 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12301764 - }, - "ts": 0.184061025 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12301764 - }, - "ts": 0.184061025 + "ts": 0.184036875 }, { "core_id": 1, @@ -18709,7 +18712,84 @@ "params": { "irq_num": 31 }, - "ts": 0.184077325 + "ts": 0.1840478 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.184059325 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.184077275 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (479) example: Task[0x3ffba1a4]: allocated 42 bytes @ 0x3ffbb064\n", + "ts": 0.18409505 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (479) example: Task[0x3ffba1a4]: allocated 42 bytes @ 0x3ffbb064\n", + "ts": 0.18409505 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12296968, + "xTicksToWait": 0 + }, + "ts": 0.18411265 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12299660 + }, + "ts": 0.184126025 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12299660 + }, + "ts": 0.184126025 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.184142375 }, { "core_id": 0, @@ -18719,7 +18799,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.184088175 + "ts": 0.184153225 }, { "core_id": 1, @@ -18727,7 +18807,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.18409895 + "ts": 0.18416405 }, { "core_id": 0, @@ -18737,7 +18817,7 @@ "params": { "irq_num": 30 }, - "ts": 0.184112675 + "ts": 0.18417785 }, { "core_id": 1, @@ -18745,9 +18825,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12301764 + "tid": 12299660 }, - "ts": 0.184125 + "ts": 0.1841886 }, { "core_id": 0, @@ -18755,7 +18835,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.184135825 + "ts": 0.184199375 }, { "core_id": 1, @@ -18765,10 +18845,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12299072, + "xQueue": 12296968, "xTicksToWait": 4294967295 }, - "ts": 0.1841477 + "ts": 0.184211475 }, { "core_id": 0, @@ -18776,7 +18856,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.184158975 + "ts": 0.184222675 }, { "core_id": 1, @@ -18786,10 +18866,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.184170625 + "ts": 0.184235025 }, { "core_id": 1, @@ -18799,10 +18879,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.184190325 + "ts": 0.18425125 }, { "core_id": 1, @@ -18810,8 +18890,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (492) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb864\n", - "ts": 0.184253875 + "msg": "I (479) example: Task[0x3ffbad8c]: free memory @ 0x3ffbb064\n", + "ts": 0.18429925 }, { "core_id": 1, @@ -18819,15 +18899,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (492) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb864\n", - "ts": 0.184253875 + "msg": "I (479) example: Task[0x3ffbad8c]: free memory @ 0x3ffbb064\n", + "ts": 0.18429925 }, { - "addr": "0x3ffbb864", + "addr": "0x3ffbb064", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", + "0x4008da24", + "0x400d3c72", + "0x400880dc", "0x0", "0x0", "0x0", @@ -18841,7 +18921,7 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 0.184275075 + "ts": 0.184320675 }, { "core_id": 1, @@ -18851,7 +18931,7 @@ "params": { "irq_num": 31 }, - "ts": 0.184301975 + "ts": 0.1843521 }, { "core_id": 1, @@ -18859,7 +18939,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1843134 + "ts": 0.18436355 }, { "core_id": 1, @@ -18867,7 +18947,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.184329975 + "ts": 0.18438025 }, { "core_id": 1, @@ -18877,7 +18957,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1846694 + "ts": 0.1844259 }, { "core_id": 1, @@ -18885,7 +18965,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.18468295 + "ts": 0.18443945 }, { "core_id": 1, @@ -18893,7 +18973,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.184698525 + "ts": 0.18445515 }, { "core_id": 0, @@ -18903,7 +18983,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1848132 + "ts": 0.1845467 }, { "core_id": 0, @@ -18911,7 +18991,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1848287 + "ts": 0.1845621 }, { "core_id": 0, @@ -18919,7 +18999,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.184843775 + "ts": 0.184577425 }, { "core_id": 1, @@ -18929,7 +19009,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1856694 + "ts": 0.1854259 }, { "core_id": 1, @@ -18937,7 +19017,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.185682925 + "ts": 0.1854394 }, { "core_id": 1, @@ -18945,7 +19025,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.185698325 + "ts": 0.18545455 }, { "core_id": 0, @@ -18955,7 +19035,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1858132 + "ts": 0.1855467 }, { "core_id": 0, @@ -18963,7 +19043,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1858287 + "ts": 0.18556205 }, { "core_id": 0, @@ -18971,7 +19051,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.185843775 + "ts": 0.185577125 }, { "core_id": 1, @@ -18981,7 +19061,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1866694 + "ts": 0.1864259 }, { "core_id": 1, @@ -18989,7 +19069,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.186682975 + "ts": 0.1864394 }, { "core_id": 1, @@ -18997,7 +19077,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.1866981 + "ts": 0.186454675 }, { "core_id": 0, @@ -19007,7 +19087,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1868132 + "ts": 0.1865467 }, { "core_id": 0, @@ -19015,7 +19095,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1868287 + "ts": 0.18656205 }, { "core_id": 0, @@ -19023,7 +19103,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.186843775 + "ts": 0.18657715 }, { "core_id": 1, @@ -19033,7 +19113,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1876694 + "ts": 0.1874259 }, { "core_id": 1, @@ -19041,7 +19121,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.187682925 + "ts": 0.18743945 }, { "core_id": 1, @@ -19049,7 +19129,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.187698075 + "ts": 0.1874546 }, { "core_id": 0, @@ -19059,7 +19139,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1878132 + "ts": 0.1875467 }, { "core_id": 0, @@ -19067,7 +19147,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1878286 + "ts": 0.18756205 }, { "core_id": 0, @@ -19075,7 +19155,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.187843825 + "ts": 0.187577125 }, { "core_id": 1, @@ -19085,7 +19165,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1886694 + "ts": 0.1884259 }, { "core_id": 1, @@ -19093,7 +19173,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.188682925 + "ts": 0.1884394 }, { "core_id": 1, @@ -19101,7 +19181,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.188698075 + "ts": 0.18845455 }, { "core_id": 0, @@ -19111,7 +19191,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1888132 + "ts": 0.1885467 }, { "core_id": 0, @@ -19119,7 +19199,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1888287 + "ts": 0.1885621 }, { "core_id": 0, @@ -19127,7 +19207,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.188843775 + "ts": 0.188577425 }, { "core_id": 1, @@ -19137,7 +19217,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1896694 + "ts": 0.1894259 }, { "core_id": 1, @@ -19145,7 +19225,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.189682925 + "ts": 0.1894394 }, { "core_id": 1, @@ -19153,7 +19233,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.189698325 + "ts": 0.18945455 }, { "core_id": 0, @@ -19163,7 +19243,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1898132 + "ts": 0.1895467 }, { "core_id": 0, @@ -19171,7 +19251,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1898287 + "ts": 0.18956205 }, { "core_id": 0, @@ -19179,7 +19259,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.1898481 + "ts": 0.189577125 }, { "core_id": 1, @@ -19189,7 +19269,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1906694 + "ts": 0.1904259 }, { "core_id": 1, @@ -19197,7 +19277,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.190682925 + "ts": 0.1904394 }, { "core_id": 1, @@ -19205,7 +19285,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.190698075 + "ts": 0.190454675 }, { "core_id": 0, @@ -19215,7 +19295,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1908132 + "ts": 0.1905467 }, { "core_id": 0, @@ -19223,7 +19303,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1908287 + "ts": 0.19056205 }, { "core_id": 0, @@ -19231,7 +19311,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.190843775 + "ts": 0.19057715 }, { "core_id": 1, @@ -19241,7 +19321,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1916694 + "ts": 0.1914259 }, { "core_id": 1, @@ -19249,7 +19329,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.191682925 + "ts": 0.19143945 }, { "core_id": 1, @@ -19257,7 +19337,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.191698325 + "ts": 0.1914546 }, { "core_id": 0, @@ -19267,7 +19347,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1918132 + "ts": 0.1915467 }, { "core_id": 0, @@ -19275,7 +19355,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1918287 + "ts": 0.19156205 }, { "core_id": 0, @@ -19283,7 +19363,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.191843775 + "ts": 0.191577125 }, { "core_id": 1, @@ -19293,7 +19373,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1926694 + "ts": 0.1924259 }, { "core_id": 1, @@ -19301,7 +19381,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.192682975 + "ts": 0.1924394 }, { "core_id": 1, @@ -19309,7 +19389,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.1926981 + "ts": 0.19245455 }, { "core_id": 0, @@ -19319,7 +19399,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1928132 + "ts": 0.1925467 }, { "core_id": 0, @@ -19327,7 +19407,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1928287 + "ts": 0.1925621 }, { "core_id": 0, @@ -19335,7 +19415,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.192843775 + "ts": 0.192577425 }, { "core_id": 1, @@ -19345,7 +19425,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1936694 + "ts": 0.1934259 }, { "core_id": 1, @@ -19353,7 +19433,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.193682925 + "ts": 0.1934394 }, { "core_id": 1, @@ -19361,7 +19441,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.193698075 + "ts": 0.19345455 }, { "core_id": 0, @@ -19371,7 +19451,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1938132 + "ts": 0.1935467 }, { "core_id": 0, @@ -19379,7 +19459,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1938286 + "ts": 0.19356205 }, { "core_id": 0, @@ -19387,7 +19467,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.193843825 + "ts": 0.193577125 }, { "core_id": 1, @@ -19397,7 +19477,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1946694 + "ts": 0.1944259 }, { "core_id": 1, @@ -19405,7 +19485,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.194682925 + "ts": 0.19444365 }, { "core_id": 1, @@ -19413,7 +19493,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.194698075 + "ts": 0.1944588 }, { "core_id": 0, @@ -19423,7 +19503,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1948132 + "ts": 0.1945467 }, { "core_id": 0, @@ -19431,7 +19511,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1948287 + "ts": 0.19456205 }, { "core_id": 0, @@ -19439,7 +19519,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.194843775 + "ts": 0.194577125 }, { "core_id": 1, @@ -19449,7 +19529,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1956694 + "ts": 0.1954259 }, { "core_id": 1, @@ -19457,7 +19537,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.195682925 + "ts": 0.1954394 }, { "core_id": 1, @@ -19465,7 +19545,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.195698325 + "ts": 0.19545455 }, { "core_id": 0, @@ -19475,7 +19555,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1958132 + "ts": 0.1955467 }, { "core_id": 0, @@ -19483,7 +19563,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1958287 + "ts": 0.1955621 }, { "core_id": 0, @@ -19491,7 +19571,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.195843775 + "ts": 0.195577425 }, { "core_id": 1, @@ -19501,7 +19581,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1966694 + "ts": 0.1964259 }, { "core_id": 1, @@ -19509,7 +19589,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.196682975 + "ts": 0.1964394 }, { "core_id": 1, @@ -19517,7 +19597,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.1966981 + "ts": 0.19645455 }, { "core_id": 0, @@ -19527,7 +19607,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1968132 + "ts": 0.1965467 }, { "core_id": 0, @@ -19535,7 +19615,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1968287 + "ts": 0.19656205 }, { "core_id": 0, @@ -19543,7 +19623,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.196843775 + "ts": 0.196577125 }, { "core_id": 1, @@ -19553,7 +19633,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1976694 + "ts": 0.1974259 }, { "core_id": 1, @@ -19561,7 +19641,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.197682925 + "ts": 0.1974394 }, { "core_id": 1, @@ -19569,7 +19649,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.197698075 + "ts": 0.197454675 }, { "core_id": 0, @@ -19579,7 +19659,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1978132 + "ts": 0.1975467 }, { "core_id": 0, @@ -19587,7 +19667,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1978286 + "ts": 0.19756205 }, { "core_id": 0, @@ -19595,7 +19675,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.197843825 + "ts": 0.19757715 }, { "core_id": 1, @@ -19605,7 +19685,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1986694 + "ts": 0.1984259 }, { "core_id": 1, @@ -19613,7 +19693,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.198682925 + "ts": 0.19843945 }, { "core_id": 1, @@ -19621,7 +19701,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.198698075 + "ts": 0.1984546 }, { "core_id": 0, @@ -19631,7 +19711,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1988132 + "ts": 0.1985467 }, { "core_id": 0, @@ -19639,7 +19719,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1988287 + "ts": 0.19856205 }, { "core_id": 0, @@ -19647,7 +19727,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.198843775 + "ts": 0.198577125 }, { "core_id": 1, @@ -19657,7 +19737,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1996694 + "ts": 0.1994259 }, { "core_id": 1, @@ -19665,7 +19745,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.199682925 + "ts": 0.1994394 }, { "core_id": 1, @@ -19673,7 +19753,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.199698325 + "ts": 0.19945455 }, { "core_id": 0, @@ -19683,7 +19763,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1998132 + "ts": 0.1995467 }, { "core_id": 0, @@ -19691,7 +19771,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1998287 + "ts": 0.1995621 }, { "core_id": 0, @@ -19699,7 +19779,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.199843775 + "ts": 0.199577425 }, { "core_id": 1, @@ -19709,7 +19789,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2006694 + "ts": 0.2004259 }, { "core_id": 1, @@ -19717,7 +19797,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.200682975 + "ts": 0.2004394 }, { "core_id": 1, @@ -19725,7 +19805,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.2006981 + "ts": 0.20045455 }, { "core_id": 0, @@ -19735,7 +19815,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2008132 + "ts": 0.2005467 }, { "core_id": 0, @@ -19743,7 +19823,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2008287 + "ts": 0.20056205 }, { "core_id": 0, @@ -19751,7 +19831,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.200843775 + "ts": 0.200577125 }, { "core_id": 1, @@ -19761,7 +19841,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2016694 + "ts": 0.2014259 }, { "core_id": 1, @@ -19769,7 +19849,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.201682925 + "ts": 0.2014394 }, { "core_id": 1, @@ -19777,7 +19857,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.201698075 + "ts": 0.201454675 }, { "core_id": 0, @@ -19787,7 +19867,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2018132 + "ts": 0.2015467 }, { "core_id": 0, @@ -19795,7 +19875,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2018286 + "ts": 0.20156205 }, { "core_id": 0, @@ -19803,7 +19883,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.201843825 + "ts": 0.20157715 }, { "core_id": 1, @@ -19813,7 +19893,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2026694 + "ts": 0.2024259 }, { "core_id": 1, @@ -19821,7 +19901,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.202682925 + "ts": 0.20243945 }, { "core_id": 1, @@ -19829,7 +19909,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.202698325 + "ts": 0.2024546 }, { "core_id": 0, @@ -19839,7 +19919,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2028132 + "ts": 0.2025467 }, { "core_id": 0, @@ -19847,7 +19927,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2028287 + "ts": 0.20256205 }, { "core_id": 0, @@ -19855,7 +19935,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.202843775 + "ts": 0.202577125 }, { "core_id": 1, @@ -19865,7 +19945,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2036694 + "ts": 0.2034259 }, { "core_id": 1, @@ -19873,7 +19953,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.203682975 + "ts": 0.2034394 }, { "core_id": 1, @@ -19881,7 +19961,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.2036981 + "ts": 0.20345455 }, { "core_id": 0, @@ -19891,7 +19971,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2038132 + "ts": 0.2035467 }, { "core_id": 0, @@ -19899,7 +19979,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2038287 + "ts": 0.2035621 }, { "core_id": 0, @@ -19907,7 +19987,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.203843775 + "ts": 0.203577425 }, { "core_id": 1, @@ -19917,7 +19997,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2046694 + "ts": 0.2044259 }, { "core_id": 1, @@ -19925,7 +20005,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.204682925 + "ts": 0.2044394 }, { "core_id": 1, @@ -19933,7 +20013,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.204698075 + "ts": 0.20445455 }, { "core_id": 0, @@ -19943,7 +20023,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2048132 + "ts": 0.2045467 }, { "core_id": 0, @@ -19951,7 +20031,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2048286 + "ts": 0.20456205 }, { "core_id": 0, @@ -19959,7 +20039,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.204843825 + "ts": 0.204577125 }, { "core_id": 1, @@ -19969,7 +20049,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2056694 + "ts": 0.2054259 }, { "core_id": 1, @@ -19977,7 +20057,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.205682925 + "ts": 0.2054394 }, { "core_id": 1, @@ -19985,7 +20065,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.205698075 + "ts": 0.205454675 }, { "core_id": 0, @@ -19995,7 +20075,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2058132 + "ts": 0.2055467 }, { "core_id": 0, @@ -20003,7 +20083,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2058287 + "ts": 0.20556205 }, { "core_id": 0, @@ -20011,7 +20091,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.205843775 + "ts": 0.20557715 }, { "core_id": 1, @@ -20021,7 +20101,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2066694 + "ts": 0.2064259 }, { "core_id": 1, @@ -20029,7 +20109,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.206682925 + "ts": 0.206443675 }, { "core_id": 1, @@ -20037,7 +20117,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.206698325 + "ts": 0.206458925 }, { "core_id": 0, @@ -20047,7 +20127,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2068132 + "ts": 0.2065467 }, { "core_id": 0, @@ -20055,7 +20135,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2068287 + "ts": 0.20656205 }, { "core_id": 0, @@ -20063,7 +20143,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.206843775 + "ts": 0.206577125 }, { "core_id": 1, @@ -20073,7 +20153,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2076694 + "ts": 0.2074259 }, { "core_id": 1, @@ -20081,7 +20161,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.207682975 + "ts": 0.2074394 }, { "core_id": 1, @@ -20089,7 +20169,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.2076981 + "ts": 0.20745455 }, { "core_id": 0, @@ -20099,7 +20179,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2078132 + "ts": 0.2075467 }, { "core_id": 0, @@ -20107,7 +20187,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2078287 + "ts": 0.2075621 }, { "core_id": 0, @@ -20115,7 +20195,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.207843775 + "ts": 0.207577425 }, { "core_id": 1, @@ -20125,7 +20205,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2086694 + "ts": 0.2084259 }, { "core_id": 1, @@ -20133,7 +20213,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.208682925 + "ts": 0.2084394 }, { "core_id": 1, @@ -20141,7 +20221,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.208698075 + "ts": 0.20845455 }, { "core_id": 0, @@ -20151,7 +20231,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2088132 + "ts": 0.2085467 }, { "core_id": 0, @@ -20159,7 +20239,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2088286 + "ts": 0.20856205 }, { "core_id": 0, @@ -20167,7 +20247,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.208843825 + "ts": 0.208577125 }, { "core_id": 1, @@ -20177,7 +20257,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2096694 + "ts": 0.2094259 }, { "core_id": 1, @@ -20185,7 +20265,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.209682925 + "ts": 0.2094394 }, { "core_id": 1, @@ -20193,7 +20273,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.209698075 + "ts": 0.209454675 }, { "core_id": 0, @@ -20203,7 +20283,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2098132 + "ts": 0.2095467 }, { "core_id": 0, @@ -20211,7 +20291,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2098287 + "ts": 0.20956205 }, { "core_id": 0, @@ -20219,7 +20299,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.209843775 + "ts": 0.20957715 }, { "core_id": 1, @@ -20229,7 +20309,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2106694 + "ts": 0.2104259 }, { "core_id": 1, @@ -20237,7 +20317,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.210682925 + "ts": 0.21043945 }, { "core_id": 1, @@ -20245,7 +20325,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.210698325 + "ts": 0.2104546 }, { "core_id": 0, @@ -20255,7 +20335,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2108132 + "ts": 0.2105467 }, { "core_id": 0, @@ -20263,7 +20343,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2108287 + "ts": 0.21056205 }, { "core_id": 0, @@ -20271,7 +20351,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.210843775 + "ts": 0.210577125 }, { "core_id": 1, @@ -20281,7 +20361,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2116694 + "ts": 0.2114259 }, { "core_id": 1, @@ -20289,7 +20369,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.211682975 + "ts": 0.2114394 }, { "core_id": 1, @@ -20297,7 +20377,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.2116981 + "ts": 0.21145455 }, { "core_id": 0, @@ -20307,7 +20387,59 @@ "params": { "irq_num": 5 }, - "ts": 0.2118132 + "ts": 0.2115467 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2115621 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.211577425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2124259 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2124394 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.21245455 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2125467 }, { "core_id": 0, @@ -20315,9 +20447,9 @@ "id": 6, "in_irq": true, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.211828325 + "ts": 0.21256165 }, { "core_id": 1, @@ -20325,9 +20457,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.211828325 + "ts": 0.21256165 }, { "core_id": 0, @@ -20335,7 +20467,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.211840975 + "ts": 0.2125743 }, { "core_id": 0, @@ -20343,18 +20475,18 @@ "id": 4, "in_irq": false, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.21185665 + "ts": 0.212590225 }, { - "addr": "0x3ffbb864", + "addr": "0x3ffbb028", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -20366,16 +20498,16 @@ "id": 512, "in_irq": false, "size": 8, - "ts": 0.211892175 + "ts": 0.212626475 }, { - "addr": "0x3ffbb874", + "addr": "0x3ffbb064", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -20387,7 +20519,7 @@ "id": 512, "in_irq": false, "size": 16, - "ts": 0.21193065 + "ts": 0.21266205 }, { "core_id": 0, @@ -20397,10 +20529,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.21194755 + "ts": 0.212679025 }, { "core_id": 0, @@ -20410,10 +20542,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.21196355 + "ts": 0.212695 }, { "core_id": 0, @@ -20421,8 +20553,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (520) example: Task[0x3ffb7aec]: allocated 16 bytes @ 0x3ffbb874\n", - "ts": 0.212033875 + "msg": "I (508) example: Task[0x3ffb72b4]: allocated 16 bytes @ 0x3ffbb064\n", + "ts": 0.2127534 }, { "core_id": 0, @@ -20430,8 +20562,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (520) example: Task[0x3ffb7aec]: allocated 16 bytes @ 0x3ffbb874\n", - "ts": 0.212033875 + "msg": "I (508) example: Task[0x3ffb72b4]: allocated 16 bytes @ 0x3ffbb064\n", + "ts": 0.2127534 }, { "core_id": 0, @@ -20441,10 +20573,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12287056, + "xQueue": 12284952, "xTicksToWait": 0 }, - "ts": 0.212047475 + "ts": 0.2127669 }, { "core_id": 0, @@ -20452,9 +20584,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12289748 + "tid": 12287644 }, - "ts": 0.2120607 + "ts": 0.21278005 }, { "core_id": 1, @@ -20462,9 +20594,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12289748 + "tid": 12287644 }, - "ts": 0.2120607 + "ts": 0.21278005 }, { "core_id": 1, @@ -20474,7 +20606,7 @@ "params": { "irq_num": 31 }, - "ts": 0.21207695 + "ts": 0.212796275 }, { "core_id": 0, @@ -20484,7 +20616,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.2120878 + "ts": 0.2128071 }, { "core_id": 1, @@ -20492,7 +20624,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.212098575 + "ts": 0.212817975 }, { "core_id": 0, @@ -20502,7 +20634,7 @@ "params": { "irq_num": 30 }, - "ts": 0.212112375 + "ts": 0.212831875 }, { "core_id": 1, @@ -20510,9 +20642,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12289748 + "tid": 12287644 }, - "ts": 0.212123175 + "ts": 0.212842675 }, { "core_id": 0, @@ -20520,7 +20652,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.212134025 + "ts": 0.2128534 }, { "core_id": 1, @@ -20530,10 +20662,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12287056, + "xQueue": 12284952, "xTicksToWait": 4294967295 }, - "ts": 0.2121459 + "ts": 0.212865525 }, { "core_id": 0, @@ -20541,7 +20673,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.2121562 + "ts": 0.212875725 }, { "core_id": 1, @@ -20551,10 +20683,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.212167725 + "ts": 0.212887475 }, { "core_id": 1, @@ -20564,10 +20696,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.21218815 + "ts": 0.212903825 }, { "core_id": 1, @@ -20575,8 +20707,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (520) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb874\n", - "ts": 0.2122517 + "msg": "I (508) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbb064\n", + "ts": 0.2129517 }, { "core_id": 1, @@ -20584,15 +20716,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (520) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb874\n", - "ts": 0.2122517 + "msg": "I (508) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbb064\n", + "ts": 0.2129517 }, { - "addr": "0x3ffbb874", + "addr": "0x3ffbb064", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", + "0x4008da24", + "0x400d3c72", + "0x400880dc", "0x0", "0x0", "0x0", @@ -20606,7 +20738,7 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 0.2122729 + "ts": 0.2129729 }, { "core_id": 1, @@ -20616,7 +20748,7 @@ "params": { "irq_num": 31 }, - "ts": 0.2122998 + "ts": 0.213004375 }, { "core_id": 1, @@ -20624,7 +20756,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.212311225 + "ts": 0.213015825 }, { "core_id": 1, @@ -20632,7 +20764,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.2123278 + "ts": 0.213032525 }, { "core_id": 1, @@ -20642,7 +20774,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2126694 + "ts": 0.2134259 }, { "core_id": 1, @@ -20650,7 +20782,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.21268295 + "ts": 0.21343945 }, { "core_id": 1, @@ -20658,7 +20790,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.212698525 + "ts": 0.21345515 }, { "core_id": 0, @@ -20668,7 +20800,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2128132 + "ts": 0.2135467 }, { "core_id": 0, @@ -20676,9 +20808,9 @@ "id": 6, "in_irq": true, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.212828325 + "ts": 0.2135617 }, { "core_id": 1, @@ -20686,9 +20818,29 @@ "id": 6, "in_irq": false, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.212828325 + "ts": 0.2135617 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12296612 + }, + "ts": 0.21357355 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12296612 + }, + "ts": 0.21357355 }, { "core_id": 0, @@ -20696,7 +20848,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.212840975 + "ts": 0.21358605 }, { "core_id": 0, @@ -20704,18 +20856,18 @@ "id": 4, "in_irq": false, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.212856775 + "ts": 0.213601725 }, { - "addr": "0x3ffbb874", + "addr": "0x3ffbb064", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -20727,16 +20879,16 @@ "id": 512, "in_irq": false, "size": 16, - "ts": 0.212892175 + "ts": 0.21363815 }, { - "addr": "0x3ffbb888", + "addr": "0x3ffbb078", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -20748,7 +20900,7 @@ "id": 512, "in_irq": false, "size": 32, - "ts": 0.212926875 + "ts": 0.213673775 }, { "core_id": 0, @@ -20758,10 +20910,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.2129438 + "ts": 0.2136907 }, { "core_id": 0, @@ -20771,10 +20923,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.212963975 + "ts": 0.213706725 }, { "core_id": 0, @@ -20782,8 +20934,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (521) example: Task[0x3ffb926c]: allocated 32 bytes @ 0x3ffbb888\n", - "ts": 0.213034425 + "msg": "I (509) example: Task[0x3ffb8a34]: allocated 32 bytes @ 0x3ffbb078\n", + "ts": 0.21376145 }, { "core_id": 0, @@ -20791,8 +20943,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (521) example: Task[0x3ffb926c]: allocated 32 bytes @ 0x3ffbb888\n", - "ts": 0.213034425 + "msg": "I (509) example: Task[0x3ffb8a34]: allocated 32 bytes @ 0x3ffbb078\n", + "ts": 0.21376145 }, { "core_id": 0, @@ -20802,10 +20954,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12293072, + "xQueue": 12290968, "xTicksToWait": 0 }, - "ts": 0.21304805 + "ts": 0.21377875 }, { "core_id": 0, @@ -20813,9 +20965,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12295764 + "tid": 12293660 }, - "ts": 0.21306125 + "ts": 0.213792 }, { "core_id": 1, @@ -20823,9 +20975,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12295764 + "tid": 12293660 }, - "ts": 0.21306125 + "ts": 0.213792 }, { "core_id": 1, @@ -20835,7 +20987,7 @@ "params": { "irq_num": 31 }, - "ts": 0.21307755 + "ts": 0.21380835 }, { "core_id": 0, @@ -20845,7 +20997,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.2130884 + "ts": 0.2138192 }, { "core_id": 1, @@ -20853,7 +21005,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.21309915 + "ts": 0.213830025 }, { "core_id": 0, @@ -20863,7 +21015,7 @@ "params": { "irq_num": 30 }, - "ts": 0.213112875 + "ts": 0.2138438 }, { "core_id": 1, @@ -20871,9 +21023,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12295764 + "tid": 12293660 }, - "ts": 0.213123725 + "ts": 0.21385575 }, { "core_id": 0, @@ -20881,7 +21033,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.21313455 + "ts": 0.2138669 }, { "core_id": 1, @@ -20891,18 +21043,20 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12293072, + "xQueue": 12290968, "xTicksToWait": 4294967295 }, - "ts": 0.213146575 + "ts": 0.21387885 }, { "core_id": 0, - "ctx_name": "alloc1", - "id": 17, + "ctx_name": "alloc2", + "id": 4, "in_irq": false, - "params": {}, - "ts": 0.21315695 + "params": { + "tid": 12296612 + }, + "ts": 0.2138905 }, { "core_id": 1, @@ -20912,10 +21066,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.21316835 + "ts": 0.2139022 }, { "core_id": 1, @@ -20925,158 +21079,19 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.21318475 + "ts": 0.2139208 }, { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (521) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb888\n", - "ts": 0.2132482 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (521) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb888\n", - "ts": 0.2132482 - }, - { - "addr": "0x3ffbb888", + "addr": "0x3ffbb09c", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.213273225 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.213300225 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.21331165 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.213328225 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2136694 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.21368295 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.213698525 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2138132 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12298716 - }, - "ts": 0.213828325 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12298716 - }, - "ts": 0.213828325 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.213840975 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12298716 - }, - "ts": 0.21385665 - }, - { - "addr": "0x3ffbb888", - "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -21088,16 +21103,34 @@ "id": 512, "in_irq": false, "size": 24, - "ts": 0.213892175 + "ts": 0.213933875 }, { - "addr": "0x3ffbb8a4", + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (509) example: Task[0x3ffb961c]: free memory @ 0x3ffbb078\n", + "ts": 0.21397465 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (509) example: Task[0x3ffb961c]: free memory @ 0x3ffbb078\n", + "ts": 0.21397465 + }, + { + "addr": "0x3ffbb0b8", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -21109,7 +21142,28 @@ "id": 512, "in_irq": false, "size": 48, - "ts": 0.213926725 + "ts": 0.2139905 + }, + { + "addr": "0x3ffbb078", + "callers": [ + "0x4008da24", + "0x400d3c72", + "0x400880dc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.2140048 }, { "core_id": 0, @@ -21119,10 +21173,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.213943625 + "ts": 0.214017225 }, { "core_id": 0, @@ -21132,61 +21186,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.213959625 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (522) example: Task[0x3ffba9dc]: allocated 48 bytes @ 0x3ffbb8a4\n", - "ts": 0.21402995 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (522) example: Task[0x3ffba9dc]: allocated 48 bytes @ 0x3ffbb8a4\n", - "ts": 0.21402995 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12299072, - "xTicksToWait": 0 - }, - "ts": 0.21405045 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12301764 - }, - "ts": 0.214063675 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12301764 - }, - "ts": 0.214063675 + "ts": 0.21403725 }, { "core_id": 1, @@ -21196,7 +21199,184 @@ "params": { "irq_num": 31 }, - "ts": 0.21408 + "ts": 0.214048175 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.214059725 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.214077675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (509) example: Task[0x3ffba1a4]: allocated 48 bytes @ 0x3ffbb0b8\n", + "ts": 0.214095675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (509) example: Task[0x3ffba1a4]: allocated 48 bytes @ 0x3ffbb0b8\n", + "ts": 0.214095675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12296968, + "xTicksToWait": 0 + }, + "ts": 0.214109125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.21565445 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12299660 + }, + "ts": 0.215666025 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12299660 + }, + "ts": 0.215666025 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.215683825 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.21569495 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.21570585 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2157175 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.215728 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.215738875 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.2157498 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.21576155 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2157723 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12296612 + }, + "ts": 0.21578375 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12299660 + }, + "ts": 0.215801425 }, { "core_id": 0, @@ -21206,43 +21386,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.21409085 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2141016 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.2141155 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12301764 - }, - "ts": 0.214126375 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2141372 + "ts": 0.21581525 }, { "core_id": 1, @@ -21252,18 +21396,20 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12299072, + "xQueue": 12296968, "xTicksToWait": 4294967295 }, - "ts": 0.21414905 + "ts": 0.215827525 }, { "core_id": 0, - "ctx_name": "alloc2", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.21416035 + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.215838975 }, { "core_id": 1, @@ -21273,10 +21419,18 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.214171975 + "ts": 0.21585105 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2158621 }, { "core_id": 1, @@ -21286,10 +21440,18 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.214188375 + "ts": 0.2158743 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.215885925 }, { "core_id": 1, @@ -21297,8 +21459,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (522) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb8a4\n", - "ts": 0.214251925 + "msg": "I (511) example: Task[0x3ffbad8c]: free memory @ 0x3ffbb0b8\n", + "ts": 0.21593595 }, { "core_id": 1, @@ -21306,15 +21468,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (522) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb8a4\n", - "ts": 0.214251925 + "msg": "I (511) example: Task[0x3ffbad8c]: free memory @ 0x3ffbb0b8\n", + "ts": 0.21593595 }, { - "addr": "0x3ffbb8a4", + "addr": "0x3ffbb0b8", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", + "0x4008da24", + "0x400d3c72", + "0x400880dc", "0x0", "0x0", "0x0", @@ -21328,7 +21490,7 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 0.214273125 + "ts": 0.215957325 }, { "core_id": 1, @@ -21338,7 +21500,7 @@ "params": { "irq_num": 31 }, - "ts": 0.21430345 + "ts": 0.21598475 }, { "core_id": 1, @@ -21346,7 +21508,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.214314925 + "ts": 0.21599615 }, { "core_id": 1, @@ -21354,7 +21516,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.214331625 + "ts": 0.216012725 }, { "core_id": 1, @@ -21364,7 +21526,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2146694 + "ts": 0.2164259 }, { "core_id": 1, @@ -21372,7 +21534,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.21468285 + "ts": 0.2164394 }, { "core_id": 1, @@ -21380,7 +21542,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.214698425 + "ts": 0.216454975 }, { "core_id": 0, @@ -21390,7 +21552,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2148132 + "ts": 0.2165467 }, { "core_id": 0, @@ -21398,7 +21560,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2148286 + "ts": 0.2165621 }, { "core_id": 0, @@ -21406,7 +21568,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.214843825 + "ts": 0.216577425 }, { "core_id": 1, @@ -21416,7 +21578,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2156694 + "ts": 0.2174259 }, { "core_id": 1, @@ -21424,7 +21586,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.215682925 + "ts": 0.2174394 }, { "core_id": 1, @@ -21432,7 +21594,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.215698075 + "ts": 0.217454675 }, { "core_id": 0, @@ -21442,7 +21604,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2158132 + "ts": 0.2175467 }, { "core_id": 0, @@ -21450,7 +21612,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2158287 + "ts": 0.21756205 }, { "core_id": 0, @@ -21458,7 +21620,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.215843775 + "ts": 0.21757715 }, { "core_id": 1, @@ -21468,7 +21630,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2166694 + "ts": 0.2184259 }, { "core_id": 1, @@ -21476,7 +21638,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.216682925 + "ts": 0.21843945 }, { "core_id": 1, @@ -21484,7 +21646,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.216698325 + "ts": 0.2184546 }, { "core_id": 0, @@ -21494,7 +21656,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2168132 + "ts": 0.2185467 }, { "core_id": 0, @@ -21502,7 +21664,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2168287 + "ts": 0.21856205 }, { "core_id": 0, @@ -21510,7 +21672,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.216843775 + "ts": 0.218577125 }, { "core_id": 1, @@ -21520,7 +21682,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2176694 + "ts": 0.2194259 }, { "core_id": 1, @@ -21528,7 +21690,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.217682975 + "ts": 0.2194394 }, { "core_id": 1, @@ -21536,7 +21698,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.2176981 + "ts": 0.21945455 }, { "core_id": 0, @@ -21546,7 +21708,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2178132 + "ts": 0.2195467 }, { "core_id": 0, @@ -21554,7 +21716,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2178287 + "ts": 0.2195621 }, { "core_id": 0, @@ -21562,7 +21724,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.217843775 + "ts": 0.219577425 }, { "core_id": 1, @@ -21572,7 +21734,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2186694 + "ts": 0.2204259 }, { "core_id": 1, @@ -21580,7 +21742,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.218682925 + "ts": 0.2204394 }, { "core_id": 1, @@ -21588,7 +21750,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.218698075 + "ts": 0.22045455 }, { "core_id": 0, @@ -21598,7 +21760,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2188132 + "ts": 0.2205467 }, { "core_id": 0, @@ -21606,7 +21768,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2188286 + "ts": 0.22056205 }, { "core_id": 0, @@ -21614,7 +21776,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.218843825 + "ts": 0.220577125 }, { "core_id": 1, @@ -21624,7 +21786,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2196694 + "ts": 0.2214259 }, { "core_id": 1, @@ -21632,7 +21794,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.219682925 + "ts": 0.2214394 }, { "core_id": 1, @@ -21640,7 +21802,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.219698075 + "ts": 0.221454675 }, { "core_id": 0, @@ -21650,7 +21812,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2198132 + "ts": 0.2215467 }, { "core_id": 0, @@ -21658,7 +21820,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2198287 + "ts": 0.22156205 }, { "core_id": 0, @@ -21666,7 +21828,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.219843775 + "ts": 0.22157715 }, { "core_id": 1, @@ -21676,7 +21838,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2206694 + "ts": 0.2224259 }, { "core_id": 1, @@ -21684,7 +21846,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.220682925 + "ts": 0.22243945 }, { "core_id": 1, @@ -21692,7 +21854,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.220698325 + "ts": 0.2224546 }, { "core_id": 0, @@ -21702,7 +21864,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2208132 + "ts": 0.2225467 }, { "core_id": 0, @@ -21710,7 +21872,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2208287 + "ts": 0.22256205 }, { "core_id": 0, @@ -21718,7 +21880,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.220843775 + "ts": 0.222577125 }, { "core_id": 1, @@ -21728,7 +21890,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2216694 + "ts": 0.2234259 }, { "core_id": 1, @@ -21736,7 +21898,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.221682975 + "ts": 0.2234394 }, { "core_id": 1, @@ -21744,7 +21906,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.2216981 + "ts": 0.22345455 }, { "core_id": 0, @@ -21754,7 +21916,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2218132 + "ts": 0.2235467 }, { "core_id": 0, @@ -21762,7 +21924,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2218287 + "ts": 0.2235621 }, { "core_id": 0, @@ -21770,7 +21932,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.221843775 + "ts": 0.223577425 }, { "core_id": 1, @@ -21780,7 +21942,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2226694 + "ts": 0.2244259 }, { "core_id": 1, @@ -21788,7 +21950,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.222682925 + "ts": 0.2244394 }, { "core_id": 1, @@ -21796,7 +21958,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.222698075 + "ts": 0.22445455 }, { "core_id": 0, @@ -21806,7 +21968,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2228132 + "ts": 0.2245467 }, { "core_id": 0, @@ -21814,7 +21976,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2228286 + "ts": 0.22456205 }, { "core_id": 0, @@ -21822,7 +21984,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.222843825 + "ts": 0.224577125 }, { "core_id": 1, @@ -21832,7 +21994,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2236694 + "ts": 0.2254259 }, { "core_id": 1, @@ -21840,7 +22002,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.223682925 + "ts": 0.2254394 }, { "core_id": 1, @@ -21848,7 +22010,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.223698075 + "ts": 0.225454675 }, { "core_id": 0, @@ -21858,7 +22020,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2238132 + "ts": 0.2255467 }, { "core_id": 0, @@ -21866,7 +22028,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2238287 + "ts": 0.22556205 }, { "core_id": 0, @@ -21874,7 +22036,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.223843775 + "ts": 0.22557715 }, { "core_id": 1, @@ -21884,7 +22046,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2246694 + "ts": 0.2264259 }, { "core_id": 1, @@ -21892,7 +22054,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.224687175 + "ts": 0.22643945 }, { "core_id": 1, @@ -21900,7 +22062,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.224702325 + "ts": 0.2264546 }, { "core_id": 0, @@ -21910,7 +22072,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2248132 + "ts": 0.2265467 }, { "core_id": 0, @@ -21918,7 +22080,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2248287 + "ts": 0.22656205 }, { "core_id": 0, @@ -21926,7 +22088,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.224843775 + "ts": 0.226577125 }, { "core_id": 1, @@ -21936,7 +22098,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2256694 + "ts": 0.2274259 }, { "core_id": 1, @@ -21944,7 +22106,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.225682925 + "ts": 0.2274394 }, { "core_id": 1, @@ -21952,7 +22114,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.225698075 + "ts": 0.22745455 }, { "core_id": 0, @@ -21962,7 +22124,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2258132 + "ts": 0.2275467 }, { "core_id": 0, @@ -21970,7 +22132,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2258286 + "ts": 0.2275621 }, { "core_id": 0, @@ -21978,7 +22140,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.225843825 + "ts": 0.227577425 }, { "core_id": 1, @@ -21988,7 +22150,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2266694 + "ts": 0.2284259 }, { "core_id": 1, @@ -21996,7 +22158,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.226682925 + "ts": 0.2284394 }, { "core_id": 1, @@ -22004,7 +22166,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.226698075 + "ts": 0.22845455 }, { "core_id": 0, @@ -22014,7 +22176,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2268132 + "ts": 0.2285467 }, { "core_id": 0, @@ -22022,7 +22184,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2268287 + "ts": 0.22856205 }, { "core_id": 0, @@ -22030,7 +22192,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.226843775 + "ts": 0.228577125 }, { "core_id": 1, @@ -22040,7 +22202,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2276694 + "ts": 0.2294259 }, { "core_id": 1, @@ -22048,7 +22210,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.227682925 + "ts": 0.229443675 }, { "core_id": 1, @@ -22056,7 +22218,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.227698325 + "ts": 0.229458825 }, { "core_id": 0, @@ -22066,7 +22228,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2278132 + "ts": 0.2295467 }, { "core_id": 0, @@ -22074,7 +22236,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2278287 + "ts": 0.22956205 }, { "core_id": 0, @@ -22082,7 +22244,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.227843775 + "ts": 0.229577125 }, { "core_id": 1, @@ -22092,7 +22254,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2286694 + "ts": 0.2304259 }, { "core_id": 1, @@ -22100,7 +22262,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.228682975 + "ts": 0.2304394 }, { "core_id": 1, @@ -22108,7 +22270,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.2286981 + "ts": 0.23045455 }, { "core_id": 0, @@ -22118,7 +22280,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2288132 + "ts": 0.2305467 }, { "core_id": 0, @@ -22126,7 +22288,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2288287 + "ts": 0.2305621 }, { "core_id": 0, @@ -22134,7 +22296,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.228843775 + "ts": 0.230577425 }, { "core_id": 1, @@ -22144,7 +22306,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2296694 + "ts": 0.2314259 }, { "core_id": 1, @@ -22152,7 +22314,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.229682925 + "ts": 0.2314394 }, { "core_id": 1, @@ -22160,7 +22322,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.229698075 + "ts": 0.23145455 }, { "core_id": 0, @@ -22170,7 +22332,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2298132 + "ts": 0.2315467 }, { "core_id": 0, @@ -22178,7 +22340,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2298286 + "ts": 0.23156205 }, { "core_id": 0, @@ -22186,7 +22348,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.229843825 + "ts": 0.231577125 }, { "core_id": 1, @@ -22196,7 +22358,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2306694 + "ts": 0.2324259 }, { "core_id": 1, @@ -22204,7 +22366,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.230682925 + "ts": 0.2324394 }, { "core_id": 1, @@ -22212,7 +22374,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.230698075 + "ts": 0.232454675 }, { "core_id": 0, @@ -22222,7 +22384,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2308132 + "ts": 0.2325467 }, { "core_id": 0, @@ -22230,7 +22392,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2308287 + "ts": 0.23256205 }, { "core_id": 0, @@ -22238,7 +22400,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.230843775 + "ts": 0.23257715 }, { "core_id": 1, @@ -22248,7 +22410,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2316694 + "ts": 0.2334259 }, { "core_id": 1, @@ -22256,7 +22418,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.231682925 + "ts": 0.23343945 }, { "core_id": 1, @@ -22264,7 +22426,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.231698325 + "ts": 0.2334546 }, { "core_id": 0, @@ -22274,7 +22436,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2318132 + "ts": 0.2335467 }, { "core_id": 0, @@ -22282,7 +22444,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2318287 + "ts": 0.23356205 }, { "core_id": 0, @@ -22290,7 +22452,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.231843775 + "ts": 0.233577125 }, { "core_id": 1, @@ -22300,7 +22462,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2326694 + "ts": 0.2344259 }, { "core_id": 1, @@ -22308,7 +22470,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.232682975 + "ts": 0.2344394 }, { "core_id": 1, @@ -22316,7 +22478,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.2326981 + "ts": 0.23445455 }, { "core_id": 0, @@ -22326,7 +22488,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2328132 + "ts": 0.2345467 }, { "core_id": 0, @@ -22334,7 +22496,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2328287 + "ts": 0.2345621 }, { "core_id": 0, @@ -22342,7 +22504,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.232843775 + "ts": 0.234577425 }, { "core_id": 1, @@ -22352,7 +22514,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2336694 + "ts": 0.2354259 }, { "core_id": 1, @@ -22360,7 +22522,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.233682925 + "ts": 0.2354394 }, { "core_id": 1, @@ -22368,7 +22530,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.233698075 + "ts": 0.23545455 }, { "core_id": 0, @@ -22378,7 +22540,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2338132 + "ts": 0.2355467 }, { "core_id": 0, @@ -22386,7 +22548,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2338286 + "ts": 0.23556205 }, { "core_id": 0, @@ -22394,7 +22556,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.233843825 + "ts": 0.235577125 }, { "core_id": 1, @@ -22404,7 +22566,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2346694 + "ts": 0.2364259 }, { "core_id": 1, @@ -22412,7 +22574,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.234682925 + "ts": 0.2364394 }, { "core_id": 1, @@ -22420,7 +22582,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.234698075 + "ts": 0.236454675 }, { "core_id": 0, @@ -22430,7 +22592,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2348132 + "ts": 0.2365467 }, { "core_id": 0, @@ -22438,7 +22600,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2348287 + "ts": 0.23656205 }, { "core_id": 0, @@ -22446,7 +22608,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.234843775 + "ts": 0.23657715 }, { "core_id": 1, @@ -22456,7 +22618,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2356694 + "ts": 0.2374259 }, { "core_id": 1, @@ -22464,7 +22626,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.235682925 + "ts": 0.23743945 }, { "core_id": 1, @@ -22472,7 +22634,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.235698325 + "ts": 0.2374546 }, { "core_id": 0, @@ -22482,7 +22644,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2358132 + "ts": 0.2375467 }, { "core_id": 0, @@ -22490,7 +22652,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2358287 + "ts": 0.23756205 }, { "core_id": 0, @@ -22498,7 +22660,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.235843775 + "ts": 0.237577125 }, { "core_id": 1, @@ -22508,7 +22670,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2366694 + "ts": 0.2384259 }, { "core_id": 1, @@ -22516,7 +22678,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.236686525 + "ts": 0.2384394 }, { "core_id": 1, @@ -22524,7 +22686,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.23670165 + "ts": 0.23845455 }, { "core_id": 0, @@ -22534,7 +22696,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2368132 + "ts": 0.2385467 }, { "core_id": 0, @@ -22542,7 +22704,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2368287 + "ts": 0.2385621 }, { "core_id": 0, @@ -22550,7 +22712,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.236843775 + "ts": 0.238577425 }, { "core_id": 1, @@ -22560,7 +22722,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2376694 + "ts": 0.2394259 }, { "core_id": 1, @@ -22568,7 +22730,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.237682925 + "ts": 0.2394394 }, { "core_id": 1, @@ -22576,7 +22738,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.237698075 + "ts": 0.23945455 }, { "core_id": 0, @@ -22586,7 +22748,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2378132 + "ts": 0.2395467 }, { "core_id": 0, @@ -22594,7 +22756,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2378286 + "ts": 0.23956205 }, { "core_id": 0, @@ -22602,7 +22764,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.237843825 + "ts": 0.239577125 }, { "core_id": 1, @@ -22612,7 +22774,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2386694 + "ts": 0.2404259 }, { "core_id": 1, @@ -22620,7 +22782,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.238682925 + "ts": 0.2404394 }, { "core_id": 1, @@ -22628,7 +22790,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.238698075 + "ts": 0.240454675 }, { "core_id": 0, @@ -22638,7 +22800,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2388132 + "ts": 0.2405467 }, { "core_id": 0, @@ -22646,7 +22808,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2388287 + "ts": 0.24056205 }, { "core_id": 0, @@ -22654,7 +22816,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.238843775 + "ts": 0.24057715 }, { "core_id": 1, @@ -22664,7 +22826,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2396694 + "ts": 0.2414259 }, { "core_id": 1, @@ -22672,7 +22834,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.239682925 + "ts": 0.241443 }, { "core_id": 1, @@ -22680,7 +22842,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.239698325 + "ts": 0.241458125 }, { "core_id": 0, @@ -22690,7 +22852,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2398132 + "ts": 0.2415467 }, { "core_id": 0, @@ -22698,7 +22860,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2398287 + "ts": 0.24156205 }, { "core_id": 0, @@ -22706,7 +22868,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.239843775 + "ts": 0.241577125 }, { "core_id": 1, @@ -22716,7 +22878,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2406694 + "ts": 0.2424259 }, { "core_id": 1, @@ -22724,7 +22886,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.240682975 + "ts": 0.2424394 }, { "core_id": 1, @@ -22732,7 +22894,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.2406981 + "ts": 0.24245455 }, { "core_id": 0, @@ -22742,59 +22904,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2408132 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2408287 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.240843775 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2416694 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.241682925 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.241698075 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2418132 + "ts": 0.2425467 }, { "core_id": 0, @@ -22802,9 +22912,9 @@ "id": 6, "in_irq": true, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.241828225 + "ts": 0.2425617 }, { "core_id": 1, @@ -22812,9 +22922,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.241828225 + "ts": 0.2425617 }, { "core_id": 0, @@ -22822,7 +22932,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.24184085 + "ts": 0.2425743 }, { "core_id": 0, @@ -22830,18 +22940,18 @@ "id": 4, "in_irq": false, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.241856525 + "ts": 0.242589975 }, { - "addr": "0x3ffbb8a4", + "addr": "0x3ffbb038", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -22853,16 +22963,16 @@ "id": 512, "in_irq": false, "size": 9, - "ts": 0.24189185 + "ts": 0.2426251 }, { - "addr": "0x3ffbb8b4", + "addr": "0x3ffbb078", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -22874,7 +22984,7 @@ "id": 512, "in_irq": false, "size": 18, - "ts": 0.241926275 + "ts": 0.24265935 }, { "core_id": 0, @@ -22884,10 +22994,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.2419433 + "ts": 0.2426764 }, { "core_id": 0, @@ -22897,10 +23007,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.2419593 + "ts": 0.242692425 }, { "core_id": 0, @@ -22908,8 +23018,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (550) example: Task[0x3ffb7aec]: allocated 18 bytes @ 0x3ffbb8b4\n", - "ts": 0.242029725 + "msg": "I (538) example: Task[0x3ffb72b4]: allocated 18 bytes @ 0x3ffbb078\n", + "ts": 0.24274725 }, { "core_id": 0, @@ -22917,8 +23027,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (550) example: Task[0x3ffb7aec]: allocated 18 bytes @ 0x3ffbb8b4\n", - "ts": 0.242029725 + "msg": "I (538) example: Task[0x3ffb72b4]: allocated 18 bytes @ 0x3ffbb078\n", + "ts": 0.24274725 }, { "core_id": 0, @@ -22928,10 +23038,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12287056, + "xQueue": 12284952, "xTicksToWait": 0 }, - "ts": 0.24204755 + "ts": 0.242760625 }, { "core_id": 0, @@ -22939,9 +23049,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12289748 + "tid": 12287644 }, - "ts": 0.242060775 + "ts": 0.242774025 }, { "core_id": 1, @@ -22949,9 +23059,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12289748 + "tid": 12287644 }, - "ts": 0.242060775 + "ts": 0.242774025 }, { "core_id": 1, @@ -22961,7 +23071,7 @@ "params": { "irq_num": 31 }, - "ts": 0.242077 + "ts": 0.2427902 }, { "core_id": 0, @@ -22971,7 +23081,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.242087875 + "ts": 0.2428061 }, { "core_id": 1, @@ -22979,7 +23089,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.242098625 + "ts": 0.2428168 }, { "core_id": 0, @@ -22989,7 +23099,7 @@ "params": { "irq_num": 30 }, - "ts": 0.242112475 + "ts": 0.242830525 }, { "core_id": 1, @@ -22997,9 +23107,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12289748 + "tid": 12287644 }, - "ts": 0.24212335 + "ts": 0.2428413 }, { "core_id": 0, @@ -23007,7 +23117,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.242134175 + "ts": 0.24285205 }, { "core_id": 1, @@ -23017,10 +23127,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12287056, + "xQueue": 12284952, "xTicksToWait": 4294967295 }, - "ts": 0.24214615 + "ts": 0.2428643 }, { "core_id": 0, @@ -23028,7 +23138,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.2421564 + "ts": 0.24287555 }, { "core_id": 1, @@ -23038,10 +23148,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.2421678 + "ts": 0.2428928 }, { "core_id": 1, @@ -23051,10 +23161,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.242184175 + "ts": 0.24290905 }, { "core_id": 1, @@ -23062,8 +23172,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (550) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb8b4\n", - "ts": 0.242247725 + "msg": "I (538) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbb078\n", + "ts": 0.242956925 }, { "core_id": 1, @@ -23071,15 +23181,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (550) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb8b4\n", - "ts": 0.242247725 + "msg": "I (538) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbb078\n", + "ts": 0.242956925 }, { - "addr": "0x3ffbb8b4", + "addr": "0x3ffbb078", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", + "0x4008da24", + "0x400d3c72", + "0x400880dc", "0x0", "0x0", "0x0", @@ -23093,7 +23203,7 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 0.242268925 + "ts": 0.242978325 }, { "core_id": 1, @@ -23103,7 +23213,7 @@ "params": { "irq_num": 31 }, - "ts": 0.242299925 + "ts": 0.2430048 }, { "core_id": 1, @@ -23111,7 +23221,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2423114 + "ts": 0.2430162 }, { "core_id": 1, @@ -23119,7 +23229,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.2423281 + "ts": 0.243032775 }, { "core_id": 1, @@ -23129,7 +23239,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2426694 + "ts": 0.2434259 }, { "core_id": 1, @@ -23137,7 +23247,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.24268285 + "ts": 0.24343945 }, { "core_id": 1, @@ -23145,7 +23255,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.242698425 + "ts": 0.24345515 }, { "core_id": 0, @@ -23155,7 +23265,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2428132 + "ts": 0.2435467 }, { "core_id": 0, @@ -23163,9 +23273,9 @@ "id": 6, "in_irq": true, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.242828225 + "ts": 0.24356165 }, { "core_id": 1, @@ -23173,9 +23283,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.242828225 + "ts": 0.24356165 }, { "core_id": 0, @@ -23183,7 +23293,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.24284085 + "ts": 0.2435743 }, { "core_id": 0, @@ -23191,18 +23301,18 @@ "id": 4, "in_irq": false, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.242856525 + "ts": 0.243590225 }, { - "addr": "0x3ffbb8b4", + "addr": "0x3ffbb078", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -23214,16 +23324,16 @@ "id": 512, "in_irq": false, "size": 18, - "ts": 0.24289185 + "ts": 0.24362545 }, { - "addr": "0x3ffbb8cc", + "addr": "0x3ffbb0b8", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -23235,7 +23345,7 @@ "id": 512, "in_irq": false, "size": 36, - "ts": 0.242926425 + "ts": 0.2436612 }, { "core_id": 0, @@ -23245,10 +23355,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.24294345 + "ts": 0.24368235 }, { "core_id": 0, @@ -23258,10 +23368,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.24295945 + "ts": 0.2436983 }, { "core_id": 0, @@ -23269,8 +23379,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (551) example: Task[0x3ffb926c]: allocated 36 bytes @ 0x3ffbb8cc\n", - "ts": 0.243029875 + "msg": "I (539) example: Task[0x3ffb8a34]: allocated 36 bytes @ 0x3ffbb0b8\n", + "ts": 0.243753075 }, { "core_id": 0, @@ -23278,8 +23388,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (551) example: Task[0x3ffb926c]: allocated 36 bytes @ 0x3ffbb8cc\n", - "ts": 0.243029875 + "msg": "I (539) example: Task[0x3ffb8a34]: allocated 36 bytes @ 0x3ffbb0b8\n", + "ts": 0.243753075 }, { "core_id": 0, @@ -23289,10 +23399,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12293072, + "xQueue": 12290968, "xTicksToWait": 0 }, - "ts": 0.243043425 + "ts": 0.24376655 }, { "core_id": 0, @@ -23300,9 +23410,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12295764 + "tid": 12293660 }, - "ts": 0.24306025 + "ts": 0.243779725 }, { "core_id": 1, @@ -23310,9 +23420,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12295764 + "tid": 12293660 }, - "ts": 0.24306025 + "ts": 0.243779725 }, { "core_id": 1, @@ -23322,7 +23432,7 @@ "params": { "irq_num": 31 }, - "ts": 0.24307655 + "ts": 0.243796025 }, { "core_id": 0, @@ -23332,7 +23442,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.2430874 + "ts": 0.243806875 }, { "core_id": 1, @@ -23340,7 +23450,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.24309815 + "ts": 0.2438177 }, { "core_id": 0, @@ -23350,7 +23460,7 @@ "params": { "irq_num": 30 }, - "ts": 0.243111875 + "ts": 0.243831575 }, { "core_id": 1, @@ -23358,9 +23468,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12295764 + "tid": 12293660 }, - "ts": 0.243122725 + "ts": 0.243842375 }, { "core_id": 0, @@ -23368,7 +23478,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.24313355 + "ts": 0.2438531 }, { "core_id": 1, @@ -23378,10 +23488,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12293072, + "xQueue": 12290968, "xTicksToWait": 4294967295 }, - "ts": 0.243145575 + "ts": 0.243865225 }, { "core_id": 0, @@ -23389,7 +23499,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.24315595 + "ts": 0.243876425 }, { "core_id": 1, @@ -23399,10 +23509,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.24316735 + "ts": 0.24388815 }, { "core_id": 1, @@ -23412,10 +23522,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.24318375 + "ts": 0.24390455 }, { "core_id": 1, @@ -23423,8 +23533,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (551) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb8cc\n", - "ts": 0.2432472 + "msg": "I (539) example: Task[0x3ffb961c]: free memory @ 0x3ffbb0b8\n", + "ts": 0.243952425 }, { "core_id": 1, @@ -23432,15 +23542,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (551) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb8cc\n", - "ts": 0.2432472 + "msg": "I (539) example: Task[0x3ffb961c]: free memory @ 0x3ffbb0b8\n", + "ts": 0.243952425 }, { - "addr": "0x3ffbb8cc", + "addr": "0x3ffbb0b8", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", + "0x4008da24", + "0x400d3c72", + "0x400880dc", "0x0", "0x0", "0x0", @@ -23454,7 +23564,7 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 0.24326835 + "ts": 0.24397795 }, { "core_id": 1, @@ -23464,7 +23574,7 @@ "params": { "irq_num": 31 }, - "ts": 0.24329535 + "ts": 0.24400535 }, { "core_id": 1, @@ -23472,7 +23582,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.243306775 + "ts": 0.244016775 }, { "core_id": 1, @@ -23480,7 +23590,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.24332335 + "ts": 0.244033325 }, { "core_id": 1, @@ -23490,7 +23600,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2436694 + "ts": 0.2444259 }, { "core_id": 1, @@ -23498,7 +23608,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.24368295 + "ts": 0.24443945 }, { "core_id": 1, @@ -23506,7 +23616,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.243698525 + "ts": 0.24445515 }, { "core_id": 0, @@ -23516,27 +23626,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2438132 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12298716 - }, - "ts": 0.243828325 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 6, - "in_irq": false, - "params": { - "tid": 12298716 - }, - "ts": 0.243828325 + "ts": 0.2445467 }, { "core_id": 0, @@ -23544,7 +23634,79 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.243840975 + "ts": 0.24456205 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.244577125 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2454259 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2454394 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.24545455 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2455467 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12296612 + }, + "ts": 0.2455617 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12296612 + }, + "ts": 0.2455617 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2455743 }, { "core_id": 0, @@ -23552,18 +23714,18 @@ "id": 4, "in_irq": false, "params": { - "tid": 12298716 + "tid": 12296612 }, - "ts": 0.24385665 + "ts": 0.245589975 }, { - "addr": "0x3ffbb8cc", + "addr": "0x3ffbb0b8", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -23575,16 +23737,16 @@ "id": 512, "in_irq": false, "size": 27, - "ts": 0.243892175 + "ts": 0.245626175 }, { - "addr": "0x3ffbb8ec", + "addr": "0x3ffbb0d8", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -23596,7 +23758,7 @@ "id": 512, "in_irq": false, "size": 54, - "ts": 0.24393085 + "ts": 0.2456618 }, { "core_id": 0, @@ -23606,10 +23768,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.24394775 + "ts": 0.24567885 }, { "core_id": 0, @@ -23619,10 +23781,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.243963875 + "ts": 0.245699 }, { "core_id": 0, @@ -23630,8 +23792,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (552) example: Task[0x3ffba9dc]: allocated 54 bytes @ 0x3ffbb8ec\n", - "ts": 0.244034325 + "msg": "I (541) example: Task[0x3ffba1a4]: allocated 54 bytes @ 0x3ffbb0d8\n", + "ts": 0.245753825 }, { "core_id": 0, @@ -23639,8 +23801,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (552) example: Task[0x3ffba9dc]: allocated 54 bytes @ 0x3ffbb8ec\n", - "ts": 0.244034325 + "msg": "I (541) example: Task[0x3ffba1a4]: allocated 54 bytes @ 0x3ffbb0d8\n", + "ts": 0.245753825 }, { "core_id": 0, @@ -23650,10 +23812,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12299072, + "xQueue": 12296968, "xTicksToWait": 0 }, - "ts": 0.244047925 + "ts": 0.245767425 }, { "core_id": 0, @@ -23661,9 +23823,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12301764 + "tid": 12299660 }, - "ts": 0.24406115 + "ts": 0.245780625 }, { "core_id": 1, @@ -23671,9 +23833,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12301764 + "tid": 12299660 }, - "ts": 0.24406115 + "ts": 0.245780625 }, { "core_id": 1, @@ -23683,7 +23845,7 @@ "params": { "irq_num": 31 }, - "ts": 0.244077475 + "ts": 0.245796975 }, { "core_id": 0, @@ -23693,7 +23855,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.244088325 + "ts": 0.24580785 }, { "core_id": 1, @@ -23701,7 +23863,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.244099075 + "ts": 0.24581865 }, { "core_id": 0, @@ -23711,7 +23873,7 @@ "params": { "irq_num": 30 }, - "ts": 0.2441128 + "ts": 0.24583235 }, { "core_id": 1, @@ -23719,9 +23881,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12301764 + "tid": 12299660 }, - "ts": 0.2441237 + "ts": 0.2458432 }, { "core_id": 0, @@ -23729,7 +23891,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.244134525 + "ts": 0.245854025 }, { "core_id": 1, @@ -23739,10 +23901,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12299072, + "xQueue": 12296968, "xTicksToWait": 4294967295 }, - "ts": 0.244146375 + "ts": 0.245865975 }, { "core_id": 0, @@ -23750,7 +23912,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.244157675 + "ts": 0.245877175 }, { "core_id": 1, @@ -23760,10 +23922,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.2441693 + "ts": 0.245889575 }, { "core_id": 1, @@ -23773,10 +23935,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.24418975 + "ts": 0.245905825 }, { "core_id": 1, @@ -23784,8 +23946,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (552) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb8ec\n", - "ts": 0.2442533 + "msg": "I (541) example: Task[0x3ffbad8c]: free memory @ 0x3ffbb0d8\n", + "ts": 0.2459536 }, { "core_id": 1, @@ -23793,15 +23955,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (552) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb8ec\n", - "ts": 0.2442533 + "msg": "I (541) example: Task[0x3ffbad8c]: free memory @ 0x3ffbb0d8\n", + "ts": 0.2459536 }, { - "addr": "0x3ffbb8ec", + "addr": "0x3ffbb0d8", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", + "0x4008da24", + "0x400d3c72", + "0x400880dc", "0x0", "0x0", "0x0", @@ -23815,7 +23977,7 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 0.2442745 + "ts": 0.24597885 }, { "core_id": 1, @@ -23825,7 +23987,7 @@ "params": { "irq_num": 31 }, - "ts": 0.2443014 + "ts": 0.24600625 }, { "core_id": 1, @@ -23833,7 +23995,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.244312825 + "ts": 0.246017675 }, { "core_id": 1, @@ -23841,7 +24003,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.2443294 + "ts": 0.246034225 }, { "core_id": 1, @@ -23851,7 +24013,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2446694 + "ts": 0.2464259 }, { "core_id": 1, @@ -23859,7 +24021,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.24468295 + "ts": 0.24643945 }, { "core_id": 1, @@ -23867,7 +24029,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.244698525 + "ts": 0.24645515 }, { "core_id": 0, @@ -23877,7 +24039,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2448132 + "ts": 0.2465467 }, { "core_id": 0, @@ -23885,7 +24047,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2448287 + "ts": 0.24656205 }, { "core_id": 0, @@ -23893,7 +24055,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.244843775 + "ts": 0.246577125 }, { "core_id": 1, @@ -23903,7 +24065,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2456694 + "ts": 0.2474259 }, { "core_id": 1, @@ -23911,7 +24073,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.245682925 + "ts": 0.2474394 }, { "core_id": 1, @@ -23919,7 +24081,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.245698325 + "ts": 0.24745455 }, { "core_id": 0, @@ -23929,7 +24091,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2458132 + "ts": 0.2475467 }, { "core_id": 0, @@ -23937,7 +24099,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2458287 + "ts": 0.2475621 }, { "core_id": 0, @@ -23945,7 +24107,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.245843775 + "ts": 0.247577425 }, { "core_id": 1, @@ -23955,7 +24117,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2466694 + "ts": 0.2484259 }, { "core_id": 1, @@ -23963,7 +24125,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.246682975 + "ts": 0.2484394 }, { "core_id": 1, @@ -23971,7 +24133,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.2466981 + "ts": 0.24845455 }, { "core_id": 0, @@ -23981,7 +24143,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2468132 + "ts": 0.2485467 }, { "core_id": 0, @@ -23989,7 +24151,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2468287 + "ts": 0.24856205 }, { "core_id": 0, @@ -23997,7 +24159,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.246843775 + "ts": 0.248577125 }, { "core_id": 1, @@ -24007,7 +24169,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2476694 + "ts": 0.2494259 }, { "core_id": 1, @@ -24015,7 +24177,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.247682925 + "ts": 0.2494394 }, { "core_id": 1, @@ -24023,7 +24185,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.247698075 + "ts": 0.249454675 }, { "core_id": 0, @@ -24033,7 +24195,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2478132 + "ts": 0.2495467 }, { "core_id": 0, @@ -24041,7 +24203,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2478286 + "ts": 0.24956205 }, { "core_id": 0, @@ -24049,7 +24211,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.247843825 + "ts": 0.24957715 }, { "core_id": 1, @@ -24059,7 +24221,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2486694 + "ts": 0.2504259 }, { "core_id": 1, @@ -24067,7 +24229,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.248682925 + "ts": 0.25043945 }, { "core_id": 1, @@ -24075,7 +24237,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.248698075 + "ts": 0.2504546 }, { "core_id": 0, @@ -24085,7 +24247,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2488132 + "ts": 0.2505467 }, { "core_id": 0, @@ -24093,7 +24255,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2488287 + "ts": 0.25056205 }, { "core_id": 0, @@ -24101,7 +24263,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.248843775 + "ts": 0.250577125 }, { "core_id": 1, @@ -24111,7 +24273,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2496694 + "ts": 0.2514259 }, { "core_id": 1, @@ -24119,7 +24281,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.249682925 + "ts": 0.2514394 }, { "core_id": 1, @@ -24127,7 +24289,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.249698325 + "ts": 0.25145455 }, { "core_id": 0, @@ -24137,7 +24299,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2498132 + "ts": 0.2515467 }, { "core_id": 0, @@ -24145,7 +24307,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2498287 + "ts": 0.2515621 }, { "core_id": 0, @@ -24153,7 +24315,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.249848325 + "ts": 0.251577425 }, { "core_id": 1, @@ -24163,7 +24325,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2506694 + "ts": 0.2524259 }, { "core_id": 1, @@ -24171,7 +24333,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.250682925 + "ts": 0.2524394 }, { "core_id": 1, @@ -24179,7 +24341,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.250698075 + "ts": 0.25245455 }, { "core_id": 0, @@ -24189,7 +24351,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2508132 + "ts": 0.2525467 }, { "core_id": 0, @@ -24197,7 +24359,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2508287 + "ts": 0.25256205 }, { "core_id": 0, @@ -24205,7 +24367,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.250843775 + "ts": 0.252577125 }, { "core_id": 1, @@ -24215,7 +24377,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2516694 + "ts": 0.2534259 }, { "core_id": 1, @@ -24223,7 +24385,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.251682925 + "ts": 0.253443075 }, { "core_id": 1, @@ -24231,7 +24393,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.251698325 + "ts": 0.2534582 }, { "core_id": 0, @@ -24241,7 +24403,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2518132 + "ts": 0.2535467 }, { "core_id": 0, @@ -24249,7 +24411,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2518287 + "ts": 0.25356205 }, { "core_id": 0, @@ -24257,7 +24419,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.251843775 + "ts": 0.253577125 }, { "core_id": 1, @@ -24267,7 +24429,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2526694 + "ts": 0.2544259 }, { "core_id": 1, @@ -24275,7 +24437,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.252682975 + "ts": 0.2544394 }, { "core_id": 1, @@ -24283,7 +24445,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.2526981 + "ts": 0.25445455 }, { "core_id": 0, @@ -24293,7 +24455,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2528132 + "ts": 0.2545467 }, { "core_id": 0, @@ -24301,7 +24463,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2528287 + "ts": 0.2545621 }, { "core_id": 0, @@ -24309,7 +24471,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.252843775 + "ts": 0.254577425 }, { "core_id": 1, @@ -24319,7 +24481,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2536694 + "ts": 0.2554259 }, { "core_id": 1, @@ -24327,7 +24489,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.253682925 + "ts": 0.2554394 }, { "core_id": 1, @@ -24335,7 +24497,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.253698075 + "ts": 0.25545455 }, { "core_id": 0, @@ -24345,7 +24507,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2538132 + "ts": 0.2555467 }, { "core_id": 0, @@ -24353,7 +24515,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2538286 + "ts": 0.25556205 }, { "core_id": 0, @@ -24361,7 +24523,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.253843825 + "ts": 0.255577125 }, { "core_id": 1, @@ -24371,7 +24533,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2546694 + "ts": 0.2564259 }, { "core_id": 1, @@ -24379,7 +24541,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.254682925 + "ts": 0.2564394 }, { "core_id": 1, @@ -24387,7 +24549,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.254698075 + "ts": 0.256454675 }, { "core_id": 0, @@ -24397,7 +24559,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2548132 + "ts": 0.2565467 }, { "core_id": 0, @@ -24405,7 +24567,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2548287 + "ts": 0.25656205 }, { "core_id": 0, @@ -24413,7 +24575,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.254843775 + "ts": 0.25657715 }, { "core_id": 1, @@ -24423,7 +24585,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2556694 + "ts": 0.2574259 }, { "core_id": 1, @@ -24431,7 +24593,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.255682925 + "ts": 0.25743945 }, { "core_id": 1, @@ -24439,7 +24601,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.255698325 + "ts": 0.2574546 }, { "core_id": 0, @@ -24449,7 +24611,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2558132 + "ts": 0.2575467 }, { "core_id": 0, @@ -24457,7 +24619,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2558287 + "ts": 0.25756205 }, { "core_id": 0, @@ -24465,7 +24627,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.255843775 + "ts": 0.257577125 }, { "core_id": 1, @@ -24475,7 +24637,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2566694 + "ts": 0.2584259 }, { "core_id": 1, @@ -24483,7 +24645,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.256682975 + "ts": 0.2584394 }, { "core_id": 1, @@ -24491,7 +24653,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.2566981 + "ts": 0.25845455 }, { "core_id": 0, @@ -24501,7 +24663,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2568132 + "ts": 0.2585467 }, { "core_id": 0, @@ -24509,7 +24671,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2568287 + "ts": 0.2585621 }, { "core_id": 0, @@ -24517,7 +24679,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.256843775 + "ts": 0.258577425 }, { "core_id": 1, @@ -24527,7 +24689,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2576694 + "ts": 0.2594259 }, { "core_id": 1, @@ -24535,7 +24697,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.257682925 + "ts": 0.2594394 }, { "core_id": 1, @@ -24543,7 +24705,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.257698075 + "ts": 0.25945455 }, { "core_id": 0, @@ -24553,7 +24715,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2578132 + "ts": 0.2595467 }, { "core_id": 0, @@ -24561,7 +24723,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2578286 + "ts": 0.25956205 }, { "core_id": 0, @@ -24569,7 +24731,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.257843825 + "ts": 0.259577125 }, { "core_id": 1, @@ -24579,7 +24741,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2586694 + "ts": 0.2604259 }, { "core_id": 1, @@ -24587,7 +24749,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.258682925 + "ts": 0.2604394 }, { "core_id": 1, @@ -24595,7 +24757,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.258698075 + "ts": 0.260454675 }, { "core_id": 0, @@ -24605,7 +24767,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2588132 + "ts": 0.2605467 }, { "core_id": 0, @@ -24613,7 +24775,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2588287 + "ts": 0.26056205 }, { "core_id": 0, @@ -24621,7 +24783,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.258843775 + "ts": 0.26057715 }, { "core_id": 1, @@ -24631,7 +24793,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2596694 + "ts": 0.2614259 }, { "core_id": 1, @@ -24639,7 +24801,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.259682925 + "ts": 0.26143945 }, { "core_id": 1, @@ -24647,7 +24809,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.259698325 + "ts": 0.2614546 }, { "core_id": 0, @@ -24657,7 +24819,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2598132 + "ts": 0.2615467 }, { "core_id": 0, @@ -24665,7 +24827,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2598287 + "ts": 0.26156205 }, { "core_id": 0, @@ -24673,7 +24835,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.259843775 + "ts": 0.261577125 }, { "core_id": 1, @@ -24683,7 +24845,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2606694 + "ts": 0.2624259 }, { "core_id": 1, @@ -24691,7 +24853,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.260682975 + "ts": 0.2624394 }, { "core_id": 1, @@ -24699,7 +24861,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.2606981 + "ts": 0.26245455 }, { "core_id": 0, @@ -24709,7 +24871,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2608132 + "ts": 0.2625467 }, { "core_id": 0, @@ -24717,7 +24879,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2608287 + "ts": 0.2625621 }, { "core_id": 0, @@ -24725,7 +24887,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.260843775 + "ts": 0.262577425 }, { "core_id": 1, @@ -24735,7 +24897,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2616694 + "ts": 0.2634259 }, { "core_id": 1, @@ -24743,7 +24905,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.261682925 + "ts": 0.2634394 }, { "core_id": 1, @@ -24751,7 +24913,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.261698075 + "ts": 0.26345455 }, { "core_id": 0, @@ -24761,7 +24923,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2618132 + "ts": 0.2635467 }, { "core_id": 0, @@ -24769,7 +24931,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2618286 + "ts": 0.26356205 }, { "core_id": 0, @@ -24777,7 +24939,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.261843825 + "ts": 0.263577125 }, { "core_id": 1, @@ -24787,7 +24949,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2626694 + "ts": 0.2644259 }, { "core_id": 1, @@ -24795,7 +24957,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.262682925 + "ts": 0.2644394 }, { "core_id": 1, @@ -24803,7 +24965,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.262698325 + "ts": 0.264454675 }, { "core_id": 0, @@ -24813,7 +24975,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2628132 + "ts": 0.2645467 }, { "core_id": 0, @@ -24821,7 +24983,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2628287 + "ts": 0.26456205 }, { "core_id": 0, @@ -24829,7 +24991,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.262843775 + "ts": 0.26457715 }, { "core_id": 1, @@ -24839,7 +25001,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2636694 + "ts": 0.2654259 }, { "core_id": 1, @@ -24847,7 +25009,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.263682975 + "ts": 0.265443675 }, { "core_id": 1, @@ -24855,7 +25017,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.2636981 + "ts": 0.265458825 }, { "core_id": 0, @@ -24865,7 +25027,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2638132 + "ts": 0.2655467 }, { "core_id": 0, @@ -24873,7 +25035,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2638287 + "ts": 0.26556205 }, { "core_id": 0, @@ -24881,7 +25043,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.263843775 + "ts": 0.265577125 }, { "core_id": 1, @@ -24891,7 +25053,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2646694 + "ts": 0.2664259 }, { "core_id": 1, @@ -24899,7 +25061,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.264682925 + "ts": 0.2664394 }, { "core_id": 1, @@ -24907,7 +25069,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.264698075 + "ts": 0.26645455 }, { "core_id": 0, @@ -24917,7 +25079,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2648132 + "ts": 0.2665467 }, { "core_id": 0, @@ -24925,7 +25087,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2648286 + "ts": 0.2665621 }, { "core_id": 0, @@ -24933,7 +25095,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.264843825 + "ts": 0.266577425 }, { "core_id": 1, @@ -24943,7 +25105,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2656694 + "ts": 0.2674259 }, { "core_id": 1, @@ -24951,7 +25113,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.265682925 + "ts": 0.2674394 }, { "core_id": 1, @@ -24959,7 +25121,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.265698075 + "ts": 0.26745455 }, { "core_id": 0, @@ -24969,7 +25131,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2658132 + "ts": 0.2675467 }, { "core_id": 0, @@ -24977,7 +25139,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2658287 + "ts": 0.26756205 }, { "core_id": 0, @@ -24985,7 +25147,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.265843775 + "ts": 0.267577125 }, { "core_id": 1, @@ -24995,7 +25157,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2666694 + "ts": 0.2684259 }, { "core_id": 1, @@ -25003,7 +25165,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.266682925 + "ts": 0.2684394 }, { "core_id": 1, @@ -25011,7 +25173,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.266698325 + "ts": 0.268454675 }, { "core_id": 0, @@ -25021,7 +25183,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2668132 + "ts": 0.2685467 }, { "core_id": 0, @@ -25029,7 +25191,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2668287 + "ts": 0.26856205 }, { "core_id": 0, @@ -25037,7 +25199,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.266843775 + "ts": 0.26857715 }, { "core_id": 1, @@ -25047,7 +25209,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2676694 + "ts": 0.2694259 }, { "core_id": 1, @@ -25055,7 +25217,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.267682975 + "ts": 0.26943945 }, { "core_id": 1, @@ -25063,7 +25225,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.2676981 + "ts": 0.2694546 }, { "core_id": 0, @@ -25073,7 +25235,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2678132 + "ts": 0.2695467 }, { "core_id": 0, @@ -25081,7 +25243,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2678287 + "ts": 0.26956205 }, { "core_id": 0, @@ -25089,7 +25251,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.267843775 + "ts": 0.269577125 }, { "core_id": 1, @@ -25099,7 +25261,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2686694 + "ts": 0.2704259 }, { "core_id": 1, @@ -25107,7 +25269,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.268682925 + "ts": 0.2704394 }, { "core_id": 1, @@ -25115,7 +25277,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.268698075 + "ts": 0.27045455 }, { "core_id": 0, @@ -25125,7 +25287,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2688132 + "ts": 0.2705467 }, { "core_id": 0, @@ -25133,7 +25295,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2688286 + "ts": 0.2705621 }, { "core_id": 0, @@ -25141,7 +25303,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.268843825 + "ts": 0.270577425 }, { "core_id": 1, @@ -25151,7 +25313,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2696694 + "ts": 0.2714259 }, { "core_id": 1, @@ -25159,7 +25321,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.269682925 + "ts": 0.2714394 }, { "core_id": 1, @@ -25167,7 +25329,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.269698075 + "ts": 0.27145455 }, { "core_id": 0, @@ -25177,7 +25339,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2698132 + "ts": 0.2715467 }, { "core_id": 0, @@ -25185,7 +25347,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2698287 + "ts": 0.27156205 }, { "core_id": 0, @@ -25193,7 +25355,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.269843775 + "ts": 0.271577125 }, { "core_id": 1, @@ -25203,7 +25365,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2706694 + "ts": 0.2724259 }, { "core_id": 1, @@ -25211,7 +25373,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.270682925 + "ts": 0.2724394 }, { "core_id": 1, @@ -25219,7 +25381,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.270698325 + "ts": 0.272454675 }, { "core_id": 0, @@ -25229,59 +25391,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2708132 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.2708287 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.270843775 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2716694 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.271682975 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.2716981 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2718132 + "ts": 0.2725467 }, { "core_id": 0, @@ -25289,9 +25399,9 @@ "id": 6, "in_irq": true, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.271828325 + "ts": 0.272561675 }, { "core_id": 1, @@ -25299,9 +25409,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.271828325 + "ts": 0.272561675 }, { "core_id": 0, @@ -25309,7 +25419,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.271840975 + "ts": 0.27257425 }, { "core_id": 0, @@ -25317,9 +25427,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.27185665 + "ts": 0.272589925 }, { "core_id": 0, @@ -25330,9 +25440,9 @@ "eAction": 2, "pulPreviousNotificationValue": 0, "ulValue": 0, - "xTaskToNotify": 12254080 + "xTaskToNotify": 12274964 }, - "ts": 0.27187515 + "ts": 0.2726081 }, { "core_id": 0, @@ -25340,9 +25450,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12254080 + "tid": 12274964 }, - "ts": 0.271886225 + "ts": 0.272619125 }, { "core_id": 1, @@ -25350,9 +25460,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12254080 + "tid": 12274964 }, - "ts": 0.271886225 + "ts": 0.272619125 }, { "core_id": 0, @@ -25362,7 +25472,7 @@ "params": { "xTicksToDelay": 100 }, - "ts": 0.271899375 + "ts": 0.272632225 }, { "core_id": 0, @@ -25372,7 +25482,7 @@ "params": { "irq_num": 30 }, - "ts": 0.271915925 + "ts": 0.272648775 }, { "core_id": 0, @@ -25380,7 +25490,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2719273 + "ts": 0.27266015 }, { "core_id": 0, @@ -25388,9 +25498,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12254080 + "tid": 12274964 }, - "ts": 0.27194425 + "ts": 0.2726771 }, { "core_id": 0, @@ -25401,7 +25511,7 @@ "xClearCountOnExit": 0, "xTicksToWait": 4294967295 }, - "ts": 0.271962125 + "ts": 0.27269085 }, { "core_id": 0, @@ -25411,10 +25521,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.271978075 + "ts": 0.272706775 }, { "core_id": 0, @@ -25424,10 +25534,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.271993975 + "ts": 0.2727228 }, { "core_id": 0, @@ -25435,8 +25545,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (580) example: Got notify val 1\n", - "ts": 0.2720432 + "msg": "I (568) example: Got notify val 1\n", + "ts": 0.272764375 }, { "core_id": 0, @@ -25444,8 +25554,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (580) example: Got notify val 1\n", - "ts": 0.2720432 + "msg": "I (568) example: Got notify val 1\n", + "ts": 0.272764375 }, { "core_id": 0, @@ -25455,10 +25565,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.2720595 + "ts": 0.272784725 }, { "core_id": 0, @@ -25468,10 +25578,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.27207545 + "ts": 0.27280065 }, { "core_id": 0, @@ -25479,8 +25589,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (580) example: Wait notify 1\n", - "ts": 0.2721198 + "msg": "I (568) example: Wait notify 1\n", + "ts": 0.2728372 }, { "core_id": 0, @@ -25488,8 +25598,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (580) example: Wait notify 1\n", - "ts": 0.2721198 + "msg": "I (568) example: Wait notify 1\n", + "ts": 0.2728372 }, { "core_id": 0, @@ -25499,7 +25609,7 @@ "params": { "irq_num": 30 }, - "ts": 0.272138175 + "ts": 0.272855425 }, { "core_id": 0, @@ -25507,7 +25617,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.272149575 + "ts": 0.272866775 }, { "core_id": 0, @@ -25515,7 +25625,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.272165625 + "ts": 0.2728827 }, { "core_id": 1, @@ -25525,7 +25635,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2726694 + "ts": 0.2734259 }, { "core_id": 1, @@ -25533,7 +25643,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.272682925 + "ts": 0.2734394 }, { "core_id": 1, @@ -25541,7 +25651,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.272698075 + "ts": 0.273454675 }, { "core_id": 0, @@ -25551,7 +25661,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2728132 + "ts": 0.2735467 }, { "core_id": 0, @@ -25559,9 +25669,9 @@ "id": 6, "in_irq": true, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.272828325 + "ts": 0.273561675 }, { "core_id": 1, @@ -25569,9 +25679,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.272828325 + "ts": 0.273561675 }, { "core_id": 0, @@ -25579,7 +25689,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.272840975 + "ts": 0.27357425 }, { "core_id": 0, @@ -25587,9 +25697,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.272856775 + "ts": 0.273589925 }, { "core_id": 0, @@ -25600,9 +25710,9 @@ "eAction": 2, "pulPreviousNotificationValue": 0, "ulValue": 0, - "xTaskToNotify": 12254080 + "xTaskToNotify": 12274964 }, - "ts": 0.2728712 + "ts": 0.2736043 }, { "core_id": 0, @@ -25610,9 +25720,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12254080 + "tid": 12274964 }, - "ts": 0.2728822 + "ts": 0.273615325 }, { "core_id": 1, @@ -25620,9 +25730,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12254080 + "tid": 12274964 }, - "ts": 0.2728822 + "ts": 0.273615325 }, { "core_id": 0, @@ -25632,7 +25742,7 @@ "params": { "xTicksToDelay": 100 }, - "ts": 0.272895325 + "ts": 0.273628425 }, { "core_id": 0, @@ -25642,7 +25752,7 @@ "params": { "irq_num": 30 }, - "ts": 0.272911925 + "ts": 0.273644975 }, { "core_id": 0, @@ -25650,7 +25760,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2729233 + "ts": 0.27365635 }, { "core_id": 0, @@ -25658,9 +25768,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12254080 + "tid": 12274964 }, - "ts": 0.27294025 + "ts": 0.2736733 }, { "core_id": 0, @@ -25671,7 +25781,7 @@ "xClearCountOnExit": 0, "xTicksToWait": 4294967295 }, - "ts": 0.27295395 + "ts": 0.27368705 }, { "core_id": 0, @@ -25681,10 +25791,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.272969875 + "ts": 0.273702975 }, { "core_id": 0, @@ -25694,10 +25804,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.272985925 + "ts": 0.273719 }, { "core_id": 0, @@ -25705,8 +25815,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (581) example: Got notify val 1\n", - "ts": 0.273035525 + "msg": "I (569) example: Got notify val 1\n", + "ts": 0.273756475 }, { "core_id": 0, @@ -25714,8 +25824,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (581) example: Got notify val 1\n", - "ts": 0.273035525 + "msg": "I (569) example: Got notify val 1\n", + "ts": 0.273756475 }, { "core_id": 0, @@ -25725,10 +25835,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.273051825 + "ts": 0.27377665 }, { "core_id": 0, @@ -25738,10 +25848,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.273067775 + "ts": 0.273792575 }, { "core_id": 0, @@ -25749,8 +25859,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (581) example: Wait notify 2\n", - "ts": 0.27311225 + "msg": "I (569) example: Wait notify 2\n", + "ts": 0.273829125 }, { "core_id": 0, @@ -25758,8 +25868,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (581) example: Wait notify 2\n", - "ts": 0.27311225 + "msg": "I (569) example: Wait notify 2\n", + "ts": 0.273829125 }, { "core_id": 0, @@ -25769,7 +25879,7 @@ "params": { "irq_num": 30 }, - "ts": 0.273130625 + "ts": 0.27384735 }, { "core_id": 0, @@ -25777,7 +25887,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.273142025 + "ts": 0.2738587 }, { "core_id": 0, @@ -25785,7 +25895,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.273158075 + "ts": 0.273874625 }, { "core_id": 1, @@ -25795,7 +25905,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2736694 + "ts": 0.2744259 }, { "core_id": 1, @@ -25803,7 +25913,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.273682925 + "ts": 0.2744394 }, { "core_id": 1, @@ -25811,7 +25921,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.273698075 + "ts": 0.274454675 }, { "core_id": 0, @@ -25821,27 +25931,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2738132 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12298716 - }, - "ts": 0.273828325 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12298716 - }, - "ts": 0.273828325 + "ts": 0.2745467 }, { "core_id": 0, @@ -25849,7 +25939,79 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.273840975 + "ts": 0.27456205 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.27457715 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2754259 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.27543945 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.2754546 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2755467 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12296612 + }, + "ts": 0.27556165 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12296612 + }, + "ts": 0.27556165 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.2755743 }, { "core_id": 0, @@ -25857,9 +26019,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12298716 + "tid": 12296612 }, - "ts": 0.273856775 + "ts": 0.275589975 }, { "core_id": 0, @@ -25870,9 +26032,9 @@ "eAction": 2, "pulPreviousNotificationValue": 0, "ulValue": 0, - "xTaskToNotify": 12254080 + "xTaskToNotify": 12274964 }, - "ts": 0.2738712 + "ts": 0.2756044 }, { "core_id": 0, @@ -25880,9 +26042,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12254080 + "tid": 12274964 }, - "ts": 0.2738822 + "ts": 0.2756154 }, { "core_id": 1, @@ -25890,9 +26052,9 @@ "id": 6, "in_irq": false, "params": { - "tid": 12254080 + "tid": 12274964 }, - "ts": 0.2738822 + "ts": 0.2756154 }, { "core_id": 0, @@ -25902,7 +26064,7 @@ "params": { "xTicksToDelay": 100 }, - "ts": 0.273895325 + "ts": 0.27562855 }, { "core_id": 0, @@ -25912,7 +26074,7 @@ "params": { "irq_num": 30 }, - "ts": 0.273911925 + "ts": 0.275645125 }, { "core_id": 0, @@ -25920,7 +26082,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2739233 + "ts": 0.275656475 }, { "core_id": 0, @@ -25928,9 +26090,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12254080 + "tid": 12274964 }, - "ts": 0.27394025 + "ts": 0.275673425 }, { "core_id": 0, @@ -25941,7 +26103,7 @@ "xClearCountOnExit": 0, "xTicksToWait": 4294967295 }, - "ts": 0.27395395 + "ts": 0.27568725 }, { "core_id": 0, @@ -25951,10 +26113,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.273969875 + "ts": 0.27570325 }, { "core_id": 0, @@ -25964,10 +26126,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.273985925 + "ts": 0.275719275 }, { "core_id": 0, @@ -25975,8 +26137,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (582) example: Got notify val 1\n", - "ts": 0.274031175 + "msg": "I (571) example: Got notify val 1\n", + "ts": 0.27575685 }, { "core_id": 0, @@ -25984,8 +26146,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (582) example: Got notify val 1\n", - "ts": 0.274031175 + "msg": "I (571) example: Got notify val 1\n", + "ts": 0.27575685 }, { "core_id": 0, @@ -25995,10 +26157,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.329656225 + "ts": 0.329911225 }, { "core_id": 0, @@ -26006,7 +26168,7 @@ "id": 11, "in_irq": false, "params": {}, - "ts": 0.32966495 + "ts": 0.32991995 }, { "core_id": 1, @@ -26014,7 +26176,7 @@ "id": 11, "in_irq": false, "params": {}, - "ts": 0.32966495 + "ts": 0.32991995 } ], "streams": { @@ -26141,12 +26303,13 @@ "xTimerPendFunctionCallFromISR": 163 }, "system": { + "SYS_DATA_SAMPLE": 23, "SYS_IDLE": 17, "SYS_INIT": 24, "SYS_ISR_ENTER": 2, "SYS_ISR_EXIT": 3, "SYS_ISR_TO_SCHEDULER": 18, - "SYS_MODULEDESC": 24, + "SYS_MODULEDESC": 22, "SYS_NAME_RESOURCE": 25, "SYS_NOP": 0, "SYS_NUMMODULES": 27, diff --git a/tools/esp_app_trace/test/sysview/expected_output_mcore b/tools/esp_app_trace/test/sysview/expected_output_mcore index 7e621cef33..aade7f94cc 100644 --- a/tools/esp_app_trace/test/sysview/expected_output_mcore +++ b/tools/esp_app_trace/test/sysview/expected_output_mcore @@ -1,3562 +1,3749 @@ -EVENT[0]: 0.000000000 - core[0].svTraceStart(10), plen 0: [] -EVENT[1]: 0.000006625 - core[0].svInit(24), plen 14: [sys_freq: 40000000, cpu_freq: 160000000, ram_base: 1061158912, id_shift: 0] -EVENT[2]: 0.000018550 - core[0].svSysDesc(14), plen 0: [desc: N=FreeRTOS Application,D=esp32,C=xtensa,O=FreeRTOS] -EVENT[3]: 0.000027675 - core[0].svSysDesc(14), plen 0: [desc: I#5=SysTick] -EVENT[4]: 0.000049775 - core[0].svSysDesc(14), plen 0: [desc: I#6=WIFI_MAC] -EVENT[5]: 0.000063875 - core[0].svSysDesc(14), plen 0: [desc: I#7=WIFI_NMI] -EVENT[6]: 0.000073800 - core[0].svSysDesc(14), plen 0: [desc: I#8=WIFI_BB] -EVENT[7]: 0.000087500 - core[0].svSysDesc(14), plen 0: [desc: I#9=BT_MAC] -EVENT[8]: 0.000101550 - core[0].svSysDesc(14), plen 0: [desc: I#10=BT_BB] -EVENT[9]: 0.000112375 - core[0].svSysDesc(14), plen 0: [desc: I#11=BT_BB_NMI] -EVENT[10]: 0.000122300 - core[0].svSysDesc(14), plen 0: [desc: I#12=RWBT] -EVENT[11]: 0.000132275 - core[0].svSysDesc(14), plen 0: [desc: I#13=RWBLE] -EVENT[12]: 0.000146800 - core[0].svSysDesc(14), plen 0: [desc: I#14=RWBT_NMI] -EVENT[13]: 0.000157600 - core[0].svSysDesc(14), plen 0: [desc: I#15=RWBLE_NMI] -EVENT[14]: 0.000171875 - core[0].svSysDesc(14), plen 0: [desc: I#16=SLC0] -EVENT[15]: 0.000189525 - core[0].svSysDesc(14), plen 0: [desc: I#17=SLC1] -EVENT[16]: 0.000199650 - core[0].svSysDesc(14), plen 0: [desc: I#18=UHCI0] -EVENT[17]: 0.000209600 - core[0].svSysDesc(14), plen 0: [desc: I#19=UHCI1] -EVENT[18]: 0.000224875 - core[0].svSysDesc(14), plen 0: [desc: I#20=TG0_T0_LEVEL] -EVENT[19]: 0.000236275 - core[0].svSysDesc(14), plen 0: [desc: I#21=TG0_T1_LEVEL] -EVENT[20]: 0.000251975 - core[0].svSysDesc(14), plen 0: [desc: I#22=TG0_WDT_LEVEL] -EVENT[21]: 0.000263750 - core[0].svSysDesc(14), plen 0: [desc: I#23=TG0_LACT_LEVEL] -EVENT[22]: 0.000279150 - core[0].svSysDesc(14), plen 0: [desc: I#24=TG1_T0_LEVEL] -EVENT[23]: 0.000294550 - core[0].svSysDesc(14), plen 0: [desc: I#25=TG1_T1_LEVEL] -EVENT[24]: 0.000310125 - core[0].svSysDesc(14), plen 0: [desc: I#26=TG1_WDT_LEVEL] -EVENT[25]: 0.000322075 - core[0].svSysDesc(14), plen 0: [desc: I#27=TG1_LACT_LEVEL] -EVENT[26]: 0.000331975 - core[0].svSysDesc(14), plen 0: [desc: I#28=GPIO] -EVENT[27]: 0.000350900 - core[0].svSysDesc(14), plen 0: [desc: I#29=GPIO_NMI] -EVENT[28]: 0.000361800 - core[0].svSysDesc(14), plen 0: [desc: I#30=FROM_CPU0] -EVENT[29]: 0.000376500 - core[0].svSysDesc(14), plen 0: [desc: I#31=FROM_CPU1] -EVENT[30]: 0.000387300 - core[0].svSysDesc(14), plen 0: [desc: I#32=FROM_CPU2] -EVENT[31]: 0.000402000 - core[0].svSysDesc(14), plen 0: [desc: I#33=FROM_CPU3] -EVENT[32]: 0.000415750 - core[0].svSysDesc(14), plen 0: [desc: I#34=SPI0] -EVENT[33]: 0.000425500 - core[0].svSysDesc(14), plen 0: [desc: I#35=SPI1] -EVENT[34]: 0.000435275 - core[0].svSysDesc(14), plen 0: [desc: I#36=SPI2] -EVENT[35]: 0.000445025 - core[0].svSysDesc(14), plen 0: [desc: I#37=SPI3] -EVENT[36]: 0.000458825 - core[0].svSysDesc(14), plen 0: [desc: I#38=I2S0] -EVENT[37]: 0.000468575 - core[0].svSysDesc(14), plen 0: [desc: I#39=I2S1] -EVENT[38]: 0.000478575 - core[0].svSysDesc(14), plen 0: [desc: I#40=UART0] -EVENT[39]: 0.000492500 - core[0].svSysDesc(14), plen 0: [desc: I#41=UART1] -EVENT[40]: 0.000506375 - core[0].svSysDesc(14), plen 0: [desc: I#42=UART2] -EVENT[41]: 0.000517125 - core[0].svSysDesc(14), plen 0: [desc: I#43=SDIO_HOST] -EVENT[42]: 0.000527475 - core[0].svSysDesc(14), plen 0: [desc: I#44=ETH_MAC] -EVENT[43]: 0.000541600 - core[0].svSysDesc(14), plen 0: [desc: I#45=PWM0] -EVENT[44]: 0.000555300 - core[0].svSysDesc(14), plen 0: [desc: I#46=PWM1] -EVENT[45]: 0.000565950 - core[0].svSysDesc(14), plen 0: [desc: I#47=RESERVED] -EVENT[46]: 0.000576550 - core[0].svSysDesc(14), plen 0: [desc: I#48=RESERVED] -EVENT[47]: 0.000590325 - core[0].svSysDesc(14), plen 0: [desc: I#49=LEDC] -EVENT[48]: 0.000604225 - core[0].svSysDesc(14), plen 0: [desc: I#50=EFUSE] -EVENT[49]: 0.000618075 - core[0].svSysDesc(14), plen 0: [desc: I#51=TWAI] -EVENT[50]: 0.000628650 - core[0].svSysDesc(14), plen 0: [desc: I#52=RTC_CORE] -EVENT[51]: 0.000638225 - core[0].svSysDesc(14), plen 0: [desc: I#53=RMT] -EVENT[52]: 0.000648075 - core[0].svSysDesc(14), plen 0: [desc: I#54=PCNT] -EVENT[53]: 0.000663050 - core[0].svSysDesc(14), plen 0: [desc: I#55=I2C_EXT0] -EVENT[54]: 0.000675200 - core[0].svSysDesc(14), plen 0: [desc: I#56=I2C_EXT1] -EVENT[55]: 0.000690175 - core[0].svSysDesc(14), plen 0: [desc: I#57=RSA] -EVENT[56]: 0.000705900 - core[0].svSysDesc(14), plen 0: [desc: I#58=SPI1_DMA] -EVENT[57]: 0.000718025 - core[0].svSysDesc(14), plen 0: [desc: I#59=SPI2_DMA] -EVENT[58]: 0.000730375 - core[0].svSysDesc(14), plen 0: [desc: I#60=SPI3_DMA] -EVENT[59]: 0.000741300 - core[0].svSysDesc(14), plen 0: [desc: I#61=WDT] -EVENT[60]: 0.000761650 - core[0].svSysDesc(14), plen 0: [desc: I#62=TIMER1] -EVENT[61]: 0.000773525 - core[0].svSysDesc(14), plen 0: [desc: I#63=TIMER2] -EVENT[62]: 0.000786275 - core[0].svSysDesc(14), plen 0: [desc: I#64=TG0_T0_EDGE] -EVENT[63]: 0.000806925 - core[0].svSysDesc(14), plen 0: [desc: I#65=TG0_T1_EDGE] -EVENT[64]: 0.000819950 - core[0].svSysDesc(14), plen 0: [desc: I#66=TG0_WDT_EDGE] -EVENT[65]: 0.000837025 - core[0].svSysDesc(14), plen 0: [desc: I#67=TG0_LACT_EDGE] -EVENT[66]: 0.000850025 - core[0].svSysDesc(14), plen 0: [desc: I#68=TG1_T0_EDGE] -EVENT[67]: 0.000863125 - core[0].svSysDesc(14), plen 0: [desc: I#69=TG1_T1_EDGE] -EVENT[68]: 0.000880425 - core[0].svSysDesc(14), plen 0: [desc: I#70=TG1_WDT_EDGE] -EVENT[69]: 0.000893750 - core[0].svSysDesc(14), plen 0: [desc: I#71=TG1_LACT_EDGE] -EVENT[70]: 0.000909350 - core[0].svSysDesc(14), plen 0: [desc: I#72=MMU_IA] -EVENT[71]: 0.000925000 - core[0].svSysDesc(14), plen 0: [desc: I#73=MPU_IA] -EVENT[72]: 0.000937125 - core[0].svSysDesc(14), plen 0: [desc: I#74=CACHE_IA] -EVENT[73]: 0.000945400 - core[0].svSysTimeUs(13), plen 0: [time: 10000] -EVENT[74]: 0.001060300 - core[0].svTaskInfo(9), plen 0: [tid: 12253204, prio: 24, name: ipc0] -EVENT[75]: 0.001065550 - core[0].svStackInfo(21), plen 0: [tid: 12253204, base: 1073410064, sz: 1344, unused: 0] -EVENT[76]: 0.001174450 - core[0].svTaskInfo(9), plen 0: [tid: 12253560, prio: 24, name: ipc1] -EVENT[77]: 0.001179775 - core[0].svStackInfo(21), plen 0: [tid: 12253560, base: 1073431024, sz: 1344, unused: 0] -EVENT[78]: 0.001331775 - core[0].svTaskInfo(9), plen 0: [tid: 12254080, prio: 1, name: main] -EVENT[79]: 0.001337150 - core[0].svStackInfo(21), plen 0: [tid: 12254080, base: 1073433076, sz: 1916, unused: 0] -EVENT[80]: 0.001344450 - core[0].svNumModules(27), plen 1: [mod_cnt: 0] -EVENT[81]: 0.001351275 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[82]: 0.001362850 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[83]: 0.001373800 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[84]: 0.001384750 - core[0].svTaskStartReady(6), plen 0: [tid: 12254080] -EVENT[85]: 0.001399850 - core[0].svIsrExit(3), plen 0: [] -EVENT[86]: 0.001410650 - core[1].svIdle(17), plen 0: [] -EVENT[87]: 0.001422175 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[88]: 0.001433675 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[89]: 0.001450025 - core[0].svTaskStartExec(4), plen 0: [tid: 12254080] -EVENT[90]: 0.001476900 - core[0].svModuleDesc(22), plen 0: [mod_id: 0, evt_off: 512, desc: M=ESP32 SystemView Heap Tracing Module] -EVENT[91]: 0.001532525 - core[0].esp_sysview_heap_trace_alloc(512), plen 40: [addr: 1073443032, size: 8, callers: [1074274287, 1074274340, 1074325096, 1074621423, 1074686267, 1074302356, 0, 0, 0, 0]] -[0.001532525] HEAP: Allocated 8 bytes @ 0x3ffb70d8 from task "main" on core 0 by: +EVENT[0]: 0.000000000 - core[0].svNop(0), plen 0: [] +EVENT[1]: 0.000000000 - core[0].svNop(0), plen 0: [] +EVENT[2]: 0.000000000 - core[0].svNop(0), plen 0: [] +EVENT[3]: 0.000000000 - core[0].svNop(0), plen 0: [] +EVENT[4]: 0.000000000 - core[0].svNop(0), plen 0: [] +EVENT[5]: 0.000000000 - core[0].svTraceStart(10), plen 0: [] +EVENT[6]: 0.000000000 - core[1].svNop(0), plen 0: [] +EVENT[7]: 0.000000000 - core[1].svNop(0), plen 0: [] +EVENT[8]: 0.000000000 - core[1].svNop(0), plen 0: [] +EVENT[9]: 0.000000000 - core[1].svNop(0), plen 0: [] +EVENT[10]: 0.000000000 - core[1].svNop(0), plen 0: [] +EVENT[11]: 0.000000000 - core[1].svTraceStart(10), plen 0: [] +EVENT[12]: 0.000006650 - core[0].svInit(24), plen 14: [sys_freq: 40000000, cpu_freq: 160000000, ram_base: 1061158912, id_shift: 0] +EVENT[13]: 0.000006650 - core[1].svInit(24), plen 14: [sys_freq: 40000000, cpu_freq: 160000000, ram_base: 1061158912, id_shift: 0] +EVENT[14]: 0.000018600 - core[0].svSysDesc(14), plen 0: [desc: N=FreeRTOS Application,D=esp32,C=xtensa,O=FreeRTOS] +EVENT[15]: 0.000018600 - core[1].svSysDesc(14), plen 0: [desc: N=FreeRTOS Application,D=esp32,C=xtensa,O=FreeRTOS] +EVENT[16]: 0.000027750 - core[0].svSysDesc(14), plen 0: [desc: I#5=SysTick] +EVENT[17]: 0.000027750 - core[1].svSysDesc(14), plen 0: [desc: I#5=SysTick] +EVENT[18]: 0.000045900 - core[0].svSysDesc(14), plen 0: [desc: I#6=WIFI_MAC] +EVENT[19]: 0.000045900 - core[1].svSysDesc(14), plen 0: [desc: I#6=WIFI_MAC] +EVENT[20]: 0.000060025 - core[0].svSysDesc(14), plen 0: [desc: I#7=WIFI_NMI] +EVENT[21]: 0.000060025 - core[1].svSysDesc(14), plen 0: [desc: I#7=WIFI_NMI] +EVENT[22]: 0.000069975 - core[0].svSysDesc(14), plen 0: [desc: I#8=WIFI_BB] +EVENT[23]: 0.000069975 - core[1].svSysDesc(14), plen 0: [desc: I#8=WIFI_BB] +EVENT[24]: 0.000079725 - core[0].svSysDesc(14), plen 0: [desc: I#9=BT_MAC] +EVENT[25]: 0.000079725 - core[1].svSysDesc(14), plen 0: [desc: I#9=BT_MAC] +EVENT[26]: 0.000093800 - core[0].svSysDesc(14), plen 0: [desc: I#10=BT_BB] +EVENT[27]: 0.000093800 - core[1].svSysDesc(14), plen 0: [desc: I#10=BT_BB] +EVENT[28]: 0.000108600 - core[0].svSysDesc(14), plen 0: [desc: I#11=BT_BB_NMI] +EVENT[29]: 0.000108600 - core[1].svSysDesc(14), plen 0: [desc: I#11=BT_BB_NMI] +EVENT[30]: 0.000118550 - core[0].svSysDesc(14), plen 0: [desc: I#12=RWBT] +EVENT[31]: 0.000118550 - core[1].svSysDesc(14), plen 0: [desc: I#12=RWBT] +EVENT[32]: 0.000128550 - core[0].svSysDesc(14), plen 0: [desc: I#13=RWBLE] +EVENT[33]: 0.000128550 - core[1].svSysDesc(14), plen 0: [desc: I#13=RWBLE] +EVENT[34]: 0.000143075 - core[0].svSysDesc(14), plen 0: [desc: I#14=RWBT_NMI] +EVENT[35]: 0.000143075 - core[1].svSysDesc(14), plen 0: [desc: I#14=RWBT_NMI] +EVENT[36]: 0.000153900 - core[0].svSysDesc(14), plen 0: [desc: I#15=RWBLE_NMI] +EVENT[37]: 0.000153900 - core[1].svSysDesc(14), plen 0: [desc: I#15=RWBLE_NMI] +EVENT[38]: 0.000168200 - core[0].svSysDesc(14), plen 0: [desc: I#16=SLC0] +EVENT[39]: 0.000168200 - core[1].svSysDesc(14), plen 0: [desc: I#16=SLC0] +EVENT[40]: 0.000181925 - core[0].svSysDesc(14), plen 0: [desc: I#17=SLC1] +EVENT[41]: 0.000181925 - core[1].svSysDesc(14), plen 0: [desc: I#17=SLC1] +EVENT[42]: 0.000195875 - core[0].svSysDesc(14), plen 0: [desc: I#18=UHCI0] +EVENT[43]: 0.000195875 - core[1].svSysDesc(14), plen 0: [desc: I#18=UHCI0] +EVENT[44]: 0.000205850 - core[0].svSysDesc(14), plen 0: [desc: I#19=UHCI1] +EVENT[45]: 0.000205850 - core[1].svSysDesc(14), plen 0: [desc: I#19=UHCI1] +EVENT[46]: 0.000221150 - core[0].svSysDesc(14), plen 0: [desc: I#20=TG0_T0_LEVEL] +EVENT[47]: 0.000221150 - core[1].svSysDesc(14), plen 0: [desc: I#20=TG0_T0_LEVEL] +EVENT[48]: 0.000232575 - core[0].svSysDesc(14), plen 0: [desc: I#21=TG0_T1_LEVEL] +EVENT[49]: 0.000232575 - core[1].svSysDesc(14), plen 0: [desc: I#21=TG0_T1_LEVEL] +EVENT[50]: 0.000248275 - core[0].svSysDesc(14), plen 0: [desc: I#22=TG0_WDT_LEVEL] +EVENT[51]: 0.000248275 - core[1].svSysDesc(14), plen 0: [desc: I#22=TG0_WDT_LEVEL] +EVENT[52]: 0.000260075 - core[0].svSysDesc(14), plen 0: [desc: I#23=TG0_LACT_LEVEL] +EVENT[53]: 0.000260075 - core[1].svSysDesc(14), plen 0: [desc: I#23=TG0_LACT_LEVEL] +EVENT[54]: 0.000275525 - core[0].svSysDesc(14), plen 0: [desc: I#24=TG1_T0_LEVEL] +EVENT[55]: 0.000275525 - core[1].svSysDesc(14), plen 0: [desc: I#24=TG1_T0_LEVEL] +EVENT[56]: 0.000287000 - core[0].svSysDesc(14), plen 0: [desc: I#25=TG1_T1_LEVEL] +EVENT[57]: 0.000287000 - core[1].svSysDesc(14), plen 0: [desc: I#25=TG1_T1_LEVEL] +EVENT[58]: 0.000306525 - core[0].svSysDesc(14), plen 0: [desc: I#26=TG1_WDT_LEVEL] +EVENT[59]: 0.000306525 - core[1].svSysDesc(14), plen 0: [desc: I#26=TG1_WDT_LEVEL] +EVENT[60]: 0.000318500 - core[0].svSysDesc(14), plen 0: [desc: I#27=TG1_LACT_LEVEL] +EVENT[61]: 0.000318500 - core[1].svSysDesc(14), plen 0: [desc: I#27=TG1_LACT_LEVEL] +EVENT[62]: 0.000328425 - core[0].svSysDesc(14), plen 0: [desc: I#28=GPIO] +EVENT[63]: 0.000328425 - core[1].svSysDesc(14), plen 0: [desc: I#28=GPIO] +EVENT[64]: 0.000347375 - core[0].svSysDesc(14), plen 0: [desc: I#29=GPIO_NMI] +EVENT[65]: 0.000347375 - core[1].svSysDesc(14), plen 0: [desc: I#29=GPIO_NMI] +EVENT[66]: 0.000358275 - core[0].svSysDesc(14), plen 0: [desc: I#30=FROM_CPU0] +EVENT[67]: 0.000358275 - core[1].svSysDesc(14), plen 0: [desc: I#30=FROM_CPU0] +EVENT[68]: 0.000369025 - core[0].svSysDesc(14), plen 0: [desc: I#31=FROM_CPU1] +EVENT[69]: 0.000369025 - core[1].svSysDesc(14), plen 0: [desc: I#31=FROM_CPU1] +EVENT[70]: 0.000383800 - core[0].svSysDesc(14), plen 0: [desc: I#32=FROM_CPU2] +EVENT[71]: 0.000383800 - core[1].svSysDesc(14), plen 0: [desc: I#32=FROM_CPU2] +EVENT[72]: 0.000394550 - core[0].svSysDesc(14), plen 0: [desc: I#33=FROM_CPU3] +EVENT[73]: 0.000394550 - core[1].svSysDesc(14), plen 0: [desc: I#33=FROM_CPU3] +EVENT[74]: 0.000408325 - core[0].svSysDesc(14), plen 0: [desc: I#34=SPI0] +EVENT[75]: 0.000408325 - core[1].svSysDesc(14), plen 0: [desc: I#34=SPI0] +EVENT[76]: 0.000422050 - core[0].svSysDesc(14), plen 0: [desc: I#35=SPI1] +EVENT[77]: 0.000422050 - core[1].svSysDesc(14), plen 0: [desc: I#35=SPI1] +EVENT[78]: 0.000431850 - core[0].svSysDesc(14), plen 0: [desc: I#36=SPI2] +EVENT[79]: 0.000431850 - core[1].svSysDesc(14), plen 0: [desc: I#36=SPI2] +EVENT[80]: 0.000441625 - core[0].svSysDesc(14), plen 0: [desc: I#37=SPI3] +EVENT[81]: 0.000441625 - core[1].svSysDesc(14), plen 0: [desc: I#37=SPI3] +EVENT[82]: 0.000452800 - core[0].svSysDesc(14), plen 0: [desc: I#38=I2S0] +EVENT[83]: 0.000452800 - core[1].svSysDesc(14), plen 0: [desc: I#38=I2S0] +EVENT[84]: 0.000468025 - core[0].svSysDesc(14), plen 0: [desc: I#39=I2S1] +EVENT[85]: 0.000468025 - core[1].svSysDesc(14), plen 0: [desc: I#39=I2S1] +EVENT[86]: 0.000479250 - core[0].svSysDesc(14), plen 0: [desc: I#40=UART0] +EVENT[87]: 0.000479250 - core[1].svSysDesc(14), plen 0: [desc: I#40=UART0] +EVENT[88]: 0.000490675 - core[0].svSysDesc(14), plen 0: [desc: I#41=UART1] +EVENT[89]: 0.000490675 - core[1].svSysDesc(14), plen 0: [desc: I#41=UART1] +EVENT[90]: 0.000506125 - core[0].svSysDesc(14), plen 0: [desc: I#42=UART2] +EVENT[91]: 0.000506125 - core[1].svSysDesc(14), plen 0: [desc: I#42=UART2] +EVENT[92]: 0.000522400 - core[0].svSysDesc(14), plen 0: [desc: I#43=SDIO_HOST] +EVENT[93]: 0.000522400 - core[1].svSysDesc(14), plen 0: [desc: I#43=SDIO_HOST] +EVENT[94]: 0.000534425 - core[0].svSysDesc(14), plen 0: [desc: I#44=ETH_MAC] +EVENT[95]: 0.000534425 - core[1].svSysDesc(14), plen 0: [desc: I#44=ETH_MAC] +EVENT[96]: 0.000550275 - core[0].svSysDesc(14), plen 0: [desc: I#45=PWM0] +EVENT[97]: 0.000550275 - core[1].svSysDesc(14), plen 0: [desc: I#45=PWM0] +EVENT[98]: 0.000565375 - core[0].svSysDesc(14), plen 0: [desc: I#46=PWM1] +EVENT[99]: 0.000565375 - core[1].svSysDesc(14), plen 0: [desc: I#46=PWM1] +EVENT[100]: 0.000577225 - core[0].svSysDesc(14), plen 0: [desc: I#47=RESERVED] +EVENT[101]: 0.000577225 - core[1].svSysDesc(14), plen 0: [desc: I#47=RESERVED] +EVENT[102]: 0.000589025 - core[0].svSysDesc(14), plen 0: [desc: I#48=RESERVED] +EVENT[103]: 0.000589025 - core[1].svSysDesc(14), plen 0: [desc: I#48=RESERVED] +EVENT[104]: 0.000600050 - core[0].svSysDesc(14), plen 0: [desc: I#49=LEDC] +EVENT[105]: 0.000600050 - core[1].svSysDesc(14), plen 0: [desc: I#49=LEDC] +EVENT[106]: 0.000619275 - core[0].svSysDesc(14), plen 0: [desc: I#50=EFUSE] +EVENT[107]: 0.000619275 - core[1].svSysDesc(14), plen 0: [desc: I#50=EFUSE] +EVENT[108]: 0.000630775 - core[0].svSysDesc(14), plen 0: [desc: I#51=TWAI] +EVENT[109]: 0.000630775 - core[1].svSysDesc(14), plen 0: [desc: I#51=TWAI] +EVENT[110]: 0.000646650 - core[0].svSysDesc(14), plen 0: [desc: I#52=RTC_CORE] +EVENT[111]: 0.000646650 - core[1].svSysDesc(14), plen 0: [desc: I#52=RTC_CORE] +EVENT[112]: 0.000657625 - core[0].svSysDesc(14), plen 0: [desc: I#53=RMT] +EVENT[113]: 0.000657625 - core[1].svSysDesc(14), plen 0: [desc: I#53=RMT] +EVENT[114]: 0.000668850 - core[0].svSysDesc(14), plen 0: [desc: I#54=PCNT] +EVENT[115]: 0.000668850 - core[1].svSysDesc(14), plen 0: [desc: I#54=PCNT] +EVENT[116]: 0.000685000 - core[0].svSysDesc(14), plen 0: [desc: I#55=I2C_EXT0] +EVENT[117]: 0.000685000 - core[1].svSysDesc(14), plen 0: [desc: I#55=I2C_EXT0] +EVENT[118]: 0.000696775 - core[0].svSysDesc(14), plen 0: [desc: I#56=I2C_EXT1] +EVENT[119]: 0.000696775 - core[1].svSysDesc(14), plen 0: [desc: I#56=I2C_EXT1] +EVENT[120]: 0.000707625 - core[0].svSysDesc(14), plen 0: [desc: I#57=RSA] +EVENT[121]: 0.000707625 - core[1].svSysDesc(14), plen 0: [desc: I#57=RSA] +EVENT[122]: 0.000723625 - core[0].svSysDesc(14), plen 0: [desc: I#58=SPI1_DMA] +EVENT[123]: 0.000723625 - core[1].svSysDesc(14), plen 0: [desc: I#58=SPI1_DMA] +EVENT[124]: 0.000739800 - core[0].svSysDesc(14), plen 0: [desc: I#59=SPI2_DMA] +EVENT[125]: 0.000739800 - core[1].svSysDesc(14), plen 0: [desc: I#59=SPI2_DMA] +EVENT[126]: 0.000752125 - core[0].svSysDesc(14), plen 0: [desc: I#60=SPI3_DMA] +EVENT[127]: 0.000752125 - core[1].svSysDesc(14), plen 0: [desc: I#60=SPI3_DMA] +EVENT[128]: 0.000763075 - core[0].svSysDesc(14), plen 0: [desc: I#61=WDT] +EVENT[129]: 0.000763075 - core[1].svSysDesc(14), plen 0: [desc: I#61=WDT] +EVENT[130]: 0.000783475 - core[0].svSysDesc(14), plen 0: [desc: I#62=TIMER1] +EVENT[131]: 0.000783475 - core[1].svSysDesc(14), plen 0: [desc: I#62=TIMER1] +EVENT[132]: 0.000795000 - core[0].svSysDesc(14), plen 0: [desc: I#63=TIMER2] +EVENT[133]: 0.000795000 - core[1].svSysDesc(14), plen 0: [desc: I#63=TIMER2] +EVENT[134]: 0.000808000 - core[0].svSysDesc(14), plen 0: [desc: I#64=TG0_T0_EDGE] +EVENT[135]: 0.000808000 - core[1].svSysDesc(14), plen 0: [desc: I#64=TG0_T0_EDGE] +EVENT[136]: 0.000824900 - core[0].svSysDesc(14), plen 0: [desc: I#65=TG0_T1_EDGE] +EVENT[137]: 0.000824900 - core[1].svSysDesc(14), plen 0: [desc: I#65=TG0_T1_EDGE] +EVENT[138]: 0.000841650 - core[0].svSysDesc(14), plen 0: [desc: I#66=TG0_WDT_EDGE] +EVENT[139]: 0.000841650 - core[1].svSysDesc(14), plen 0: [desc: I#66=TG0_WDT_EDGE] +EVENT[140]: 0.000858925 - core[0].svSysDesc(14), plen 0: [desc: I#67=TG0_LACT_EDGE] +EVENT[141]: 0.000858925 - core[1].svSysDesc(14), plen 0: [desc: I#67=TG0_LACT_EDGE] +EVENT[142]: 0.000871750 - core[0].svSysDesc(14), plen 0: [desc: I#68=TG1_T0_EDGE] +EVENT[143]: 0.000871750 - core[1].svSysDesc(14), plen 0: [desc: I#68=TG1_T0_EDGE] +EVENT[144]: 0.000884400 - core[0].svSysDesc(14), plen 0: [desc: I#69=TG1_T1_EDGE] +EVENT[145]: 0.000884400 - core[1].svSysDesc(14), plen 0: [desc: I#69=TG1_T1_EDGE] +EVENT[146]: 0.000901550 - core[0].svSysDesc(14), plen 0: [desc: I#70=TG1_WDT_EDGE] +EVENT[147]: 0.000901550 - core[1].svSysDesc(14), plen 0: [desc: I#70=TG1_WDT_EDGE] +EVENT[148]: 0.000914850 - core[0].svSysDesc(14), plen 0: [desc: I#71=TG1_LACT_EDGE] +EVENT[149]: 0.000914850 - core[1].svSysDesc(14), plen 0: [desc: I#71=TG1_LACT_EDGE] +EVENT[150]: 0.000930350 - core[0].svSysDesc(14), plen 0: [desc: I#72=MMU_IA] +EVENT[151]: 0.000930350 - core[1].svSysDesc(14), plen 0: [desc: I#72=MMU_IA] +EVENT[152]: 0.000941925 - core[0].svSysDesc(14), plen 0: [desc: I#73=MPU_IA] +EVENT[153]: 0.000941925 - core[1].svSysDesc(14), plen 0: [desc: I#73=MPU_IA] +EVENT[154]: 0.000958150 - core[0].svSysDesc(14), plen 0: [desc: I#74=CACHE_IA] +EVENT[155]: 0.000958150 - core[1].svSysDesc(14), plen 0: [desc: I#74=CACHE_IA] +EVENT[156]: 0.000968650 - core[0].svSysTimeCycles(12), plen 0: [cycles: 2739609] +EVENT[157]: 0.000968650 - core[1].svSysTimeCycles(12), plen 0: [cycles: 2739609] +EVENT[158]: 0.001084500 - core[0].svTaskInfo(9), plen 0: [tid: 12252316, prio: 24, name: ipc0] +EVENT[159]: 0.001084500 - core[1].svTaskInfo(9), plen 0: [tid: 12252316, prio: 24, name: ipc0] +EVENT[160]: 0.001089775 - core[0].svStackInfo(21), plen 0: [tid: 12252316, base: 1073409176, sz: 1352, unused: 0] +EVENT[161]: 0.001089775 - core[1].svStackInfo(21), plen 0: [tid: 12252316, base: 1073409176, sz: 1352, unused: 0] +EVENT[162]: 0.001195350 - core[0].svTaskInfo(9), plen 0: [tid: 12254724, prio: 24, name: ipc1] +EVENT[163]: 0.001195350 - core[1].svTaskInfo(9), plen 0: [tid: 12254724, prio: 24, name: ipc1] +EVENT[164]: 0.001200800 - core[0].svStackInfo(21), plen 0: [tid: 12254724, base: 1073411584, sz: 1344, unused: 0] +EVENT[165]: 0.001200800 - core[1].svStackInfo(21), plen 0: [tid: 12254724, base: 1073411584, sz: 1344, unused: 0] +EVENT[166]: 0.001388725 - core[0].svTaskInfo(9), plen 0: [tid: 12274964, prio: 1, name: main] +EVENT[167]: 0.001388725 - core[1].svTaskInfo(9), plen 0: [tid: 12274964, prio: 1, name: main] +EVENT[168]: 0.001394000 - core[0].svStackInfo(21), plen 0: [tid: 12274964, base: 1073429776, sz: 2400, unused: 0] +EVENT[169]: 0.001394000 - core[1].svStackInfo(21), plen 0: [tid: 12274964, base: 1073429776, sz: 2400, unused: 0] +EVENT[170]: 0.001401225 - core[0].svNumModules(27), plen 1: [mod_cnt: 0] +EVENT[171]: 0.001401225 - core[1].svNumModules(27), plen 1: [mod_cnt: 0] +EVENT[172]: 0.001407975 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[173]: 0.001419700 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[174]: 0.001430725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[175]: 0.001441675 - core[0].svTaskStartReady(6), plen 0: [tid: 12274964] +EVENT[176]: 0.001441675 - core[1].svTaskStartReady(6), plen 0: [tid: 12274964] +EVENT[177]: 0.001456950 - core[0].svIsrExit(3), plen 0: [] +EVENT[178]: 0.001467975 - core[1].svIdle(17), plen 0: [] +EVENT[179]: 0.001479225 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[180]: 0.001490125 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[181]: 0.001501375 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[182]: 0.001512375 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[183]: 0.001523775 - core[0].svTaskStartExec(4), plen 0: [tid: 12274964] +EVENT[184]: 0.001554300 - core[0].svModuleDesc(22), plen 0: [mod_id: 0, evt_off: 512, desc: M=ESP32 SystemView Heap Tracing Module] +EVENT[185]: 0.001554300 - core[1].svModuleDesc(22), plen 0: [mod_id: 0, evt_off: 512, desc: M=ESP32 SystemView Heap Tracing Module] +EVENT[186]: 0.001566225 - core[1].svIdle(17), plen 0: [] +EVENT[187]: 0.001577550 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[188]: 0.001593250 - core[0].svIsrExit(3), plen 0: [] +EVENT[189]: 0.001650800 - core[0].esp_sysview_heap_trace_alloc(512), plen 40: [addr: 1073440928, size: 8, callers: [1074274047, 1074274100, 1074321944, 1074609327, 1074673816, 1074299100, 0, 0, 0, 0]] +[0.001650800] HEAP: Allocated 8 bytes @ 0x3ffb68a0 from task "main" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:87 -/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 10) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[92]: 0.001666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[93]: 0.001679850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[94]: 0.001696525 - core[1].svIdle(17), plen 0: [] -EVENT[95]: 0.001833550 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[96]: 0.001848925 - core[0].svIsrExit(3), plen 0: [] -EVENT[97]: 0.001870025 - core[0].esp_sysview_heap_trace_alloc(512), plen 41: [addr: 1073443048, size: 2500, callers: [1074274287, 1074304020, 1074311940, 1074621496, 1074686267, 1074302356, 0, 0, 0, 0]] -[0.001870025] HEAP: Allocated 2500 bytes @ 0x3ffb70e8 from task "main" on core 0 by: +EVENT[190]: 0.001952550 - core[0].esp_sysview_heap_trace_alloc(512), plen 41: [addr: 1073440944, size: 2500, callers: [1074274047, 1074300704, 1074308624, 1074609400, 1074673816, 1074299100, 0, 0, 0, 0]] +[0.001952550] HEAP: Allocated 2500 bytes @ 0x3ffb68b0 from task "main" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:231 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:86 (discriminator 2) -/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 10) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[98]: 0.001909875 - core[0].esp_sysview_heap_trace_alloc(512), plen 41: [addr: 1073445612, size: 340, callers: [1074274287, 1074304020, 1074311951, 1074621496, 1074686267, 1074302356, 0, 0, 0, 0]] -[0.001909875] HEAP: Allocated 340 bytes @ 0x3ffb7aec from task "main" on core 0 by: +EVENT[191]: 0.001993450 - core[0].esp_sysview_heap_trace_alloc(512), plen 41: [addr: 1073443508, size: 340, callers: [1074274047, 1074300704, 1074308635, 1074609400, 1074673816, 1074299100, 0, 0, 0, 0]] +[0.001993450] HEAP: Allocated 340 bytes @ 0x3ffb72b4 from task "main" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:236 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:86 (discriminator 2) -/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 10) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[99]: 0.001932550 - core[0].svTaskCreate(8), plen 0: [tid: 12286700] -EVENT[100]: 0.001945175 - core[0].svTaskInfo(9), plen 0: [tid: 12286700, prio: 5, name: alloc0] -EVENT[101]: 0.001954275 - core[0].svStackInfo(21), plen 0: [tid: 12286700, base: 1073443048, sz: 4294965096, unused: 0] -EVENT[102]: 0.001964975 - core[0].svTaskStartReady(6), plen 0: [tid: 12286700] -EVENT[103]: 0.001980675 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[104]: 0.001992175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[105]: 0.002008650 - core[0].svTaskStartExec(4), plen 0: [tid: 12286700] -EVENT[106]: 0.002044025 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073445968, size: 124, callers: [1074274287, 1074304020, 1074300537, 1074621092, 1074302356, 0, 0, 0, 0, 0]] -[0.002044025] HEAP: Allocated 124 bytes @ 0x3ffb7c50 from task "alloc0" on core 0 by: +EVENT[192]: 0.002024125 - core[0].svTaskCreate(8), plen 0: [tid: 12284596] +EVENT[193]: 0.002036775 - core[0].svTaskInfo(9), plen 0: [tid: 12284596, prio: 5, name: alloc0] +EVENT[194]: 0.002036775 - core[1].svTaskInfo(9), plen 0: [tid: 12284596, prio: 5, name: alloc0] +EVENT[195]: 0.002045900 - core[0].svStackInfo(21), plen 0: [tid: 12284596, base: 1073440944, sz: 4294965088, unused: 0] +EVENT[196]: 0.002045900 - core[1].svStackInfo(21), plen 0: [tid: 12284596, base: 1073440944, sz: 4294965088, unused: 0] +EVENT[197]: 0.002056625 - core[0].svTaskStartReady(6), plen 0: [tid: 12284596] +EVENT[198]: 0.002056625 - core[1].svTaskStartReady(6), plen 0: [tid: 12284596] +EVENT[199]: 0.002072325 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[200]: 0.002083675 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[201]: 0.002100025 - core[0].svTaskStartExec(4), plen 0: [tid: 12284596] +EVENT[202]: 0.002144425 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073443864, size: 124, callers: [1074274047, 1074300704, 1074297281, 1074608996, 1074299100, 0, 0, 0, 0, 0]] +[0.002144425] HEAP: Allocated 124 bytes @ 0x3ffb7418 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/queue.c:545 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:48 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[107]: 0.002058325 - core[0].xQueueGenericCreate(47), plen 3: [uxQueueLength: 10, uxItemSize: 4, ucQueueType: 0] -EVENT[108]: 0.002113550 - core[0].esp_sysview_heap_trace_alloc(512), plen 37: [addr: 1073446096, size: 2500, callers: [1074274287, 1074304020, 1074311940, 1074621152, 1074302356, 0, 0, 0, 0, 0]] -[0.002113550] HEAP: Allocated 2500 bytes @ 0x3ffb7cd0 from task "alloc0" on core 0 by: +EVENT[203]: 0.002158725 - core[0].xQueueGenericCreate(47), plen 3: [uxQueueLength: 10, uxItemSize: 4, ucQueueType: 0] +EVENT[204]: 0.002218950 - core[0].esp_sysview_heap_trace_alloc(512), plen 37: [addr: 1073443992, size: 2500, callers: [1074274047, 1074300704, 1074308624, 1074609056, 1074299100, 0, 0, 0, 0, 0]] +[0.002218950] HEAP: Allocated 2500 bytes @ 0x3ffb7498 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:231 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:57 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[109]: 0.002147950 - core[0].esp_sysview_heap_trace_alloc(512), plen 37: [addr: 1073448660, size: 340, callers: [1074274287, 1074304020, 1074311951, 1074621152, 1074302356, 0, 0, 0, 0, 0]] -[0.002147950] HEAP: Allocated 340 bytes @ 0x3ffb86d4 from task "alloc0" on core 0 by: +EVENT[205]: 0.002254400 - core[0].esp_sysview_heap_trace_alloc(512), plen 37: [addr: 1073446556, size: 340, callers: [1074274047, 1074300704, 1074308635, 1074609056, 1074299100, 0, 0, 0, 0, 0]] +[0.002254400] HEAP: Allocated 340 bytes @ 0x3ffb7e9c from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:236 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:57 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[110]: 0.002174650 - core[0].svTaskCreate(8), plen 0: [tid: 12289748] -EVENT[111]: 0.002187150 - core[0].svTaskInfo(9), plen 0: [tid: 12289748, prio: 5, name: free0] -EVENT[112]: 0.002196300 - core[0].svStackInfo(21), plen 0: [tid: 12289748, base: 1073446096, sz: 4294965088, unused: 0] -EVENT[113]: 0.002207125 - core[0].svTaskStartReady(6), plen 0: [tid: 12289748] -EVENT[114]: 0.002222500 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[115]: 0.002235400 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[116]: 0.002251800 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073449016, size: 1, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.002251800] HEAP: Allocated 1 bytes @ 0x3ffb8838 from task "alloc0" on core 0 by: +EVENT[206]: 0.002281100 - core[0].svTaskCreate(8), plen 0: [tid: 12287644] +EVENT[207]: 0.002293625 - core[0].svTaskInfo(9), plen 0: [tid: 12287644, prio: 5, name: free0] +EVENT[208]: 0.002293625 - core[1].svTaskInfo(9), plen 0: [tid: 12287644, prio: 5, name: free0] +EVENT[209]: 0.002302800 - core[0].svStackInfo(21), plen 0: [tid: 12287644, base: 1073443992, sz: 4294965096, unused: 0] +EVENT[210]: 0.002302800 - core[1].svStackInfo(21), plen 0: [tid: 12287644, base: 1073443992, sz: 4294965096, unused: 0] +EVENT[211]: 0.002313650 - core[0].svTaskStartReady(6), plen 0: [tid: 12287644] +EVENT[212]: 0.002313650 - core[1].svTaskStartReady(6), plen 0: [tid: 12287644] +EVENT[213]: 0.002329000 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[214]: 0.002342325 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[215]: 0.002359325 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073446912, size: 1, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.002359325] HEAP: Allocated 1 bytes @ 0x3ffb8000 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[117]: 0.002263100 - core[1].svTaskStartExec(4), plen 0: [tid: 12289748] -EVENT[118]: 0.002293125 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[119]: 0.002304050 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073449032, size: 2, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.002304050] HEAP: Allocated 2 bytes @ 0x3ffb8848 from task "alloc0" on core 0 by: +EVENT[216]: 0.002370750 - core[1].svTaskStartExec(4), plen 0: [tid: 12287644] +EVENT[217]: 0.002400875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[218]: 0.002412175 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073446928, size: 2, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.002412175] HEAP: Allocated 2 bytes @ 0x3ffb8010 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[120]: 0.002315125 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[121]: 0.002327775 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[122]: 0.002338225 - core[1].svIdle(17), plen 0: [] -EVENT[123]: 0.002372400 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[124]: 0.002611675 - core[0].svPrint(26), plen 69: [msg: I (310) example: Task[0x3ffb7aec]: allocated 2 bytes @ 0x3ffb8848 +EVENT[219]: 0.002423750 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[220]: 0.002436000 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[221]: 0.002447000 - core[1].svIdle(17), plen 0: [] +EVENT[222]: 0.002462975 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[223]: 0.002476525 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[224]: 0.002487925 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[225]: 0.002499075 - core[1].svIdle(17), plen 0: [] +EVENT[226]: 0.002748650 - core[0].svPrint(26), plen 69: [msg: I (297) example: Task[0x3ffb72b4]: allocated 2 bytes @ 0x3ffb8010 , lvl: 0, unused: 0] -[0.002611675] LOG: I (310) example: Task[0x3ffb7aec]: allocated 2 bytes @ 0x3ffb8848 -EVENT[125]: 0.002633250 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12287056, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[126]: 0.002646375 - core[0].svTaskStartReady(6), plen 0: [tid: 12289748] -EVENT[127]: 0.002662575 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[128]: 0.002673450 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[129]: 0.002684225 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[130]: 0.002698400 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[131]: 0.002709150 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[132]: 0.002720075 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[133]: 0.002731625 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[134]: 0.002742100 - core[0].svTaskStartExec(4), plen 0: [tid: 12254080] -EVENT[135]: 0.002759600 - core[1].svTaskStartExec(4), plen 0: [tid: 12289748] -EVENT[136]: 0.002776550 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12287056, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[137]: 0.002788050 - core[0].esp_sysview_heap_trace_alloc(512), plen 40: [addr: 1073449048, size: 8, callers: [1074274287, 1074274340, 1074325096, 1074621423, 1074686267, 1074302356, 0, 0, 0, 0]] -[0.002788050] HEAP: Allocated 8 bytes @ 0x3ffb8858 from task "main" on core 0 by: +[0.002748650] LOG: I (297) example: Task[0x3ffb72b4]: allocated 2 bytes @ 0x3ffb8010 +EVENT[227]: 0.002765925 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[228]: 0.002781300 - core[0].svIsrExit(3), plen 0: [] +EVENT[229]: 0.002795350 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12284952, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[230]: 0.002808550 - core[0].svTaskStartReady(6), plen 0: [tid: 12287644] +EVENT[231]: 0.002808550 - core[1].svTaskStartReady(6), plen 0: [tid: 12287644] +EVENT[232]: 0.002824800 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[233]: 0.002835750 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[234]: 0.002846450 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[235]: 0.002860225 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[236]: 0.002870975 - core[1].svTaskStartExec(4), plen 0: [tid: 12287644] +EVENT[237]: 0.002881775 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[238]: 0.002893725 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12284952, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[239]: 0.002904450 - core[0].svTaskStartExec(4), plen 0: [tid: 12274964] +EVENT[240]: 0.002943850 - core[0].esp_sysview_heap_trace_alloc(512), plen 40: [addr: 1073446944, size: 8, callers: [1074274047, 1074274100, 1074321944, 1074609327, 1074673816, 1074299100, 0, 0, 0, 0]] +[0.002943850] HEAP: Allocated 8 bytes @ 0x3ffb8020 from task "main" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:87 -/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 10) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[138]: 0.002824000 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[139]: 0.002835875 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[140]: 0.002851250 - core[0].svIsrExit(3), plen 0: [] -EVENT[141]: 0.002863625 - core[0].esp_sysview_heap_trace_alloc(512), plen 41: [addr: 1073449064, size: 2500, callers: [1074274287, 1074304020, 1074311940, 1074621496, 1074686267, 1074302356, 0, 0, 0, 0]] -[0.002863625] HEAP: Allocated 2500 bytes @ 0x3ffb8868 from task "main" on core 0 by: +EVENT[241]: 0.002956000 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[242]: 0.002990650 - core[0].esp_sysview_heap_trace_alloc(512), plen 41: [addr: 1073446960, size: 2500, callers: [1074274047, 1074300704, 1074308624, 1074609400, 1074673816, 1074299100, 0, 0, 0, 0]] +[0.002990650] HEAP: Allocated 2500 bytes @ 0x3ffb8030 from task "main" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:231 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:86 (discriminator 2) -/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 10) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[142]: 0.002878375 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[143]: 0.002905675 - core[0].esp_sysview_heap_trace_alloc(512), plen 41: [addr: 1073451628, size: 340, callers: [1074274287, 1074304020, 1074311951, 1074621496, 1074686267, 1074302356, 0, 0, 0, 0]] -[0.002905675] HEAP: Allocated 340 bytes @ 0x3ffb926c from task "main" on core 0 by: +EVENT[243]: 0.003010625 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[244]: 0.003033925 - core[0].esp_sysview_heap_trace_alloc(512), plen 41: [addr: 1073449524, size: 340, callers: [1074274047, 1074300704, 1074308635, 1074609400, 1074673816, 1074299100, 0, 0, 0, 0]] +[0.003033925] HEAP: Allocated 340 bytes @ 0x3ffb8a34 from task "main" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:236 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:86 (discriminator 2) -/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 10) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[144]: 0.002928325 - core[0].svTaskCreate(8), plen 0: [tid: 12292716] -EVENT[145]: 0.002941000 - core[0].svTaskInfo(9), plen 0: [tid: 12292716, prio: 5, name: alloc1] -EVENT[146]: 0.002950000 - core[0].svStackInfo(21), plen 0: [tid: 12292716, base: 1073449064, sz: 4294965096, unused: 0] -EVENT[147]: 0.002960900 - core[0].svTaskStartReady(6), plen 0: [tid: 12292716] -EVENT[148]: 0.002976625 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[149]: 0.002988000 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[150]: 0.003004850 - core[0].svTaskStartExec(4), plen 0: [tid: 12292716] -EVENT[151]: 0.003040300 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073451984, size: 124, callers: [1074274287, 1074304020, 1074300537, 1074621092, 1074302356, 0, 0, 0, 0, 0]] -[0.003040300] HEAP: Allocated 124 bytes @ 0x3ffb93d0 from task "alloc1" on core 0 by: +EVENT[245]: 0.003056650 - core[0].svTaskCreate(8), plen 0: [tid: 12290612] +EVENT[246]: 0.003069350 - core[0].svTaskInfo(9), plen 0: [tid: 12290612, prio: 5, name: alloc1] +EVENT[247]: 0.003069350 - core[1].svTaskInfo(9), plen 0: [tid: 12290612, prio: 5, name: alloc1] +EVENT[248]: 0.003078400 - core[0].svStackInfo(21), plen 0: [tid: 12290612, base: 1073446960, sz: 4294965088, unused: 0] +EVENT[249]: 0.003078400 - core[1].svStackInfo(21), plen 0: [tid: 12290612, base: 1073446960, sz: 4294965088, unused: 0] +EVENT[250]: 0.003089300 - core[0].svTaskStartReady(6), plen 0: [tid: 12290612] +EVENT[251]: 0.003089300 - core[1].svTaskStartReady(6), plen 0: [tid: 12290612] +EVENT[252]: 0.003104950 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[253]: 0.003116300 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[254]: 0.003132675 - core[0].svTaskStartExec(4), plen 0: [tid: 12290612] +EVENT[255]: 0.003169150 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073449880, size: 124, callers: [1074274047, 1074300704, 1074297281, 1074608996, 1074299100, 0, 0, 0, 0, 0]] +[0.003169150] HEAP: Allocated 124 bytes @ 0x3ffb8b98 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/queue.c:545 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:48 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[152]: 0.003054600 - core[0].xQueueGenericCreate(47), plen 3: [uxQueueLength: 10, uxItemSize: 4, ucQueueType: 0] -EVENT[153]: 0.003093950 - core[0].esp_sysview_heap_trace_alloc(512), plen 37: [addr: 1073452112, size: 2500, callers: [1074274287, 1074304020, 1074311940, 1074621152, 1074302356, 0, 0, 0, 0, 0]] -[0.003093950] HEAP: Allocated 2500 bytes @ 0x3ffb9450 from task "alloc1" on core 0 by: +EVENT[256]: 0.003183450 - core[0].xQueueGenericCreate(47), plen 3: [uxQueueLength: 10, uxItemSize: 4, ucQueueType: 0] +EVENT[257]: 0.003223850 - core[0].esp_sysview_heap_trace_alloc(512), plen 37: [addr: 1073450008, size: 2500, callers: [1074274047, 1074300704, 1074308624, 1074609056, 1074299100, 0, 0, 0, 0, 0]] +[0.003223850] HEAP: Allocated 2500 bytes @ 0x3ffb8c18 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:231 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:57 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[154]: 0.003128350 - core[0].esp_sysview_heap_trace_alloc(512), plen 37: [addr: 1073454676, size: 340, callers: [1074274287, 1074304020, 1074311951, 1074621152, 1074302356, 0, 0, 0, 0, 0]] -[0.003128350] HEAP: Allocated 340 bytes @ 0x3ffb9e54 from task "alloc1" on core 0 by: +EVENT[258]: 0.003259400 - core[0].esp_sysview_heap_trace_alloc(512), plen 37: [addr: 1073452572, size: 340, callers: [1074274047, 1074300704, 1074308635, 1074609056, 1074299100, 0, 0, 0, 0, 0]] +[0.003259400] HEAP: Allocated 340 bytes @ 0x3ffb961c from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:236 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:57 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[155]: 0.003155100 - core[0].svTaskCreate(8), plen 0: [tid: 12295764] -EVENT[156]: 0.003167600 - core[0].svTaskInfo(9), plen 0: [tid: 12295764, prio: 5, name: free1] -EVENT[157]: 0.003176775 - core[0].svStackInfo(21), plen 0: [tid: 12295764, base: 1073452112, sz: 4294965088, unused: 0] -EVENT[158]: 0.003187575 - core[0].svTaskStartReady(6), plen 0: [tid: 12295764] -EVENT[159]: 0.003223700 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073455032, size: 2, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.003223700] HEAP: Allocated 2 bytes @ 0x3ffb9fb8 from task "alloc1" on core 0 by: +EVENT[259]: 0.003286175 - core[0].svTaskCreate(8), plen 0: [tid: 12293660] +EVENT[260]: 0.003298675 - core[0].svTaskInfo(9), plen 0: [tid: 12293660, prio: 5, name: free1] +EVENT[261]: 0.003298675 - core[1].svTaskInfo(9), plen 0: [tid: 12293660, prio: 5, name: free1] +EVENT[262]: 0.003307875 - core[0].svStackInfo(21), plen 0: [tid: 12293660, base: 1073450008, sz: 4294965096, unused: 0] +EVENT[263]: 0.003307875 - core[1].svStackInfo(21), plen 0: [tid: 12293660, base: 1073450008, sz: 4294965096, unused: 0] +EVENT[264]: 0.003318700 - core[0].svTaskStartReady(6), plen 0: [tid: 12293660] +EVENT[265]: 0.003318700 - core[1].svTaskStartReady(6), plen 0: [tid: 12293660] +EVENT[266]: 0.003355850 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073452928, size: 2, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.003355850] HEAP: Allocated 2 bytes @ 0x3ffb9780 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[160]: 0.003258100 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073455048, size: 4, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.003258100] HEAP: Allocated 4 bytes @ 0x3ffb9fc8 from task "alloc1" on core 0 by: +EVENT[267]: 0.003391275 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073452944, size: 4, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.003391275] HEAP: Allocated 4 bytes @ 0x3ffb9790 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[161]: 0.003275000 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[162]: 0.003296925 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[163]: 0.003339650 - core[1].svPrint(26), plen 63: [msg: I (310) example: Task[0x3ffb86d4]: free memory @ 0x3ffb8848 +EVENT[268]: 0.003408225 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[269]: 0.003428300 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[270]: 0.003484300 - core[1].svPrint(26), plen 63: [msg: I (298) example: Task[0x3ffb7e9c]: free memory @ 0x3ffb8010 , lvl: 0, unused: 0] -[0.003339650] LOG: I (310) example: Task[0x3ffb86d4]: free memory @ 0x3ffb8848 -EVENT[164]: 0.003359800 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[165]: 0.003371250 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[166]: 0.003388225 - core[1].svTaskStartExec(4), plen 0: [tid: 12289748] -EVENT[167]: 0.003407050 - core[0].svPrint(26), plen 69: [msg: I (311) example: Task[0x3ffb926c]: allocated 4 bytes @ 0x3ffb9fc8 +[0.003484300] LOG: I (298) example: Task[0x3ffb7e9c]: free memory @ 0x3ffb8010 +EVENT[271]: 0.003503800 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[272]: 0.003517225 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[273]: 0.003529075 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[274]: 0.003548800 - core[0].svPrint(26), plen 69: [msg: I (298) example: Task[0x3ffb8a34]: allocated 4 bytes @ 0x3ffb9790 , lvl: 0, unused: 0] -[0.003407050] LOG: I (311) example: Task[0x3ffb926c]: allocated 4 bytes @ 0x3ffb9fc8 -EVENT[168]: 0.003421150 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12293072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[169]: 0.003434300 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073449032, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.003434300] HEAP: Freed bytes @ 0x3ffb8848 from task "free0" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +[0.003548800] LOG: I (298) example: Task[0x3ffb8a34]: allocated 4 bytes @ 0x3ffb9790 +EVENT[275]: 0.003560325 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[276]: 0.003571875 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[277]: 0.003582750 - core[1].svTaskStartExec(4), plen 0: [tid: 12287644] +EVENT[278]: 0.003598000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[279]: 0.003614550 - core[0].svTaskStartExec(4), plen 0: [tid: 12290612] +EVENT[280]: 0.003626250 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073446928, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.003626250] HEAP: Freed bytes @ 0x3ffb8010 from task "free0" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[170]: 0.003446125 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[171]: 0.003464800 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[172]: 0.003478750 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[173]: 0.003492825 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[174]: 0.003504725 - core[0].svTaskStartExec(4), plen 0: [tid: 12254080] -EVENT[175]: 0.003515600 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[176]: 0.003534850 - core[1].svTaskStartExec(4), plen 0: [tid: 12295764] -EVENT[177]: 0.003547175 - core[0].esp_sysview_heap_trace_alloc(512), plen 40: [addr: 1073449032, size: 8, callers: [1074274287, 1074274340, 1074325096, 1074621423, 1074686267, 1074302356, 0, 0, 0, 0]] -[0.003547175] HEAP: Allocated 8 bytes @ 0x3ffb8848 from task "main" on core 0 by: +EVENT[281]: 0.003637375 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12290968, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[282]: 0.003651350 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[283]: 0.003671100 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[284]: 0.003685125 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[285]: 0.003699025 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[286]: 0.003710900 - core[0].svTaskStartExec(4), plen 0: [tid: 12274964] +EVENT[287]: 0.003721925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[288]: 0.003741250 - core[1].svTaskStartExec(4), plen 0: [tid: 12293660] +EVENT[289]: 0.003754850 - core[0].esp_sysview_heap_trace_alloc(512), plen 40: [addr: 1073446928, size: 8, callers: [1074274047, 1074274100, 1074321944, 1074609327, 1074673816, 1074299100, 0, 0, 0, 0]] +[0.003754850] HEAP: Allocated 8 bytes @ 0x3ffb8010 from task "main" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:87 -/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 10) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[178]: 0.003564225 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12293072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[179]: 0.003582900 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[180]: 0.003600675 - core[0].esp_sysview_heap_trace_alloc(512), plen 41: [addr: 1073455064, size: 2500, callers: [1074274287, 1074304020, 1074311940, 1074621496, 1074686267, 1074302356, 0, 0, 0, 0]] -[0.003600675] HEAP: Allocated 2500 bytes @ 0x3ffb9fd8 from task "main" on core 0 by: +EVENT[290]: 0.003771850 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12290968, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[291]: 0.003790150 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[292]: 0.003809225 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[293]: 0.003820975 - core[0].esp_sysview_heap_trace_alloc(512), plen 41: [addr: 1073452960, size: 2500, callers: [1074274047, 1074300704, 1074308624, 1074609400, 1074673816, 1074299100, 0, 0, 0, 0]] +[0.003820975] HEAP: Allocated 2500 bytes @ 0x3ffb97a0 from task "main" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:231 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:86 (discriminator 2) -/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 10) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[181]: 0.003613400 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[182]: 0.003639925 - core[0].esp_sysview_heap_trace_alloc(512), plen 41: [addr: 1073457628, size: 340, callers: [1074274287, 1074304020, 1074311951, 1074621496, 1074686267, 1074302356, 0, 0, 0, 0]] -[0.003639925] HEAP: Allocated 340 bytes @ 0x3ffba9dc from task "main" on core 0 by: +EVENT[294]: 0.003862100 - core[1].svPrint(26), plen 63: [msg: I (299) example: Task[0x3ffb961c]: free memory @ 0x3ffb9790 +, lvl: 0, unused: 0] +[0.003862100] LOG: I (299) example: Task[0x3ffb961c]: free memory @ 0x3ffb9790 +EVENT[295]: 0.003874025 - core[0].esp_sysview_heap_trace_alloc(512), plen 41: [addr: 1073455524, size: 340, callers: [1074274047, 1074300704, 1074308635, 1074609400, 1074673816, 1074299100, 0, 0, 0, 0]] +[0.003874025] HEAP: Allocated 340 bytes @ 0x3ffba1a4 from task "main" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:236 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:86 (discriminator 2) -/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 10) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[183]: 0.003663425 - core[1].svPrint(26), plen 63: [msg: I (311) example: Task[0x3ffb9e54]: free memory @ 0x3ffb9fc8 -, lvl: 0, unused: 0] -[0.003663425] LOG: I (311) example: Task[0x3ffb9e54]: free memory @ 0x3ffb9fc8 -EVENT[184]: 0.003674800 - core[0].svTaskCreate(8), plen 0: [tid: 12298716] -EVENT[185]: 0.003691000 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[186]: 0.003703775 - core[0].svTaskInfo(9), plen 0: [tid: 12298716, prio: 5, name: alloc2] -EVENT[187]: 0.003714750 - core[0].svStackInfo(21), plen 0: [tid: 12298716, base: 1073455064, sz: 4294965096, unused: 0] -EVENT[188]: 0.003727650 - core[0].svTaskStartReady(6), plen 0: [tid: 12298716] -EVENT[189]: 0.003745100 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[190]: 0.003755950 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[191]: 0.003766625 - core[1].svTaskStartExec(4), plen 0: [tid: 12295764] -EVENT[192]: 0.003777475 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[193]: 0.003792825 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073455048, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.003792825] HEAP: Freed bytes @ 0x3ffb9fc8 from task "free1" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +EVENT[296]: 0.003887625 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073452944, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.003887625] HEAP: Freed bytes @ 0x3ffb9790 from task "free1" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[194]: 0.003804450 - core[0].svTaskStartExec(4), plen 0: [tid: 12298716] -EVENT[195]: 0.003827350 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[196]: 0.003839325 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[197]: 0.003850500 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[198]: 0.003862175 - core[0].svIsrExit(3), plen 0: [] -EVENT[199]: 0.003872050 - core[1].svIdle(17), plen 0: [] -EVENT[200]: 0.003888100 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073457984, size: 124, callers: [1074274287, 1074304020, 1074300537, 1074621092, 1074302356, 0, 0, 0, 0, 0]] -[0.003888100] HEAP: Allocated 124 bytes @ 0x3ffbab40 from task "alloc2" on core 0 by: +EVENT[297]: 0.003903450 - core[0].svTaskCreate(8), plen 0: [tid: 12296612] +EVENT[298]: 0.003918375 - core[0].svTaskInfo(9), plen 0: [tid: 12296612, prio: 5, name: alloc2] +EVENT[299]: 0.003918375 - core[1].svTaskInfo(9), plen 0: [tid: 12296612, prio: 5, name: alloc2] +EVENT[300]: 0.003929550 - core[0].svStackInfo(21), plen 0: [tid: 12296612, base: 1073452960, sz: 4294965088, unused: 0] +EVENT[301]: 0.003929550 - core[1].svStackInfo(21), plen 0: [tid: 12296612, base: 1073452960, sz: 4294965088, unused: 0] +EVENT[302]: 0.003942575 - core[0].svTaskStartReady(6), plen 0: [tid: 12296612] +EVENT[303]: 0.003942575 - core[1].svTaskStartReady(6), plen 0: [tid: 12296612] +EVENT[304]: 0.003961250 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[305]: 0.003975150 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[306]: 0.003989000 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[307]: 0.003999875 - core[0].svTaskStartExec(4), plen 0: [tid: 12296612] +EVENT[308]: 0.004011000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[309]: 0.004033050 - core[1].svIdle(17), plen 0: [] +EVENT[310]: 0.004044725 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073455880, size: 124, callers: [1074274047, 1074300704, 1074297281, 1074608996, 1074299100, 0, 0, 0, 0, 0]] +[0.004044725] HEAP: Allocated 124 bytes @ 0x3ffba308 from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/queue.c:545 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:48 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[201]: 0.003902475 - core[0].xQueueGenericCreate(47), plen 3: [uxQueueLength: 10, uxItemSize: 4, ucQueueType: 0] -EVENT[202]: 0.003941825 - core[0].esp_sysview_heap_trace_alloc(512), plen 37: [addr: 1073458112, size: 2500, callers: [1074274287, 1074304020, 1074311940, 1074621152, 1074302356, 0, 0, 0, 0, 0]] -[0.003941825] HEAP: Allocated 2500 bytes @ 0x3ffbabc0 from task "alloc2" on core 0 by: +EVENT[311]: 0.004059250 - core[0].xQueueGenericCreate(47), plen 3: [uxQueueLength: 10, uxItemSize: 4, ucQueueType: 0] +EVENT[312]: 0.004099675 - core[0].esp_sysview_heap_trace_alloc(512), plen 37: [addr: 1073456008, size: 2500, callers: [1074274047, 1074300704, 1074308624, 1074609056, 1074299100, 0, 0, 0, 0, 0]] +[0.004099675] HEAP: Allocated 2500 bytes @ 0x3ffba388 from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:231 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:57 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[203]: 0.003976225 - core[0].esp_sysview_heap_trace_alloc(512), plen 37: [addr: 1073460676, size: 340, callers: [1074274287, 1074304020, 1074311951, 1074621152, 1074302356, 0, 0, 0, 0, 0]] -[0.003976225] HEAP: Allocated 340 bytes @ 0x3ffbb5c4 from task "alloc2" on core 0 by: +EVENT[313]: 0.004135150 - core[0].esp_sysview_heap_trace_alloc(512), plen 37: [addr: 1073458572, size: 340, callers: [1074274047, 1074300704, 1074308635, 1074609056, 1074299100, 0, 0, 0, 0, 0]] +[0.004135150] HEAP: Allocated 340 bytes @ 0x3ffbad8c from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:236 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:57 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[204]: 0.004002200 - core[0].svTaskCreate(8), plen 0: [tid: 12301764] -EVENT[205]: 0.004014700 - core[0].svTaskInfo(9), plen 0: [tid: 12301764, prio: 5, name: free2] -EVENT[206]: 0.004023875 - core[0].svStackInfo(21), plen 0: [tid: 12301764, base: 1073458112, sz: 4294965088, unused: 0] -EVENT[207]: 0.004034675 - core[0].svTaskStartReady(6), plen 0: [tid: 12301764] -EVENT[208]: 0.004050925 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[209]: 0.004063775 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[210]: 0.004075450 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073455048, size: 3, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.004075450] HEAP: Allocated 3 bytes @ 0x3ffb9fc8 from task "alloc2" on core 0 by: +EVENT[314]: 0.004157725 - core[0].svTaskCreate(8), plen 0: [tid: 12299660] +EVENT[315]: 0.004170300 - core[0].svTaskInfo(9), plen 0: [tid: 12299660, prio: 5, name: free2] +EVENT[316]: 0.004170300 - core[1].svTaskInfo(9), plen 0: [tid: 12299660, prio: 5, name: free2] +EVENT[317]: 0.004183575 - core[0].svStackInfo(21), plen 0: [tid: 12299660, base: 1073456008, sz: 4294965096, unused: 0] +EVENT[318]: 0.004183575 - core[1].svStackInfo(21), plen 0: [tid: 12299660, base: 1073456008, sz: 4294965096, unused: 0] +EVENT[319]: 0.004194300 - core[0].svTaskStartReady(6), plen 0: [tid: 12299660] +EVENT[320]: 0.004194300 - core[1].svTaskStartReady(6), plen 0: [tid: 12299660] +EVENT[321]: 0.004210400 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[322]: 0.004223275 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[323]: 0.004235500 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073452944, size: 3, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.004235500] HEAP: Allocated 3 bytes @ 0x3ffb9790 from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[211]: 0.004086900 - core[1].svTaskStartExec(4), plen 0: [tid: 12301764] -EVENT[212]: 0.004113275 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[213]: 0.004125025 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461032, size: 6, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.004125025] HEAP: Allocated 6 bytes @ 0x3ffbb728 from task "alloc2" on core 0 by: +EVENT[324]: 0.004248275 - core[1].svTaskStartExec(4), plen 0: [tid: 12299660] +EVENT[325]: 0.004274675 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[326]: 0.004286525 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073458928, size: 6, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.004286525] HEAP: Allocated 6 bytes @ 0x3ffbaef0 from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[214]: 0.004136450 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[215]: 0.004148425 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[216]: 0.004158700 - core[1].svIdle(17), plen 0: [] -EVENT[217]: 0.004177100 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[218]: 0.004229400 - core[0].svPrint(26), plen 69: [msg: I (312) example: Task[0x3ffba9dc]: allocated 6 bytes @ 0x3ffbb728 +EVENT[327]: 0.004297700 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[328]: 0.004309925 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[329]: 0.004320700 - core[1].svIdle(17), plen 0: [] +EVENT[330]: 0.004339100 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[331]: 0.004391650 - core[0].svPrint(26), plen 69: [msg: I (299) example: Task[0x3ffba1a4]: allocated 6 bytes @ 0x3ffbaef0 , lvl: 0, unused: 0] -[0.004229400] LOG: I (312) example: Task[0x3ffba9dc]: allocated 6 bytes @ 0x3ffbb728 -EVENT[219]: 0.004246400 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12299072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[220]: 0.004259550 - core[0].svTaskStartReady(6), plen 0: [tid: 12301764] -EVENT[221]: 0.004275825 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[222]: 0.004286675 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[223]: 0.004297450 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[224]: 0.004311325 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[225]: 0.004322125 - core[1].svTaskStartExec(4), plen 0: [tid: 12301764] -EVENT[226]: 0.004332975 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[227]: 0.004344875 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12299072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[228]: 0.004355450 - core[0].svTaskStartExec(4), plen 0: [tid: 12254080] -EVENT[229]: 0.004367625 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[230]: 0.004394675 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[231]: 0.004405525 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[232]: 0.004417200 - core[1].svTaskStartReady(6), plen 0: [tid: 12254080] -EVENT[233]: 0.004428550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[234]: 0.004446675 - core[0].svTaskStartExec(4), plen 0: [tid: 12254080] -EVENT[235]: 0.004461000 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[236]: 0.004477875 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[237]: 0.004496725 - core[1].svPrint(26), plen 63: [msg: I (312) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb728 +[0.004391650] LOG: I (299) example: Task[0x3ffba1a4]: allocated 6 bytes @ 0x3ffbaef0 +EVENT[332]: 0.004405100 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12296968, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[333]: 0.004418325 - core[0].svTaskStartReady(6), plen 0: [tid: 12299660] +EVENT[334]: 0.004418325 - core[1].svTaskStartReady(6), plen 0: [tid: 12299660] +EVENT[335]: 0.004438850 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[336]: 0.004449700 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[337]: 0.004460525 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[338]: 0.004474625 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[339]: 0.004485350 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[340]: 0.004496325 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[341]: 0.004507800 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[342]: 0.004518275 - core[0].svTaskStartExec(4), plen 0: [tid: 12274964] +EVENT[343]: 0.004535000 - core[1].svTaskStartExec(4), plen 0: [tid: 12299660] +EVENT[344]: 0.004547200 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[345]: 0.004559125 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12296968, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[346]: 0.004570475 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[347]: 0.004581575 - core[0].svTaskStartReady(6), plen 0: [tid: 12274964] +EVENT[348]: 0.004581575 - core[1].svTaskStartReady(6), plen 0: [tid: 12274964] +EVENT[349]: 0.004595225 - core[1].vTaskPriorityInherit(39), plen 5: [pxMutexHolder: 1073433876] +EVENT[350]: 0.004610300 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[351]: 0.004620875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[352]: 0.004631850 - core[0].svTaskStartExec(4), plen 0: [tid: 12274964] +EVENT[353]: 0.004642525 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[354]: 0.004654100 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[355]: 0.004665575 - core[1].svIdle(17), plen 0: [] +EVENT[356]: 0.004680075 - core[0].xTaskPriorityDisinherit(42), plen 5: [pxMutexHolder: 1073433876] +EVENT[357]: 0.004690775 - core[0].svTaskStartReady(6), plen 0: [tid: 12274964] +EVENT[358]: 0.004690775 - core[1].svTaskStartReady(6), plen 0: [tid: 12274964] +EVENT[359]: 0.004704550 - core[0].svTaskStartReady(6), plen 0: [tid: 12299660] +EVENT[360]: 0.004704550 - core[1].svTaskStartReady(6), plen 0: [tid: 12299660] +EVENT[361]: 0.004720275 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[362]: 0.004731750 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[363]: 0.004748350 - core[0].svPrint(26), plen 34: [msg: I (299) example: Wait notify 0 , lvl: 0, unused: 0] -[0.004496725] LOG: I (312) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb728 -EVENT[238]: 0.004524000 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461032, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.004524000] HEAP: Freed bytes @ 0x3ffbb728 from task "free2" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +[0.004748350] LOG: I (299) example: Wait notify 0 +EVENT[364]: 0.004759525 - core[1].svTaskStartExec(4), plen 0: [tid: 12299660] +EVENT[365]: 0.004776775 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[366]: 0.004787675 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[367]: 0.004800000 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[368]: 0.004810750 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[369]: 0.004828350 - core[0].svIdle(17), plen 0: [] +EVENT[370]: 0.004849600 - core[1].svPrint(26), plen 63: [msg: I (299) example: Task[0x3ffbad8c]: free memory @ 0x3ffbaef0 +, lvl: 0, unused: 0] +[0.004849600] LOG: I (299) example: Task[0x3ffbad8c]: free memory @ 0x3ffbaef0 +EVENT[371]: 0.004875275 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073458928, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.004875275] HEAP: Freed bytes @ 0x3ffbaef0 from task "free2" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[239]: 0.004538425 - core[0].svPrint(26), plen 34: [msg: I (312) example: Wait notify 0 -, lvl: 0, unused: 0] -[0.004538425] LOG: I (312) example: Wait notify 0 -EVENT[240]: 0.004553625 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[241]: 0.004567700 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[242]: 0.004581650 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[243]: 0.004592100 - core[1].svIdle(17), plen 0: [] -EVENT[244]: 0.004603225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[245]: 0.004619375 - core[0].svIdle(17), plen 0: [] -EVENT[246]: 0.004666675 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[247]: 0.004680100 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[248]: 0.004695250 - core[1].svIdle(17), plen 0: [] -EVENT[249]: 0.004833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[250]: 0.004849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[251]: 0.004864250 - core[0].svIdle(17), plen 0: [] -EVENT[252]: 0.005666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[253]: 0.005680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[254]: 0.005695225 - core[1].svIdle(17), plen 0: [] -EVENT[255]: 0.005833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[256]: 0.005849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[257]: 0.005864425 - core[0].svIdle(17), plen 0: [] -EVENT[258]: 0.006666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[259]: 0.006679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[260]: 0.006695100 - core[1].svIdle(17), plen 0: [] -EVENT[261]: 0.006833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[262]: 0.006849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[263]: 0.006864250 - core[0].svIdle(17), plen 0: [] -EVENT[264]: 0.007666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[265]: 0.007680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[266]: 0.007695350 - core[1].svIdle(17), plen 0: [] -EVENT[267]: 0.007833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[268]: 0.007849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[269]: 0.007864250 - core[0].svIdle(17), plen 0: [] -EVENT[270]: 0.008666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[271]: 0.008680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[272]: 0.008695125 - core[1].svIdle(17), plen 0: [] -EVENT[273]: 0.008833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[274]: 0.008849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[275]: 0.008868000 - core[0].svIdle(17), plen 0: [] -EVENT[276]: 0.009666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[277]: 0.009679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[278]: 0.009695100 - core[1].svIdle(17), plen 0: [] -EVENT[279]: 0.009833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[280]: 0.009849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[281]: 0.009864250 - core[0].svIdle(17), plen 0: [] -EVENT[282]: 0.010666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[283]: 0.010680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[284]: 0.010695350 - core[1].svIdle(17), plen 0: [] -EVENT[285]: 0.010833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[286]: 0.010849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[287]: 0.010864250 - core[0].svIdle(17), plen 0: [] -EVENT[288]: 0.011666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[289]: 0.011680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[290]: 0.011695125 - core[1].svIdle(17), plen 0: [] -EVENT[291]: 0.011833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[292]: 0.011849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[293]: 0.011864250 - core[0].svIdle(17), plen 0: [] -EVENT[294]: 0.012666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[295]: 0.012680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[296]: 0.012695225 - core[1].svIdle(17), plen 0: [] -EVENT[297]: 0.012833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[298]: 0.012849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[299]: 0.012864425 - core[0].svIdle(17), plen 0: [] -EVENT[300]: 0.013666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[301]: 0.013679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[302]: 0.013695100 - core[1].svIdle(17), plen 0: [] -EVENT[303]: 0.013833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[304]: 0.013849400 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[305]: 0.013864500 - core[0].svIdle(17), plen 0: [] -EVENT[306]: 0.014666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[307]: 0.014680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[308]: 0.014695350 - core[1].svIdle(17), plen 0: [] -EVENT[309]: 0.014833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[310]: 0.014849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[311]: 0.014864250 - core[0].svIdle(17), plen 0: [] -EVENT[312]: 0.015666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[313]: 0.015680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[314]: 0.015695125 - core[1].svIdle(17), plen 0: [] -EVENT[315]: 0.015833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[316]: 0.015849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[317]: 0.015864250 - core[0].svIdle(17), plen 0: [] -EVENT[318]: 0.016666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[319]: 0.016680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[320]: 0.016695225 - core[1].svIdle(17), plen 0: [] -EVENT[321]: 0.016833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[322]: 0.016849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[323]: 0.016864425 - core[0].svIdle(17), plen 0: [] -EVENT[324]: 0.017666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[325]: 0.017679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[326]: 0.017695100 - core[1].svIdle(17), plen 0: [] -EVENT[327]: 0.017833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[328]: 0.017849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[329]: 0.017864250 - core[0].svIdle(17), plen 0: [] -EVENT[330]: 0.018666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[331]: 0.018680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[332]: 0.018695350 - core[1].svIdle(17), plen 0: [] -EVENT[333]: 0.018833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[334]: 0.018849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[335]: 0.018864250 - core[0].svIdle(17), plen 0: [] -EVENT[336]: 0.019666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[337]: 0.019680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[338]: 0.019695125 - core[1].svIdle(17), plen 0: [] -EVENT[339]: 0.019833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[340]: 0.019849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[341]: 0.019864250 - core[0].svIdle(17), plen 0: [] -EVENT[342]: 0.020666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[343]: 0.020680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[344]: 0.020695225 - core[1].svIdle(17), plen 0: [] -EVENT[345]: 0.020833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[346]: 0.020849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[347]: 0.020864425 - core[0].svIdle(17), plen 0: [] -EVENT[348]: 0.021666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[349]: 0.021680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[350]: 0.021695350 - core[1].svIdle(17), plen 0: [] -EVENT[351]: 0.021833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[352]: 0.021849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[353]: 0.021864250 - core[0].svIdle(17), plen 0: [] -EVENT[354]: 0.022666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[355]: 0.022680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[356]: 0.022695125 - core[1].svIdle(17), plen 0: [] -EVENT[357]: 0.022833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[358]: 0.022849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[359]: 0.022864250 - core[0].svIdle(17), plen 0: [] -EVENT[360]: 0.023666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[361]: 0.023680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[362]: 0.023695225 - core[1].svIdle(17), plen 0: [] -EVENT[363]: 0.023833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[364]: 0.023849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[365]: 0.023864425 - core[0].svIdle(17), plen 0: [] -EVENT[366]: 0.024666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[367]: 0.024679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[368]: 0.024695100 - core[1].svIdle(17), plen 0: [] -EVENT[369]: 0.024833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[370]: 0.024849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[371]: 0.024864250 - core[0].svIdle(17), plen 0: [] -EVENT[372]: 0.025666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[373]: 0.025680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[374]: 0.025695350 - core[1].svIdle(17), plen 0: [] -EVENT[375]: 0.025833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[376]: 0.025849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[377]: 0.025864250 - core[0].svIdle(17), plen 0: [] -EVENT[378]: 0.026666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[379]: 0.026680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[380]: 0.026695125 - core[1].svIdle(17), plen 0: [] -EVENT[381]: 0.026833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[382]: 0.026849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[383]: 0.026864250 - core[0].svIdle(17), plen 0: [] -EVENT[384]: 0.027666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[385]: 0.027680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[386]: 0.027695225 - core[1].svIdle(17), plen 0: [] -EVENT[387]: 0.027833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[388]: 0.027849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[389]: 0.027864425 - core[0].svIdle(17), plen 0: [] -EVENT[390]: 0.028666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[391]: 0.028679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[392]: 0.028695100 - core[1].svIdle(17), plen 0: [] -EVENT[393]: 0.028833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[394]: 0.028849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[395]: 0.028864250 - core[0].svIdle(17), plen 0: [] -EVENT[396]: 0.029666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[397]: 0.029680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[398]: 0.029695350 - core[1].svIdle(17), plen 0: [] -EVENT[399]: 0.029833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[400]: 0.029849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[401]: 0.029864250 - core[0].svIdle(17), plen 0: [] -EVENT[402]: 0.030666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[403]: 0.030680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[404]: 0.030695125 - core[1].svIdle(17), plen 0: [] -EVENT[405]: 0.030833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[406]: 0.030849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[407]: 0.030864250 - core[0].svIdle(17), plen 0: [] -EVENT[408]: 0.031666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[409]: 0.031680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[410]: 0.031695225 - core[1].svIdle(17), plen 0: [] -EVENT[411]: 0.031833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[412]: 0.031848825 - core[0].svTaskStartReady(6), plen 0: [tid: 12286700] -EVENT[413]: 0.031861575 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[414]: 0.031877250 - core[0].svTaskStartExec(4), plen 0: [tid: 12286700] -EVENT[415]: 0.031912575 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461032, size: 2, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.031912575] HEAP: Allocated 2 bytes @ 0x3ffbb728 from task "alloc0" on core 0 by: +EVENT[372]: 0.004903000 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[373]: 0.004914400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[374]: 0.004930975 - core[1].svIdle(17), plen 0: [] +EVENT[375]: 0.005448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[376]: 0.005461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[377]: 0.005477300 - core[1].svIdle(17), plen 0: [] +EVENT[378]: 0.005546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[379]: 0.005562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[380]: 0.005577275 - core[0].svIdle(17), plen 0: [] +EVENT[381]: 0.006448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[382]: 0.006461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[383]: 0.006476850 - core[1].svIdle(17), plen 0: [] +EVENT[384]: 0.006546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[385]: 0.006562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[386]: 0.006577075 - core[0].svIdle(17), plen 0: [] +EVENT[387]: 0.007448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[388]: 0.007461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[389]: 0.007476975 - core[1].svIdle(17), plen 0: [] +EVENT[390]: 0.007546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[391]: 0.007562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[392]: 0.007577225 - core[0].svIdle(17), plen 0: [] +EVENT[393]: 0.008448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[394]: 0.008461775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[395]: 0.008476900 - core[1].svIdle(17), plen 0: [] +EVENT[396]: 0.008546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[397]: 0.008562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[398]: 0.008577075 - core[0].svIdle(17), plen 0: [] +EVENT[399]: 0.009448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[400]: 0.009461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[401]: 0.009476850 - core[1].svIdle(17), plen 0: [] +EVENT[402]: 0.009546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[403]: 0.009562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[404]: 0.009577275 - core[0].svIdle(17), plen 0: [] +EVENT[405]: 0.010448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[406]: 0.010461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[407]: 0.010476850 - core[1].svIdle(17), plen 0: [] +EVENT[408]: 0.010546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[409]: 0.010562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[410]: 0.010577075 - core[0].svIdle(17), plen 0: [] +EVENT[411]: 0.011448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[412]: 0.011461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[413]: 0.011476975 - core[1].svIdle(17), plen 0: [] +EVENT[414]: 0.011546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[415]: 0.011562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[416]: 0.011577225 - core[0].svIdle(17), plen 0: [] +EVENT[417]: 0.012448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[418]: 0.012461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[419]: 0.012476975 - core[1].svIdle(17), plen 0: [] +EVENT[420]: 0.012546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[421]: 0.012562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[422]: 0.012577225 - core[0].svIdle(17), plen 0: [] +EVENT[423]: 0.013448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[424]: 0.013461775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[425]: 0.013476900 - core[1].svIdle(17), plen 0: [] +EVENT[426]: 0.013546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[427]: 0.013562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[428]: 0.013577075 - core[0].svIdle(17), plen 0: [] +EVENT[429]: 0.014448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[430]: 0.014461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[431]: 0.014476850 - core[1].svIdle(17), plen 0: [] +EVENT[432]: 0.014546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[433]: 0.014562300 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[434]: 0.014577500 - core[0].svIdle(17), plen 0: [] +EVENT[435]: 0.015448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[436]: 0.015461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[437]: 0.015476850 - core[1].svIdle(17), plen 0: [] +EVENT[438]: 0.015546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[439]: 0.015562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[440]: 0.015577075 - core[0].svIdle(17), plen 0: [] +EVENT[441]: 0.016448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[442]: 0.016461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[443]: 0.016476975 - core[1].svIdle(17), plen 0: [] +EVENT[444]: 0.016546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[445]: 0.016562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[446]: 0.016577225 - core[0].svIdle(17), plen 0: [] +EVENT[447]: 0.017448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[448]: 0.017461775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[449]: 0.017476900 - core[1].svIdle(17), plen 0: [] +EVENT[450]: 0.017546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[451]: 0.017562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[452]: 0.017577075 - core[0].svIdle(17), plen 0: [] +EVENT[453]: 0.018448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[454]: 0.018461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[455]: 0.018476850 - core[1].svIdle(17), plen 0: [] +EVENT[456]: 0.018546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[457]: 0.018562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[458]: 0.018577275 - core[0].svIdle(17), plen 0: [] +EVENT[459]: 0.019448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[460]: 0.019461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[461]: 0.019476850 - core[1].svIdle(17), plen 0: [] +EVENT[462]: 0.019546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[463]: 0.019562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[464]: 0.019577075 - core[0].svIdle(17), plen 0: [] +EVENT[465]: 0.020448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[466]: 0.020461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[467]: 0.020476975 - core[1].svIdle(17), plen 0: [] +EVENT[468]: 0.020546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[469]: 0.020562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[470]: 0.020577225 - core[0].svIdle(17), plen 0: [] +EVENT[471]: 0.021448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[472]: 0.021461775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[473]: 0.021476900 - core[1].svIdle(17), plen 0: [] +EVENT[474]: 0.021546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[475]: 0.021562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[476]: 0.021577075 - core[0].svIdle(17), plen 0: [] +EVENT[477]: 0.022448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[478]: 0.022461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[479]: 0.022476850 - core[1].svIdle(17), plen 0: [] +EVENT[480]: 0.022546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[481]: 0.022562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[482]: 0.022577275 - core[0].svIdle(17), plen 0: [] +EVENT[483]: 0.023448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[484]: 0.023461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[485]: 0.023476850 - core[1].svIdle(17), plen 0: [] +EVENT[486]: 0.023546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[487]: 0.023562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[488]: 0.023577075 - core[0].svIdle(17), plen 0: [] +EVENT[489]: 0.024448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[490]: 0.024465975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[491]: 0.024481125 - core[1].svIdle(17), plen 0: [] +EVENT[492]: 0.024546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[493]: 0.024562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[494]: 0.024577075 - core[0].svIdle(17), plen 0: [] +EVENT[495]: 0.025448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[496]: 0.025461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[497]: 0.025476850 - core[1].svIdle(17), plen 0: [] +EVENT[498]: 0.025546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[499]: 0.025562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[500]: 0.025577275 - core[0].svIdle(17), plen 0: [] +EVENT[501]: 0.026448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[502]: 0.026461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[503]: 0.026476850 - core[1].svIdle(17), plen 0: [] +EVENT[504]: 0.026546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[505]: 0.026562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[506]: 0.026577075 - core[0].svIdle(17), plen 0: [] +EVENT[507]: 0.027448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[508]: 0.027461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[509]: 0.027476975 - core[1].svIdle(17), plen 0: [] +EVENT[510]: 0.027546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[511]: 0.027562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[512]: 0.027577225 - core[0].svIdle(17), plen 0: [] +EVENT[513]: 0.028448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[514]: 0.028461775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[515]: 0.028476900 - core[1].svIdle(17), plen 0: [] +EVENT[516]: 0.028546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[517]: 0.028562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[518]: 0.028577075 - core[0].svIdle(17), plen 0: [] +EVENT[519]: 0.029448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[520]: 0.029461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[521]: 0.029476850 - core[1].svIdle(17), plen 0: [] +EVENT[522]: 0.029546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[523]: 0.029562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[524]: 0.029577275 - core[0].svIdle(17), plen 0: [] +EVENT[525]: 0.030448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[526]: 0.030461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[527]: 0.030476850 - core[1].svIdle(17), plen 0: [] +EVENT[528]: 0.030546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[529]: 0.030562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[530]: 0.030577075 - core[0].svIdle(17), plen 0: [] +EVENT[531]: 0.031448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[532]: 0.031461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[533]: 0.031476975 - core[1].svIdle(17), plen 0: [] +EVENT[534]: 0.031546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[535]: 0.031562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[536]: 0.031577225 - core[0].svIdle(17), plen 0: [] +EVENT[537]: 0.032448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[538]: 0.032461775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[539]: 0.032476900 - core[1].svIdle(17), plen 0: [] +EVENT[540]: 0.032546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[541]: 0.032561625 - core[0].svTaskStartReady(6), plen 0: [tid: 12284596] +EVENT[542]: 0.032561625 - core[1].svTaskStartReady(6), plen 0: [tid: 12284596] +EVENT[543]: 0.032574275 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[544]: 0.032589950 - core[0].svTaskStartExec(4), plen 0: [tid: 12284596] +EVENT[545]: 0.032626375 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073458928, size: 2, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.032626375] HEAP: Allocated 2 bytes @ 0x3ffbaef0 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[416]: 0.031951200 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461048, size: 4, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.031951200] HEAP: Allocated 4 bytes @ 0x3ffbb738 from task "alloc0" on core 0 by: +EVENT[546]: 0.032661800 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073458944, size: 4, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.032661800] HEAP: Allocated 4 bytes @ 0x3ffbaf00 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[417]: 0.031968100 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[418]: 0.031984075 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[419]: 0.032048250 - core[0].svPrint(26), plen 69: [msg: I (340) example: Task[0x3ffb7aec]: allocated 4 bytes @ 0x3ffbb738 +EVENT[547]: 0.032682850 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[548]: 0.032698775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[549]: 0.032751325 - core[0].svPrint(26), plen 69: [msg: I (328) example: Task[0x3ffb72b4]: allocated 4 bytes @ 0x3ffbaf00 , lvl: 0, unused: 0] -[0.032048250] LOG: I (340) example: Task[0x3ffb7aec]: allocated 4 bytes @ 0x3ffbb738 -EVENT[420]: 0.032061825 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12287056, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[421]: 0.032074950 - core[0].svTaskStartReady(6), plen 0: [tid: 12289748] -EVENT[422]: 0.032091150 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[423]: 0.032102025 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[424]: 0.032112800 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[425]: 0.032126700 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[426]: 0.032137500 - core[1].svTaskStartExec(4), plen 0: [tid: 12289748] -EVENT[427]: 0.032148350 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[428]: 0.032160325 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12287056, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[429]: 0.032170550 - core[0].svIdle(17), plen 0: [] -EVENT[430]: 0.032182025 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[431]: 0.032202300 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[432]: 0.032265850 - core[1].svPrint(26), plen 63: [msg: I (340) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb738 +[0.032751325] LOG: I (328) example: Task[0x3ffb72b4]: allocated 4 bytes @ 0x3ffbaf00 +EVENT[550]: 0.032764775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12284952, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[551]: 0.032778000 - core[0].svTaskStartReady(6), plen 0: [tid: 12287644] +EVENT[552]: 0.032778000 - core[1].svTaskStartReady(6), plen 0: [tid: 12287644] +EVENT[553]: 0.032794250 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[554]: 0.032805200 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[555]: 0.032815950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[556]: 0.032829700 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[557]: 0.032840425 - core[1].svTaskStartExec(4), plen 0: [tid: 12287644] +EVENT[558]: 0.032851225 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[559]: 0.032863225 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12284952, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[560]: 0.032873450 - core[0].svIdle(17), plen 0: [] +EVENT[561]: 0.032885200 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[562]: 0.032901475 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[563]: 0.032949375 - core[1].svPrint(26), plen 63: [msg: I (328) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbaf00 , lvl: 0, unused: 0] -[0.032265850] LOG: I (340) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb738 -EVENT[433]: 0.032287050 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461048, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.032287050] HEAP: Freed bytes @ 0x3ffbb738 from task "free0" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +[0.032949375] LOG: I (328) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbaf00 +EVENT[564]: 0.032975100 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073458944, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.032975100] HEAP: Freed bytes @ 0x3ffbaf00 from task "free0" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[434]: 0.032313925 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[435]: 0.032325350 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[436]: 0.032342050 - core[1].svIdle(17), plen 0: [] -EVENT[437]: 0.032666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[438]: 0.032679850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[439]: 0.032695550 - core[1].svIdle(17), plen 0: [] -EVENT[440]: 0.032833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[441]: 0.032848800 - core[0].svTaskStartReady(6), plen 0: [tid: 12292716] -EVENT[442]: 0.032861575 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[443]: 0.032877375 - core[0].svTaskStartExec(4), plen 0: [tid: 12292716] -EVENT[444]: 0.032912600 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461048, size: 4, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.032912600] HEAP: Allocated 4 bytes @ 0x3ffbb738 from task "alloc1" on core 0 by: +EVENT[565]: 0.033002525 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[566]: 0.033013925 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[567]: 0.033030500 - core[1].svIdle(17), plen 0: [] +EVENT[568]: 0.033448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[569]: 0.033461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[570]: 0.033477300 - core[1].svIdle(17), plen 0: [] +EVENT[571]: 0.033546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[572]: 0.033561675 - core[0].svTaskStartReady(6), plen 0: [tid: 12290612] +EVENT[573]: 0.033561675 - core[1].svTaskStartReady(6), plen 0: [tid: 12290612] +EVENT[574]: 0.033573500 - core[0].svTaskStartReady(6), plen 0: [tid: 12296612] +EVENT[575]: 0.033573500 - core[1].svTaskStartReady(6), plen 0: [tid: 12296612] +EVENT[576]: 0.033586000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[577]: 0.033601675 - core[0].svTaskStartExec(4), plen 0: [tid: 12290612] +EVENT[578]: 0.033637950 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073458944, size: 4, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.033637950] HEAP: Allocated 4 bytes @ 0x3ffbaf00 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[445]: 0.032947150 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461064, size: 8, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.032947150] HEAP: Allocated 8 bytes @ 0x3ffbb748 from task "alloc1" on core 0 by: +EVENT[579]: 0.033673375 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073458960, size: 8, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.033673375] HEAP: Allocated 8 bytes @ 0x3ffbaf10 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[446]: 0.032964075 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[447]: 0.032984250 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[448]: 0.033048500 - core[0].svPrint(26), plen 69: [msg: I (341) example: Task[0x3ffb926c]: allocated 8 bytes @ 0x3ffbb748 +EVENT[580]: 0.033690325 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[581]: 0.033706325 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[582]: 0.033762425 - core[0].svPrint(26), plen 69: [msg: I (329) example: Task[0x3ffb8a34]: allocated 8 bytes @ 0x3ffbaf10 , lvl: 0, unused: 0] -[0.033048500] LOG: I (341) example: Task[0x3ffb926c]: allocated 8 bytes @ 0x3ffbb748 -EVENT[449]: 0.033062225 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12293072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[450]: 0.033075450 - core[0].svTaskStartReady(6), plen 0: [tid: 12295764] -EVENT[451]: 0.033091700 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[452]: 0.033102550 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[453]: 0.033113300 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[454]: 0.033127025 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[455]: 0.033137800 - core[1].svTaskStartExec(4), plen 0: [tid: 12295764] -EVENT[456]: 0.033148550 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[457]: 0.033160550 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12293072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[458]: 0.033171875 - core[0].svIdle(17), plen 0: [] -EVENT[459]: 0.033184100 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[460]: 0.033200475 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[461]: 0.033263975 - core[1].svPrint(26), plen 63: [msg: I (341) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb748 -, lvl: 0, unused: 0] -[0.033263975] LOG: I (341) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb748 -EVENT[462]: 0.033288500 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461064, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.033288500] HEAP: Freed bytes @ 0x3ffbb748 from task "free1" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 -/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 -/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 - -EVENT[463]: 0.033315625 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[464]: 0.033327050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[465]: 0.033343625 - core[1].svIdle(17), plen 0: [] -EVENT[466]: 0.033666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[467]: 0.033679850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[468]: 0.033695550 - core[1].svIdle(17), plen 0: [] -EVENT[469]: 0.033833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[470]: 0.033848800 - core[0].svTaskStartReady(6), plen 0: [tid: 12298716] -EVENT[471]: 0.033861575 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[472]: 0.033877250 - core[0].svTaskStartExec(4), plen 0: [tid: 12298716] -EVENT[473]: 0.033912650 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461064, size: 6, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.033912650] HEAP: Allocated 6 bytes @ 0x3ffbb748 from task "alloc2" on core 0 by: +[0.033762425] LOG: I (329) example: Task[0x3ffb8a34]: allocated 8 bytes @ 0x3ffbaf10 +EVENT[583]: 0.033775900 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12290968, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[584]: 0.033789100 - core[0].svTaskStartReady(6), plen 0: [tid: 12293660] +EVENT[585]: 0.033789100 - core[1].svTaskStartReady(6), plen 0: [tid: 12293660] +EVENT[586]: 0.033805450 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[587]: 0.033816325 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[588]: 0.033827125 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[589]: 0.033840925 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[590]: 0.033852750 - core[1].svTaskStartExec(4), plen 0: [tid: 12293660] +EVENT[591]: 0.033864000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[592]: 0.033875950 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12290968, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[593]: 0.033887525 - core[0].svTaskStartExec(4), plen 0: [tid: 12296612] +EVENT[594]: 0.033900150 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[595]: 0.033918850 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[596]: 0.033930825 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073458976, size: 6, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.033930825] HEAP: Allocated 6 bytes @ 0x3ffbaf20 from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[474]: 0.033947050 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461080, size: 12, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.033947050] HEAP: Allocated 12 bytes @ 0x3ffbb758 from task "alloc2" on core 0 by: +EVENT[597]: 0.033971825 - core[1].svPrint(26), plen 63: [msg: I (329) example: Task[0x3ffb961c]: free memory @ 0x3ffbaf10 +, lvl: 0, unused: 0] +[0.033971825] LOG: I (329) example: Task[0x3ffb961c]: free memory @ 0x3ffbaf10 +EVENT[598]: 0.033987775 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073458992, size: 12, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.033987775] HEAP: Allocated 12 bytes @ 0x3ffbaf30 from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[475]: 0.033963950 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[476]: 0.033980050 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[477]: 0.034050525 - core[0].svPrint(26), plen 70: [msg: I (342) example: Task[0x3ffba9dc]: allocated 12 bytes @ 0x3ffbb758 -, lvl: 0, unused: 0] -[0.034050525] LOG: I (342) example: Task[0x3ffba9dc]: allocated 12 bytes @ 0x3ffbb758 -EVENT[478]: 0.034068350 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12299072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[479]: 0.034081575 - core[0].svTaskStartReady(6), plen 0: [tid: 12301764] -EVENT[480]: 0.034097875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[481]: 0.034108725 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[482]: 0.034119500 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[483]: 0.034133225 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[484]: 0.034144100 - core[1].svTaskStartExec(4), plen 0: [tid: 12301764] -EVENT[485]: 0.034154925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[486]: 0.034166800 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12299072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[487]: 0.034178075 - core[0].svIdle(17), plen 0: [] -EVENT[488]: 0.034189725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[489]: 0.034206100 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[490]: 0.034269650 - core[1].svPrint(26), plen 63: [msg: I (342) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb758 -, lvl: 0, unused: 0] -[0.034269650] LOG: I (342) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb758 -EVENT[491]: 0.034290850 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461080, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.034290850] HEAP: Freed bytes @ 0x3ffbb758 from task "free2" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +EVENT[599]: 0.034002150 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073458960, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.034002150] HEAP: Freed bytes @ 0x3ffbaf10 from task "free1" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[492]: 0.034321900 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[493]: 0.034333375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[494]: 0.034350075 - core[1].svIdle(17), plen 0: [] -EVENT[495]: 0.034666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[496]: 0.034679875 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[497]: 0.034695450 - core[1].svIdle(17), plen 0: [] -EVENT[498]: 0.034833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[499]: 0.034849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[500]: 0.034864425 - core[0].svIdle(17), plen 0: [] -EVENT[501]: 0.035666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[502]: 0.035679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[503]: 0.035695100 - core[1].svIdle(17), plen 0: [] -EVENT[504]: 0.035833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[505]: 0.035849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[506]: 0.035864250 - core[0].svIdle(17), plen 0: [] -EVENT[507]: 0.036666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[508]: 0.036680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[509]: 0.036695350 - core[1].svIdle(17), plen 0: [] -EVENT[510]: 0.036833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[511]: 0.036849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[512]: 0.036864250 - core[0].svIdle(17), plen 0: [] -EVENT[513]: 0.037666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[514]: 0.037680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[515]: 0.037695125 - core[1].svIdle(17), plen 0: [] -EVENT[516]: 0.037833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[517]: 0.037849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[518]: 0.037864250 - core[0].svIdle(17), plen 0: [] -EVENT[519]: 0.038666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[520]: 0.038680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[521]: 0.038695225 - core[1].svIdle(17), plen 0: [] -EVENT[522]: 0.038833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[523]: 0.038849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[524]: 0.038864425 - core[0].svIdle(17), plen 0: [] -EVENT[525]: 0.039666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[526]: 0.039679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[527]: 0.039695100 - core[1].svIdle(17), plen 0: [] -EVENT[528]: 0.039833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[529]: 0.039849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[530]: 0.039864250 - core[0].svIdle(17), plen 0: [] -EVENT[531]: 0.040666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[532]: 0.040680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[533]: 0.040695350 - core[1].svIdle(17), plen 0: [] -EVENT[534]: 0.040833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[535]: 0.040849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[536]: 0.040864250 - core[0].svIdle(17), plen 0: [] -EVENT[537]: 0.041666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[538]: 0.041680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[539]: 0.041695125 - core[1].svIdle(17), plen 0: [] -EVENT[540]: 0.041833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[541]: 0.041849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[542]: 0.041864250 - core[0].svIdle(17), plen 0: [] -EVENT[543]: 0.042666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[544]: 0.042680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[545]: 0.042695225 - core[1].svIdle(17), plen 0: [] -EVENT[546]: 0.042833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[547]: 0.042849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[548]: 0.042864425 - core[0].svIdle(17), plen 0: [] -EVENT[549]: 0.043666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[550]: 0.043679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[551]: 0.043695100 - core[1].svIdle(17), plen 0: [] -EVENT[552]: 0.043833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[553]: 0.043849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[554]: 0.043864250 - core[0].svIdle(17), plen 0: [] -EVENT[555]: 0.044666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[556]: 0.044684200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[557]: 0.044699325 - core[1].svIdle(17), plen 0: [] -EVENT[558]: 0.044833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[559]: 0.044849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[560]: 0.044864250 - core[0].svIdle(17), plen 0: [] -EVENT[561]: 0.045666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[562]: 0.045680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[563]: 0.045695225 - core[1].svIdle(17), plen 0: [] -EVENT[564]: 0.045833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[565]: 0.045849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[566]: 0.045864425 - core[0].svIdle(17), plen 0: [] -EVENT[567]: 0.046666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[568]: 0.046679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[569]: 0.046695100 - core[1].svIdle(17), plen 0: [] -EVENT[570]: 0.046833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[571]: 0.046849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[572]: 0.046864250 - core[0].svIdle(17), plen 0: [] -EVENT[573]: 0.047666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[574]: 0.047680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[575]: 0.047695350 - core[1].svIdle(17), plen 0: [] -EVENT[576]: 0.047833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[577]: 0.047849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[578]: 0.047864250 - core[0].svIdle(17), plen 0: [] -EVENT[579]: 0.048666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[580]: 0.048680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[581]: 0.048695125 - core[1].svIdle(17), plen 0: [] -EVENT[582]: 0.048833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[583]: 0.048849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[584]: 0.048864250 - core[0].svIdle(17), plen 0: [] -EVENT[585]: 0.049666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[586]: 0.049680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[587]: 0.049695225 - core[1].svIdle(17), plen 0: [] -EVENT[588]: 0.049833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[589]: 0.049849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[590]: 0.049864425 - core[0].svIdle(17), plen 0: [] -EVENT[591]: 0.050666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[592]: 0.050679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[593]: 0.050695100 - core[1].svIdle(17), plen 0: [] -EVENT[594]: 0.050833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[595]: 0.050849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[596]: 0.050864250 - core[0].svIdle(17), plen 0: [] -EVENT[597]: 0.051666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[598]: 0.051680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[599]: 0.051695350 - core[1].svIdle(17), plen 0: [] -EVENT[600]: 0.051833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[601]: 0.051849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[602]: 0.051864250 - core[0].svIdle(17), plen 0: [] -EVENT[603]: 0.052666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[604]: 0.052680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[605]: 0.052695125 - core[1].svIdle(17), plen 0: [] -EVENT[606]: 0.052833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[607]: 0.052849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[608]: 0.052864250 - core[0].svIdle(17), plen 0: [] -EVENT[609]: 0.053666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[610]: 0.053680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[611]: 0.053695225 - core[1].svIdle(17), plen 0: [] -EVENT[612]: 0.053833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[613]: 0.053849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[614]: 0.053864425 - core[0].svIdle(17), plen 0: [] -EVENT[615]: 0.054666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[616]: 0.054679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[617]: 0.054695100 - core[1].svIdle(17), plen 0: [] -EVENT[618]: 0.054833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[619]: 0.054849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[620]: 0.054864250 - core[0].svIdle(17), plen 0: [] -EVENT[621]: 0.055666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[622]: 0.055680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[623]: 0.055695350 - core[1].svIdle(17), plen 0: [] -EVENT[624]: 0.055833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[625]: 0.055849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[626]: 0.055864250 - core[0].svIdle(17), plen 0: [] -EVENT[627]: 0.056666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[628]: 0.056684225 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[629]: 0.056699375 - core[1].svIdle(17), plen 0: [] -EVENT[630]: 0.056833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[631]: 0.056849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[632]: 0.056864250 - core[0].svIdle(17), plen 0: [] -EVENT[633]: 0.057666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[634]: 0.057680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[635]: 0.057695225 - core[1].svIdle(17), plen 0: [] -EVENT[636]: 0.057833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[637]: 0.057849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[638]: 0.057864425 - core[0].svIdle(17), plen 0: [] -EVENT[639]: 0.058666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[640]: 0.058679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[641]: 0.058695100 - core[1].svIdle(17), plen 0: [] -EVENT[642]: 0.058833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[643]: 0.058849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[644]: 0.058864250 - core[0].svIdle(17), plen 0: [] -EVENT[645]: 0.059666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[646]: 0.059680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[647]: 0.059695350 - core[1].svIdle(17), plen 0: [] -EVENT[648]: 0.059833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[649]: 0.059849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[650]: 0.059864250 - core[0].svIdle(17), plen 0: [] -EVENT[651]: 0.060666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[652]: 0.060680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[653]: 0.060695125 - core[1].svIdle(17), plen 0: [] -EVENT[654]: 0.060833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[655]: 0.060849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[656]: 0.060864250 - core[0].svIdle(17), plen 0: [] -EVENT[657]: 0.061666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[658]: 0.061680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[659]: 0.061695225 - core[1].svIdle(17), plen 0: [] -EVENT[660]: 0.061833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[661]: 0.061848825 - core[0].svTaskStartReady(6), plen 0: [tid: 12286700] -EVENT[662]: 0.061861575 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[663]: 0.061877250 - core[0].svTaskStartExec(4), plen 0: [tid: 12286700] -EVENT[664]: 0.061912575 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461080, size: 3, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.061912575] HEAP: Allocated 3 bytes @ 0x3ffbb758 from task "alloc0" on core 0 by: +EVENT[600]: 0.034014600 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[601]: 0.034034500 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[602]: 0.034045425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[603]: 0.034056975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[604]: 0.034074925 - core[1].svIdle(17), plen 0: [] +EVENT[605]: 0.034092925 - core[0].svPrint(26), plen 70: [msg: I (329) example: Task[0x3ffba1a4]: allocated 12 bytes @ 0x3ffbaf30 +, lvl: 0, unused: 0] +[0.034092925] LOG: I (329) example: Task[0x3ffba1a4]: allocated 12 bytes @ 0x3ffbaf30 +EVENT[606]: 0.034106375 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12296968, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[607]: 0.034123750 - core[0].svTaskStartReady(6), plen 0: [tid: 12299660] +EVENT[608]: 0.034123750 - core[1].svTaskStartReady(6), plen 0: [tid: 12299660] +EVENT[609]: 0.034140100 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[610]: 0.034150975 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[611]: 0.034161775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[612]: 0.034175600 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[613]: 0.034186525 - core[1].svTaskStartExec(4), plen 0: [tid: 12299660] +EVENT[614]: 0.034197375 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[615]: 0.034209325 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12296968, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[616]: 0.034220550 - core[0].svIdle(17), plen 0: [] +EVENT[617]: 0.034232350 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[618]: 0.034248625 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[619]: 0.034296400 - core[1].svPrint(26), plen 63: [msg: I (329) example: Task[0x3ffbad8c]: free memory @ 0x3ffbaf30 +, lvl: 0, unused: 0] +[0.034296400] LOG: I (329) example: Task[0x3ffbad8c]: free memory @ 0x3ffbaf30 +EVENT[620]: 0.034317775 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073458992, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.034317775] HEAP: Freed bytes @ 0x3ffbaf30 from task "free2" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[621]: 0.034345175 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[622]: 0.034356600 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[623]: 0.034373150 - core[1].svIdle(17), plen 0: [] +EVENT[624]: 0.034448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[625]: 0.034461625 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[626]: 0.034477200 - core[1].svIdle(17), plen 0: [] +EVENT[627]: 0.034546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[628]: 0.034562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[629]: 0.034577075 - core[0].svIdle(17), plen 0: [] +EVENT[630]: 0.035448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[631]: 0.035461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[632]: 0.035476850 - core[1].svIdle(17), plen 0: [] +EVENT[633]: 0.035546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[634]: 0.035562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[635]: 0.035577275 - core[0].svIdle(17), plen 0: [] +EVENT[636]: 0.036448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[637]: 0.036461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[638]: 0.036476850 - core[1].svIdle(17), plen 0: [] +EVENT[639]: 0.036546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[640]: 0.036566300 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[641]: 0.036581525 - core[0].svIdle(17), plen 0: [] +EVENT[642]: 0.037448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[643]: 0.037461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[644]: 0.037476850 - core[1].svIdle(17), plen 0: [] +EVENT[645]: 0.037546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[646]: 0.037562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[647]: 0.037577075 - core[0].svIdle(17), plen 0: [] +EVENT[648]: 0.038448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[649]: 0.038461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[650]: 0.038476975 - core[1].svIdle(17), plen 0: [] +EVENT[651]: 0.038546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[652]: 0.038562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[653]: 0.038577225 - core[0].svIdle(17), plen 0: [] +EVENT[654]: 0.039448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[655]: 0.039461775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[656]: 0.039476900 - core[1].svIdle(17), plen 0: [] +EVENT[657]: 0.039546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[658]: 0.039562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[659]: 0.039577075 - core[0].svIdle(17), plen 0: [] +EVENT[660]: 0.040448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[661]: 0.040461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[662]: 0.040476850 - core[1].svIdle(17), plen 0: [] +EVENT[663]: 0.040546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[664]: 0.040562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[665]: 0.040577275 - core[0].svIdle(17), plen 0: [] +EVENT[666]: 0.041448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[667]: 0.041461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[668]: 0.041476850 - core[1].svIdle(17), plen 0: [] +EVENT[669]: 0.041546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[670]: 0.041562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[671]: 0.041577075 - core[0].svIdle(17), plen 0: [] +EVENT[672]: 0.042448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[673]: 0.042461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[674]: 0.042476975 - core[1].svIdle(17), plen 0: [] +EVENT[675]: 0.042546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[676]: 0.042562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[677]: 0.042577225 - core[0].svIdle(17), plen 0: [] +EVENT[678]: 0.043448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[679]: 0.043461775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[680]: 0.043476900 - core[1].svIdle(17), plen 0: [] +EVENT[681]: 0.043546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[682]: 0.043562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[683]: 0.043577075 - core[0].svIdle(17), plen 0: [] +EVENT[684]: 0.044448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[685]: 0.044461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[686]: 0.044476850 - core[1].svIdle(17), plen 0: [] +EVENT[687]: 0.044546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[688]: 0.044562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[689]: 0.044577275 - core[0].svIdle(17), plen 0: [] +EVENT[690]: 0.045448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[691]: 0.045461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[692]: 0.045476850 - core[1].svIdle(17), plen 0: [] +EVENT[693]: 0.045546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[694]: 0.045562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[695]: 0.045577075 - core[0].svIdle(17), plen 0: [] +EVENT[696]: 0.046448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[697]: 0.046461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[698]: 0.046476975 - core[1].svIdle(17), plen 0: [] +EVENT[699]: 0.046546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[700]: 0.046562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[701]: 0.046577225 - core[0].svIdle(17), plen 0: [] +EVENT[702]: 0.047448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[703]: 0.047461775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[704]: 0.047476900 - core[1].svIdle(17), plen 0: [] +EVENT[705]: 0.047546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[706]: 0.047562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[707]: 0.047577075 - core[0].svIdle(17), plen 0: [] +EVENT[708]: 0.048448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[709]: 0.048461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[710]: 0.048476850 - core[1].svIdle(17), plen 0: [] +EVENT[711]: 0.048546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[712]: 0.048566300 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[713]: 0.048581500 - core[0].svIdle(17), plen 0: [] +EVENT[714]: 0.049448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[715]: 0.049461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[716]: 0.049476850 - core[1].svIdle(17), plen 0: [] +EVENT[717]: 0.049546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[718]: 0.049562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[719]: 0.049577075 - core[0].svIdle(17), plen 0: [] +EVENT[720]: 0.050448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[721]: 0.050461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[722]: 0.050476975 - core[1].svIdle(17), plen 0: [] +EVENT[723]: 0.050546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[724]: 0.050562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[725]: 0.050577225 - core[0].svIdle(17), plen 0: [] +EVENT[726]: 0.051448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[727]: 0.051461775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[728]: 0.051476900 - core[1].svIdle(17), plen 0: [] +EVENT[729]: 0.051546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[730]: 0.051562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[731]: 0.051577075 - core[0].svIdle(17), plen 0: [] +EVENT[732]: 0.052448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[733]: 0.052461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[734]: 0.052476850 - core[1].svIdle(17), plen 0: [] +EVENT[735]: 0.052546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[736]: 0.052562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[737]: 0.052577275 - core[0].svIdle(17), plen 0: [] +EVENT[738]: 0.053448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[739]: 0.053461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[740]: 0.053476850 - core[1].svIdle(17), plen 0: [] +EVENT[741]: 0.053546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[742]: 0.053562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[743]: 0.053577075 - core[0].svIdle(17), plen 0: [] +EVENT[744]: 0.054448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[745]: 0.054461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[746]: 0.054476975 - core[1].svIdle(17), plen 0: [] +EVENT[747]: 0.054546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[748]: 0.054562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[749]: 0.054577225 - core[0].svIdle(17), plen 0: [] +EVENT[750]: 0.055448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[751]: 0.055461775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[752]: 0.055476900 - core[1].svIdle(17), plen 0: [] +EVENT[753]: 0.055546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[754]: 0.055562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[755]: 0.055577075 - core[0].svIdle(17), plen 0: [] +EVENT[756]: 0.056448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[757]: 0.056461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[758]: 0.056476850 - core[1].svIdle(17), plen 0: [] +EVENT[759]: 0.056546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[760]: 0.056562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[761]: 0.056577275 - core[0].svIdle(17), plen 0: [] +EVENT[762]: 0.057448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[763]: 0.057461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[764]: 0.057476850 - core[1].svIdle(17), plen 0: [] +EVENT[765]: 0.057546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[766]: 0.057562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[767]: 0.057577075 - core[0].svIdle(17), plen 0: [] +EVENT[768]: 0.058448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[769]: 0.058461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[770]: 0.058476975 - core[1].svIdle(17), plen 0: [] +EVENT[771]: 0.058546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[772]: 0.058562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[773]: 0.058577225 - core[0].svIdle(17), plen 0: [] +EVENT[774]: 0.059448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[775]: 0.059461775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[776]: 0.059476900 - core[1].svIdle(17), plen 0: [] +EVENT[777]: 0.059546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[778]: 0.059562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[779]: 0.059577075 - core[0].svIdle(17), plen 0: [] +EVENT[780]: 0.060448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[781]: 0.060461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[782]: 0.060476850 - core[1].svIdle(17), plen 0: [] +EVENT[783]: 0.060546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[784]: 0.060566300 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[785]: 0.060581500 - core[0].svIdle(17), plen 0: [] +EVENT[786]: 0.061448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[787]: 0.061461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[788]: 0.061476850 - core[1].svIdle(17), plen 0: [] +EVENT[789]: 0.061546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[790]: 0.061562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[791]: 0.061577075 - core[0].svIdle(17), plen 0: [] +EVENT[792]: 0.062448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[793]: 0.062461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[794]: 0.062476975 - core[1].svIdle(17), plen 0: [] +EVENT[795]: 0.062546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[796]: 0.062561625 - core[0].svTaskStartReady(6), plen 0: [tid: 12284596] +EVENT[797]: 0.062561625 - core[1].svTaskStartReady(6), plen 0: [tid: 12284596] +EVENT[798]: 0.062574225 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[799]: 0.062589875 - core[0].svTaskStartExec(4), plen 0: [tid: 12284596] +EVENT[800]: 0.062624900 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073458960, size: 3, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.062624900] HEAP: Allocated 3 bytes @ 0x3ffbaf10 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[665]: 0.061947000 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461096, size: 6, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.061947000] HEAP: Allocated 6 bytes @ 0x3ffbb768 from task "alloc0" on core 0 by: +EVENT[801]: 0.062660375 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073458992, size: 6, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.062660375] HEAP: Allocated 6 bytes @ 0x3ffbaf30 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[666]: 0.061964025 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[667]: 0.061980025 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[668]: 0.062044275 - core[0].svPrint(26), plen 69: [msg: I (370) example: Task[0x3ffb7aec]: allocated 6 bytes @ 0x3ffbb768 +EVENT[802]: 0.062677300 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[803]: 0.062693250 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[804]: 0.062745775 - core[0].svPrint(26), plen 69: [msg: I (358) example: Task[0x3ffb72b4]: allocated 6 bytes @ 0x3ffbaf30 , lvl: 0, unused: 0] -[0.062044275] LOG: I (370) example: Task[0x3ffb7aec]: allocated 6 bytes @ 0x3ffbb768 -EVENT[669]: 0.062062075 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12287056, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[670]: 0.062075200 - core[0].svTaskStartReady(6), plen 0: [tid: 12289748] -EVENT[671]: 0.062091350 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[672]: 0.062102400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[673]: 0.062113150 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[674]: 0.062127150 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[675]: 0.062138000 - core[1].svTaskStartExec(4), plen 0: [tid: 12289748] -EVENT[676]: 0.062148875 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[677]: 0.062160875 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12287056, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[678]: 0.062171200 - core[0].svIdle(17), plen 0: [] -EVENT[679]: 0.062183675 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[680]: 0.062199850 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[681]: 0.062263400 - core[1].svPrint(26), plen 63: [msg: I (370) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb768 +[0.062745775] LOG: I (358) example: Task[0x3ffb72b4]: allocated 6 bytes @ 0x3ffbaf30 +EVENT[805]: 0.062759250 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12284952, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[806]: 0.062772450 - core[0].svTaskStartReady(6), plen 0: [tid: 12287644] +EVENT[807]: 0.062772450 - core[1].svTaskStartReady(6), plen 0: [tid: 12287644] +EVENT[808]: 0.062792900 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[809]: 0.062803850 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[810]: 0.062814600 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[811]: 0.062828500 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[812]: 0.062839300 - core[1].svTaskStartExec(4), plen 0: [tid: 12287644] +EVENT[813]: 0.062850025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[814]: 0.062862150 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12284952, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[815]: 0.062872350 - core[0].svIdle(17), plen 0: [] +EVENT[816]: 0.062884100 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[817]: 0.062900450 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[818]: 0.062948325 - core[1].svPrint(26), plen 63: [msg: I (358) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbaf30 , lvl: 0, unused: 0] -[0.062263400] LOG: I (370) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb768 -EVENT[682]: 0.062284400 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461096, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.062284400] HEAP: Freed bytes @ 0x3ffbb768 from task "free0" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +[0.062948325] LOG: I (358) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbaf30 +EVENT[819]: 0.062969525 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073458992, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.062969525] HEAP: Freed bytes @ 0x3ffbaf30 from task "free0" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[683]: 0.062314725 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[684]: 0.062326200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[685]: 0.062342900 - core[1].svIdle(17), plen 0: [] -EVENT[686]: 0.062666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[687]: 0.062679875 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[688]: 0.062695450 - core[1].svIdle(17), plen 0: [] -EVENT[689]: 0.062833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[690]: 0.062848825 - core[0].svTaskStartReady(6), plen 0: [tid: 12292716] -EVENT[691]: 0.062861575 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[692]: 0.062877250 - core[0].svTaskStartExec(4), plen 0: [tid: 12292716] -EVENT[693]: 0.062912575 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461096, size: 6, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.062912575] HEAP: Allocated 6 bytes @ 0x3ffbb768 from task "alloc1" on core 0 by: +EVENT[820]: 0.062996800 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[821]: 0.063008250 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[822]: 0.063024950 - core[1].svIdle(17), plen 0: [] +EVENT[823]: 0.063448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[824]: 0.063461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[825]: 0.063477300 - core[1].svIdle(17), plen 0: [] +EVENT[826]: 0.063546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[827]: 0.063561625 - core[0].svTaskStartReady(6), plen 0: [tid: 12290612] +EVENT[828]: 0.063561625 - core[1].svTaskStartReady(6), plen 0: [tid: 12290612] +EVENT[829]: 0.063573500 - core[0].svTaskStartReady(6), plen 0: [tid: 12296612] +EVENT[830]: 0.063573500 - core[1].svTaskStartReady(6), plen 0: [tid: 12296612] +EVENT[831]: 0.063585975 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[832]: 0.063601625 - core[0].svTaskStartExec(4), plen 0: [tid: 12290612] +EVENT[833]: 0.063638000 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073458992, size: 6, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.063638000] HEAP: Allocated 6 bytes @ 0x3ffbaf30 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[694]: 0.062947000 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461112, size: 12, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.062947000] HEAP: Allocated 12 bytes @ 0x3ffbb778 from task "alloc1" on core 0 by: +EVENT[834]: 0.063677550 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459008, size: 12, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.063677550] HEAP: Allocated 12 bytes @ 0x3ffbaf40 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[695]: 0.062964025 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[696]: 0.062980025 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[697]: 0.063046500 - core[0].svPrint(26), plen 70: [msg: I (371) example: Task[0x3ffb926c]: allocated 12 bytes @ 0x3ffbb778 +EVENT[835]: 0.063694500 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[836]: 0.063710500 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[837]: 0.063765225 - core[0].svPrint(26), plen 70: [msg: I (359) example: Task[0x3ffb8a34]: allocated 12 bytes @ 0x3ffbaf40 , lvl: 0, unused: 0] -[0.063046500] LOG: I (371) example: Task[0x3ffb926c]: allocated 12 bytes @ 0x3ffbb778 -EVENT[698]: 0.063060050 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12293072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[699]: 0.063077450 - core[0].svTaskStartReady(6), plen 0: [tid: 12295764] -EVENT[700]: 0.063093775 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[701]: 0.063104625 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[702]: 0.063115375 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[703]: 0.063129100 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[704]: 0.063139950 - core[1].svTaskStartExec(4), plen 0: [tid: 12295764] -EVENT[705]: 0.063150775 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[706]: 0.063162625 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12293072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[707]: 0.063172900 - core[0].svIdle(17), plen 0: [] -EVENT[708]: 0.063184375 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[709]: 0.063200675 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[710]: 0.063264125 - core[1].svPrint(26), plen 63: [msg: I (371) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb778 -, lvl: 0, unused: 0] -[0.063264125] LOG: I (371) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb778 -EVENT[711]: 0.063285275 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461112, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.063285275] HEAP: Freed bytes @ 0x3ffbb778 from task "free1" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 -/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 -/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 - -EVENT[712]: 0.063312400 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[713]: 0.063323825 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[714]: 0.063340400 - core[1].svIdle(17), plen 0: [] -EVENT[715]: 0.063666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[716]: 0.063679850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[717]: 0.063695550 - core[1].svIdle(17), plen 0: [] -EVENT[718]: 0.063833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[719]: 0.063848800 - core[0].svTaskStartReady(6), plen 0: [tid: 12298716] -EVENT[720]: 0.063861575 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[721]: 0.063877250 - core[0].svTaskStartExec(4), plen 0: [tid: 12298716] -EVENT[722]: 0.063912650 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461112, size: 9, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.063912650] HEAP: Allocated 9 bytes @ 0x3ffbb778 from task "alloc2" on core 0 by: +[0.063765225] LOG: I (359) example: Task[0x3ffb8a34]: allocated 12 bytes @ 0x3ffbaf40 +EVENT[838]: 0.063778675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12290968, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[839]: 0.063791925 - core[0].svTaskStartReady(6), plen 0: [tid: 12293660] +EVENT[840]: 0.063791925 - core[1].svTaskStartReady(6), plen 0: [tid: 12293660] +EVENT[841]: 0.063808275 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[842]: 0.063819125 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[843]: 0.063830100 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[844]: 0.063844100 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[845]: 0.063855800 - core[1].svTaskStartExec(4), plen 0: [tid: 12293660] +EVENT[846]: 0.063867200 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[847]: 0.063879175 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12290968, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[848]: 0.063890875 - core[0].svTaskStartExec(4), plen 0: [tid: 12296612] +EVENT[849]: 0.063903475 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[850]: 0.063925875 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[851]: 0.063937325 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459024, size: 9, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.063937325] HEAP: Allocated 9 bytes @ 0x3ffbaf50 from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[723]: 0.063951300 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461128, size: 18, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.063951300] HEAP: Allocated 18 bytes @ 0x3ffbb788 from task "alloc2" on core 0 by: +EVENT[852]: 0.063978425 - core[1].svPrint(26), plen 63: [msg: I (359) example: Task[0x3ffb961c]: free memory @ 0x3ffbaf40 +, lvl: 0, unused: 0] +[0.063978425] LOG: I (359) example: Task[0x3ffb961c]: free memory @ 0x3ffbaf40 +EVENT[853]: 0.063989600 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459040, size: 18, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.063989600] HEAP: Allocated 18 bytes @ 0x3ffbaf60 from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[724]: 0.063968200 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[725]: 0.063984175 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[726]: 0.064054525 - core[0].svPrint(26), plen 70: [msg: I (372) example: Task[0x3ffba9dc]: allocated 18 bytes @ 0x3ffbb788 -, lvl: 0, unused: 0] -[0.064054525] LOG: I (372) example: Task[0x3ffba9dc]: allocated 18 bytes @ 0x3ffbb788 -EVENT[727]: 0.064068125 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12299072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[728]: 0.064081350 - core[0].svTaskStartReady(6), plen 0: [tid: 12301764] -EVENT[729]: 0.064097650 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[730]: 0.064108500 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[731]: 0.064119275 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[732]: 0.064133000 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[733]: 0.064143875 - core[1].svTaskStartExec(4), plen 0: [tid: 12301764] -EVENT[734]: 0.064154700 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[735]: 0.064166575 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12299072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[736]: 0.064177850 - core[0].svIdle(17), plen 0: [] -EVENT[737]: 0.064189500 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[738]: 0.064209950 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[739]: 0.064273500 - core[1].svPrint(26), plen 63: [msg: I (372) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb788 -, lvl: 0, unused: 0] -[0.064273500] LOG: I (372) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb788 -EVENT[740]: 0.064294700 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461128, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.064294700] HEAP: Freed bytes @ 0x3ffbb788 from task "free2" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +EVENT[854]: 0.064003900 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073459008, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.064003900] HEAP: Freed bytes @ 0x3ffbaf40 from task "free1" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[741]: 0.064321575 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[742]: 0.064333000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[743]: 0.064349575 - core[1].svIdle(17), plen 0: [] -EVENT[744]: 0.064666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[745]: 0.064679850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[746]: 0.064695550 - core[1].svIdle(17), plen 0: [] -EVENT[747]: 0.064833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[748]: 0.064849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[749]: 0.064864250 - core[0].svIdle(17), plen 0: [] -EVENT[750]: 0.065666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[751]: 0.065680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[752]: 0.065695350 - core[1].svIdle(17), plen 0: [] -EVENT[753]: 0.065833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[754]: 0.065849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[755]: 0.065864250 - core[0].svIdle(17), plen 0: [] -EVENT[756]: 0.066666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[757]: 0.066680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[758]: 0.066695125 - core[1].svIdle(17), plen 0: [] -EVENT[759]: 0.066833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[760]: 0.066849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[761]: 0.066864250 - core[0].svIdle(17), plen 0: [] -EVENT[762]: 0.067666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[763]: 0.067680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[764]: 0.067695225 - core[1].svIdle(17), plen 0: [] -EVENT[765]: 0.067833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[766]: 0.067849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[767]: 0.067864425 - core[0].svIdle(17), plen 0: [] -EVENT[768]: 0.068666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[769]: 0.068679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[770]: 0.068695100 - core[1].svIdle(17), plen 0: [] -EVENT[771]: 0.068833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[772]: 0.068849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[773]: 0.068864250 - core[0].svIdle(17), plen 0: [] -EVENT[774]: 0.069666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[775]: 0.069680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[776]: 0.069695350 - core[1].svIdle(17), plen 0: [] -EVENT[777]: 0.069833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[778]: 0.069849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[779]: 0.069868575 - core[0].svIdle(17), plen 0: [] -EVENT[780]: 0.070666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[781]: 0.070679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[782]: 0.070695100 - core[1].svIdle(17), plen 0: [] -EVENT[783]: 0.070833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[784]: 0.070849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[785]: 0.070864250 - core[0].svIdle(17), plen 0: [] -EVENT[786]: 0.071666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[787]: 0.071680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[788]: 0.071695350 - core[1].svIdle(17), plen 0: [] -EVENT[789]: 0.071833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[790]: 0.071849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[791]: 0.071864250 - core[0].svIdle(17), plen 0: [] -EVENT[792]: 0.072666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[793]: 0.072680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[794]: 0.072695125 - core[1].svIdle(17), plen 0: [] -EVENT[795]: 0.072833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[796]: 0.072849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[797]: 0.072864250 - core[0].svIdle(17), plen 0: [] -EVENT[798]: 0.073666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[799]: 0.073680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[800]: 0.073695225 - core[1].svIdle(17), plen 0: [] -EVENT[801]: 0.073833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[802]: 0.073849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[803]: 0.073864425 - core[0].svIdle(17), plen 0: [] -EVENT[804]: 0.074666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[805]: 0.074679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[806]: 0.074695100 - core[1].svIdle(17), plen 0: [] -EVENT[807]: 0.074833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[808]: 0.074849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[809]: 0.074864250 - core[0].svIdle(17), plen 0: [] -EVENT[810]: 0.075666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[811]: 0.075680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[812]: 0.075695350 - core[1].svIdle(17), plen 0: [] -EVENT[813]: 0.075833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[814]: 0.075849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[815]: 0.075864250 - core[0].svIdle(17), plen 0: [] -EVENT[816]: 0.076666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[817]: 0.076680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[818]: 0.076695125 - core[1].svIdle(17), plen 0: [] -EVENT[819]: 0.076833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[820]: 0.076849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[821]: 0.076864250 - core[0].svIdle(17), plen 0: [] -EVENT[822]: 0.077666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[823]: 0.077680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[824]: 0.077695225 - core[1].svIdle(17), plen 0: [] -EVENT[825]: 0.077833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[826]: 0.077849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[827]: 0.077864425 - core[0].svIdle(17), plen 0: [] -EVENT[828]: 0.078666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[829]: 0.078679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[830]: 0.078695100 - core[1].svIdle(17), plen 0: [] -EVENT[831]: 0.078833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[832]: 0.078849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[833]: 0.078864250 - core[0].svIdle(17), plen 0: [] -EVENT[834]: 0.079666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[835]: 0.079680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[836]: 0.079695350 - core[1].svIdle(17), plen 0: [] -EVENT[837]: 0.079833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[838]: 0.079849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[839]: 0.079864250 - core[0].svIdle(17), plen 0: [] -EVENT[840]: 0.080666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[841]: 0.080680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[842]: 0.080695125 - core[1].svIdle(17), plen 0: [] -EVENT[843]: 0.080833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[844]: 0.080849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[845]: 0.080864250 - core[0].svIdle(17), plen 0: [] -EVENT[846]: 0.081666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[847]: 0.081680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[848]: 0.081695225 - core[1].svIdle(17), plen 0: [] -EVENT[849]: 0.081833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[850]: 0.081849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[851]: 0.081864425 - core[0].svIdle(17), plen 0: [] -EVENT[852]: 0.082666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[853]: 0.082680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[854]: 0.082695350 - core[1].svIdle(17), plen 0: [] -EVENT[855]: 0.082833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[856]: 0.082849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[857]: 0.082864250 - core[0].svIdle(17), plen 0: [] -EVENT[858]: 0.083666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[859]: 0.083680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[860]: 0.083695125 - core[1].svIdle(17), plen 0: [] -EVENT[861]: 0.083833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[862]: 0.083849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[863]: 0.083864250 - core[0].svIdle(17), plen 0: [] -EVENT[864]: 0.084666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[865]: 0.084680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[866]: 0.084695225 - core[1].svIdle(17), plen 0: [] -EVENT[867]: 0.084833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[868]: 0.084849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[869]: 0.084864425 - core[0].svIdle(17), plen 0: [] -EVENT[870]: 0.085666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[871]: 0.085679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[872]: 0.085695100 - core[1].svIdle(17), plen 0: [] -EVENT[873]: 0.085833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[874]: 0.085849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[875]: 0.085864250 - core[0].svIdle(17), plen 0: [] -EVENT[876]: 0.086666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[877]: 0.086680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[878]: 0.086695350 - core[1].svIdle(17), plen 0: [] -EVENT[879]: 0.086833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[880]: 0.086849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[881]: 0.086864250 - core[0].svIdle(17), plen 0: [] -EVENT[882]: 0.087666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[883]: 0.087680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[884]: 0.087695125 - core[1].svIdle(17), plen 0: [] -EVENT[885]: 0.087833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[886]: 0.087849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[887]: 0.087864250 - core[0].svIdle(17), plen 0: [] -EVENT[888]: 0.088666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[889]: 0.088680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[890]: 0.088695225 - core[1].svIdle(17), plen 0: [] -EVENT[891]: 0.088833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[892]: 0.088849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[893]: 0.088864425 - core[0].svIdle(17), plen 0: [] -EVENT[894]: 0.089666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[895]: 0.089679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[896]: 0.089695100 - core[1].svIdle(17), plen 0: [] -EVENT[897]: 0.089833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[898]: 0.089849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[899]: 0.089864250 - core[0].svIdle(17), plen 0: [] -EVENT[900]: 0.090666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[901]: 0.090680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[902]: 0.090695350 - core[1].svIdle(17), plen 0: [] -EVENT[903]: 0.090833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[904]: 0.090849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[905]: 0.090864250 - core[0].svIdle(17), plen 0: [] -EVENT[906]: 0.091666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[907]: 0.091680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[908]: 0.091695125 - core[1].svIdle(17), plen 0: [] -EVENT[909]: 0.091833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[910]: 0.091848800 - core[0].svTaskStartReady(6), plen 0: [tid: 12286700] -EVENT[911]: 0.091861575 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[912]: 0.091877250 - core[0].svTaskStartExec(4), plen 0: [tid: 12286700] -EVENT[913]: 0.091912475 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461128, size: 4, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.091912475] HEAP: Allocated 4 bytes @ 0x3ffbb788 from task "alloc0" on core 0 by: +EVENT[855]: 0.064017000 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[856]: 0.064035500 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[857]: 0.064046775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[858]: 0.064057575 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[859]: 0.064075725 - core[1].svIdle(17), plen 0: [] +EVENT[860]: 0.064103500 - core[0].svPrint(26), plen 70: [msg: I (359) example: Task[0x3ffba1a4]: allocated 18 bytes @ 0x3ffbaf60 +, lvl: 0, unused: 0] +[0.064103500] LOG: I (359) example: Task[0x3ffba1a4]: allocated 18 bytes @ 0x3ffbaf60 +EVENT[861]: 0.064121100 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12296968, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[862]: 0.064134350 - core[0].svTaskStartReady(6), plen 0: [tid: 12299660] +EVENT[863]: 0.064134350 - core[1].svTaskStartReady(6), plen 0: [tid: 12299660] +EVENT[864]: 0.064150700 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[865]: 0.064161550 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[866]: 0.064172375 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[867]: 0.064186200 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[868]: 0.064196950 - core[1].svTaskStartExec(4), plen 0: [tid: 12299660] +EVENT[869]: 0.064207700 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[870]: 0.064219800 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12296968, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[871]: 0.064231025 - core[0].svIdle(17), plen 0: [] +EVENT[872]: 0.064243350 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[873]: 0.064259600 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[874]: 0.064307475 - core[1].svPrint(26), plen 63: [msg: I (359) example: Task[0x3ffbad8c]: free memory @ 0x3ffbaf60 +, lvl: 0, unused: 0] +[0.064307475] LOG: I (359) example: Task[0x3ffbad8c]: free memory @ 0x3ffbaf60 +EVENT[875]: 0.064328875 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073459040, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.064328875] HEAP: Freed bytes @ 0x3ffbaf60 from task "free2" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[876]: 0.064359750 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[877]: 0.064371325 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[878]: 0.064388025 - core[1].svIdle(17), plen 0: [] +EVENT[879]: 0.064448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[880]: 0.064461625 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[881]: 0.064477200 - core[1].svIdle(17), plen 0: [] +EVENT[882]: 0.064546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[883]: 0.064562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[884]: 0.064577275 - core[0].svIdle(17), plen 0: [] +EVENT[885]: 0.065448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[886]: 0.065461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[887]: 0.065476850 - core[1].svIdle(17), plen 0: [] +EVENT[888]: 0.065546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[889]: 0.065562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[890]: 0.065577075 - core[0].svIdle(17), plen 0: [] +EVENT[891]: 0.066448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[892]: 0.066461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[893]: 0.066476975 - core[1].svIdle(17), plen 0: [] +EVENT[894]: 0.066546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[895]: 0.066562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[896]: 0.066577225 - core[0].svIdle(17), plen 0: [] +EVENT[897]: 0.067448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[898]: 0.067461775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[899]: 0.067476900 - core[1].svIdle(17), plen 0: [] +EVENT[900]: 0.067546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[901]: 0.067562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[902]: 0.067577075 - core[0].svIdle(17), plen 0: [] +EVENT[903]: 0.068448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[904]: 0.068461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[905]: 0.068476850 - core[1].svIdle(17), plen 0: [] +EVENT[906]: 0.068546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[907]: 0.068562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[908]: 0.068577275 - core[0].svIdle(17), plen 0: [] +EVENT[909]: 0.069448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[910]: 0.069461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[911]: 0.069476850 - core[1].svIdle(17), plen 0: [] +EVENT[912]: 0.069546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[913]: 0.069562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[914]: 0.069577075 - core[0].svIdle(17), plen 0: [] +EVENT[915]: 0.070448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[916]: 0.070461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[917]: 0.070476975 - core[1].svIdle(17), plen 0: [] +EVENT[918]: 0.070546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[919]: 0.070562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[920]: 0.070577225 - core[0].svIdle(17), plen 0: [] +EVENT[921]: 0.071448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[922]: 0.071461775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[923]: 0.071476900 - core[1].svIdle(17), plen 0: [] +EVENT[924]: 0.071546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[925]: 0.071562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[926]: 0.071577075 - core[0].svIdle(17), plen 0: [] +EVENT[927]: 0.072448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[928]: 0.072461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[929]: 0.072476850 - core[1].svIdle(17), plen 0: [] +EVENT[930]: 0.072546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[931]: 0.072562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[932]: 0.072577275 - core[0].svIdle(17), plen 0: [] +EVENT[933]: 0.073448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[934]: 0.073461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[935]: 0.073476850 - core[1].svIdle(17), plen 0: [] +EVENT[936]: 0.073546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[937]: 0.073562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[938]: 0.073577075 - core[0].svIdle(17), plen 0: [] +EVENT[939]: 0.074448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[940]: 0.074465975 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[941]: 0.074481225 - core[1].svIdle(17), plen 0: [] +EVENT[942]: 0.074546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[943]: 0.074562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[944]: 0.074577075 - core[0].svIdle(17), plen 0: [] +EVENT[945]: 0.075448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[946]: 0.075461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[947]: 0.075476850 - core[1].svIdle(17), plen 0: [] +EVENT[948]: 0.075546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[949]: 0.075562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[950]: 0.075577275 - core[0].svIdle(17), plen 0: [] +EVENT[951]: 0.076448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[952]: 0.076461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[953]: 0.076476850 - core[1].svIdle(17), plen 0: [] +EVENT[954]: 0.076546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[955]: 0.076562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[956]: 0.076577075 - core[0].svIdle(17), plen 0: [] +EVENT[957]: 0.077448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[958]: 0.077461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[959]: 0.077476975 - core[1].svIdle(17), plen 0: [] +EVENT[960]: 0.077546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[961]: 0.077562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[962]: 0.077577225 - core[0].svIdle(17), plen 0: [] +EVENT[963]: 0.078448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[964]: 0.078461775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[965]: 0.078476900 - core[1].svIdle(17), plen 0: [] +EVENT[966]: 0.078546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[967]: 0.078562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[968]: 0.078577075 - core[0].svIdle(17), plen 0: [] +EVENT[969]: 0.079448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[970]: 0.079461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[971]: 0.079476850 - core[1].svIdle(17), plen 0: [] +EVENT[972]: 0.079546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[973]: 0.079562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[974]: 0.079577275 - core[0].svIdle(17), plen 0: [] +EVENT[975]: 0.080448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[976]: 0.080461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[977]: 0.080476850 - core[1].svIdle(17), plen 0: [] +EVENT[978]: 0.080546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[979]: 0.080562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[980]: 0.080577075 - core[0].svIdle(17), plen 0: [] +EVENT[981]: 0.081448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[982]: 0.081461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[983]: 0.081476975 - core[1].svIdle(17), plen 0: [] +EVENT[984]: 0.081546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[985]: 0.081562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[986]: 0.081577225 - core[0].svIdle(17), plen 0: [] +EVENT[987]: 0.082448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[988]: 0.082461775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[989]: 0.082476900 - core[1].svIdle(17), plen 0: [] +EVENT[990]: 0.082546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[991]: 0.082562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[992]: 0.082577075 - core[0].svIdle(17), plen 0: [] +EVENT[993]: 0.083448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[994]: 0.083461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[995]: 0.083476850 - core[1].svIdle(17), plen 0: [] +EVENT[996]: 0.083546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[997]: 0.083562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[998]: 0.083577275 - core[0].svIdle(17), plen 0: [] +EVENT[999]: 0.084448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1000]: 0.084461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1001]: 0.084476850 - core[1].svIdle(17), plen 0: [] +EVENT[1002]: 0.084546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1003]: 0.084562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1004]: 0.084577075 - core[0].svIdle(17), plen 0: [] +EVENT[1005]: 0.085448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1006]: 0.085461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1007]: 0.085476975 - core[1].svIdle(17), plen 0: [] +EVENT[1008]: 0.085546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1009]: 0.085562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1010]: 0.085577225 - core[0].svIdle(17), plen 0: [] +EVENT[1011]: 0.086448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1012]: 0.086465300 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1013]: 0.086480450 - core[1].svIdle(17), plen 0: [] +EVENT[1014]: 0.086546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1015]: 0.086562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1016]: 0.086577075 - core[0].svIdle(17), plen 0: [] +EVENT[1017]: 0.087448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1018]: 0.087461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1019]: 0.087476850 - core[1].svIdle(17), plen 0: [] +EVENT[1020]: 0.087546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1021]: 0.087562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1022]: 0.087577275 - core[0].svIdle(17), plen 0: [] +EVENT[1023]: 0.088448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1024]: 0.088461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1025]: 0.088476850 - core[1].svIdle(17), plen 0: [] +EVENT[1026]: 0.088546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1027]: 0.088562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1028]: 0.088577075 - core[0].svIdle(17), plen 0: [] +EVENT[1029]: 0.089448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1030]: 0.089461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1031]: 0.089476975 - core[1].svIdle(17), plen 0: [] +EVENT[1032]: 0.089546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1033]: 0.089562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1034]: 0.089577225 - core[0].svIdle(17), plen 0: [] +EVENT[1035]: 0.090448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1036]: 0.090461775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1037]: 0.090476900 - core[1].svIdle(17), plen 0: [] +EVENT[1038]: 0.090546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1039]: 0.090562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1040]: 0.090577075 - core[0].svIdle(17), plen 0: [] +EVENT[1041]: 0.091448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1042]: 0.091461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1043]: 0.091476850 - core[1].svIdle(17), plen 0: [] +EVENT[1044]: 0.091546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1045]: 0.091562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1046]: 0.091577275 - core[0].svIdle(17), plen 0: [] +EVENT[1047]: 0.092448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1048]: 0.092461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1049]: 0.092476850 - core[1].svIdle(17), plen 0: [] +EVENT[1050]: 0.092546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1051]: 0.092561625 - core[0].svTaskStartReady(6), plen 0: [tid: 12284596] +EVENT[1052]: 0.092561625 - core[1].svTaskStartReady(6), plen 0: [tid: 12284596] +EVENT[1053]: 0.092574275 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1054]: 0.092590075 - core[0].svTaskStartExec(4), plen 0: [tid: 12284596] +EVENT[1055]: 0.092625125 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459008, size: 4, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.092625125] HEAP: Allocated 4 bytes @ 0x3ffbaf40 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[914]: 0.091950300 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461144, size: 8, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.091950300] HEAP: Allocated 8 bytes @ 0x3ffbb798 from task "alloc0" on core 0 by: +EVENT[1056]: 0.092660700 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459040, size: 8, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.092660700] HEAP: Allocated 8 bytes @ 0x3ffbaf60 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[915]: 0.091967200 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[916]: 0.091983200 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[917]: 0.092047350 - core[0].svPrint(26), plen 69: [msg: I (400) example: Task[0x3ffb7aec]: allocated 8 bytes @ 0x3ffbb798 +EVENT[1057]: 0.092677675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1058]: 0.092693775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1059]: 0.092750550 - core[0].svPrint(26), plen 69: [msg: I (388) example: Task[0x3ffb72b4]: allocated 8 bytes @ 0x3ffbaf60 , lvl: 0, unused: 0] -[0.092047350] LOG: I (400) example: Task[0x3ffb7aec]: allocated 8 bytes @ 0x3ffbb798 -EVENT[918]: 0.092060925 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12287056, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[919]: 0.092074075 - core[0].svTaskStartReady(6), plen 0: [tid: 12289748] -EVENT[920]: 0.092090275 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[921]: 0.092101125 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[922]: 0.092111925 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[923]: 0.092125800 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[924]: 0.092136625 - core[1].svTaskStartExec(4), plen 0: [tid: 12289748] -EVENT[925]: 0.092147475 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[926]: 0.092159350 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12287056, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[927]: 0.092169575 - core[0].svIdle(17), plen 0: [] -EVENT[928]: 0.092181050 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[929]: 0.092201300 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[930]: 0.092264850 - core[1].svPrint(26), plen 63: [msg: I (400) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb798 +[0.092750550] LOG: I (388) example: Task[0x3ffb72b4]: allocated 8 bytes @ 0x3ffbaf60 +EVENT[1060]: 0.092764000 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12284952, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1061]: 0.092777225 - core[0].svTaskStartReady(6), plen 0: [tid: 12287644] +EVENT[1062]: 0.092777225 - core[1].svTaskStartReady(6), plen 0: [tid: 12287644] +EVENT[1063]: 0.092793475 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1064]: 0.092804425 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[1065]: 0.092815175 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1066]: 0.092828925 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[1067]: 0.092839650 - core[1].svTaskStartExec(4), plen 0: [tid: 12287644] +EVENT[1068]: 0.092850450 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1069]: 0.092862450 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12284952, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[1070]: 0.092872675 - core[0].svIdle(17), plen 0: [] +EVENT[1071]: 0.092884425 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1072]: 0.092900700 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1073]: 0.092948475 - core[1].svPrint(26), plen 63: [msg: I (388) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbaf60 , lvl: 0, unused: 0] -[0.092264850] LOG: I (400) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb798 -EVENT[931]: 0.092286050 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461144, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.092286050] HEAP: Freed bytes @ 0x3ffbb798 from task "free0" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +[0.092948475] LOG: I (388) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbaf60 +EVENT[1074]: 0.092969850 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073459040, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.092969850] HEAP: Freed bytes @ 0x3ffbaf60 from task "free0" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[932]: 0.092312950 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[933]: 0.092324500 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[934]: 0.092341075 - core[1].svIdle(17), plen 0: [] -EVENT[935]: 0.092666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[936]: 0.092679850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[937]: 0.092695550 - core[1].svIdle(17), plen 0: [] -EVENT[938]: 0.092833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[939]: 0.092848800 - core[0].svTaskStartReady(6), plen 0: [tid: 12292716] -EVENT[940]: 0.092861575 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[941]: 0.092877375 - core[0].svTaskStartExec(4), plen 0: [tid: 12292716] -EVENT[942]: 0.092912775 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461144, size: 8, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.092912775] HEAP: Allocated 8 bytes @ 0x3ffbb798 from task "alloc1" on core 0 by: +EVENT[1075]: 0.093001300 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1076]: 0.093012750 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1077]: 0.093029450 - core[1].svIdle(17), plen 0: [] +EVENT[1078]: 0.093448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1079]: 0.093461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1080]: 0.093477300 - core[1].svIdle(17), plen 0: [] +EVENT[1081]: 0.093546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1082]: 0.093561625 - core[0].svTaskStartReady(6), plen 0: [tid: 12290612] +EVENT[1083]: 0.093561625 - core[1].svTaskStartReady(6), plen 0: [tid: 12290612] +EVENT[1084]: 0.093573500 - core[0].svTaskStartReady(6), plen 0: [tid: 12296612] +EVENT[1085]: 0.093573500 - core[1].svTaskStartReady(6), plen 0: [tid: 12296612] +EVENT[1086]: 0.093585975 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1087]: 0.093601625 - core[0].svTaskStartExec(4), plen 0: [tid: 12290612] +EVENT[1088]: 0.093638000 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459040, size: 8, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.093638000] HEAP: Allocated 8 bytes @ 0x3ffbaf60 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[943]: 0.092947300 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461160, size: 16, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.092947300] HEAP: Allocated 16 bytes @ 0x3ffbb7a8 from task "alloc1" on core 0 by: +EVENT[1089]: 0.093673450 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459056, size: 16, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.093673450] HEAP: Allocated 16 bytes @ 0x3ffbaf70 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[944]: 0.092964250 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[945]: 0.092984425 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[946]: 0.093050900 - core[0].svPrint(26), plen 70: [msg: I (401) example: Task[0x3ffb926c]: allocated 16 bytes @ 0x3ffbb7a8 +EVENT[1090]: 0.093690500 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1091]: 0.093706525 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1092]: 0.093761350 - core[0].svPrint(26), plen 70: [msg: I (389) example: Task[0x3ffb8a34]: allocated 16 bytes @ 0x3ffbaf70 , lvl: 0, unused: 0] -[0.093050900] LOG: I (401) example: Task[0x3ffb926c]: allocated 16 bytes @ 0x3ffbb7a8 -EVENT[947]: 0.093064550 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12293072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[948]: 0.093077850 - core[0].svTaskStartReady(6), plen 0: [tid: 12295764] -EVENT[949]: 0.093094175 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[950]: 0.093105025 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[951]: 0.093115775 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[952]: 0.093129500 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[953]: 0.093140350 - core[1].svTaskStartExec(4), plen 0: [tid: 12295764] -EVENT[954]: 0.093151175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[955]: 0.093163025 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12293072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[956]: 0.093173300 - core[0].svIdle(17), plen 0: [] -EVENT[957]: 0.093184775 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[958]: 0.093201075 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[959]: 0.093264525 - core[1].svPrint(26), plen 63: [msg: I (401) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb7a8 -, lvl: 0, unused: 0] -[0.093264525] LOG: I (401) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb7a8 -EVENT[960]: 0.093289550 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461160, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.093289550] HEAP: Freed bytes @ 0x3ffbb7a8 from task "free1" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 -/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 -/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 - -EVENT[961]: 0.093316550 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[962]: 0.093327975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[963]: 0.093344550 - core[1].svIdle(17), plen 0: [] -EVENT[964]: 0.093666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[965]: 0.093679850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[966]: 0.093695550 - core[1].svIdle(17), plen 0: [] -EVENT[967]: 0.093833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[968]: 0.093848800 - core[0].svTaskStartReady(6), plen 0: [tid: 12298716] -EVENT[969]: 0.093861575 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[970]: 0.093877250 - core[0].svTaskStartExec(4), plen 0: [tid: 12298716] -EVENT[971]: 0.093912650 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461160, size: 12, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.093912650] HEAP: Allocated 12 bytes @ 0x3ffbb7a8 from task "alloc2" on core 0 by: +[0.093761350] LOG: I (389) example: Task[0x3ffb8a34]: allocated 16 bytes @ 0x3ffbaf70 +EVENT[1093]: 0.093778125 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12290968, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1094]: 0.093791500 - core[0].svTaskStartReady(6), plen 0: [tid: 12293660] +EVENT[1095]: 0.093791500 - core[1].svTaskStartReady(6), plen 0: [tid: 12293660] +EVENT[1096]: 0.093807850 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1097]: 0.093818700 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[1098]: 0.093829525 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1099]: 0.093843300 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[1100]: 0.093855250 - core[1].svTaskStartExec(4), plen 0: [tid: 12293660] +EVENT[1101]: 0.093866400 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1102]: 0.093878350 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12290968, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[1103]: 0.093890000 - core[0].svTaskStartExec(4), plen 0: [tid: 12296612] +EVENT[1104]: 0.093901700 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1105]: 0.093920300 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1106]: 0.093933400 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459076, size: 12, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.093933400] HEAP: Allocated 12 bytes @ 0x3ffbaf84 from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[972]: 0.093947050 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461176, size: 24, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.093947050] HEAP: Allocated 24 bytes @ 0x3ffbb7b8 from task "alloc2" on core 0 by: +EVENT[1107]: 0.093973950 - core[1].svPrint(26), plen 63: [msg: I (389) example: Task[0x3ffb961c]: free memory @ 0x3ffbaf70 +, lvl: 0, unused: 0] +[0.093973950] LOG: I (389) example: Task[0x3ffb961c]: free memory @ 0x3ffbaf70 +EVENT[1108]: 0.093989825 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459092, size: 24, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.093989825] HEAP: Allocated 24 bytes @ 0x3ffbaf94 from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[973]: 0.093963950 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[974]: 0.093980050 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[975]: 0.094050525 - core[0].svPrint(26), plen 70: [msg: I (402) example: Task[0x3ffba9dc]: allocated 24 bytes @ 0x3ffbb7b8 -, lvl: 0, unused: 0] -[0.094050525] LOG: I (402) example: Task[0x3ffba9dc]: allocated 24 bytes @ 0x3ffbb7b8 -EVENT[976]: 0.094068350 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12299072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[977]: 0.094081575 - core[0].svTaskStartReady(6), plen 0: [tid: 12301764] -EVENT[978]: 0.094097875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[979]: 0.094108725 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[980]: 0.094119500 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[981]: 0.094133225 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[982]: 0.094144100 - core[1].svTaskStartExec(4), plen 0: [tid: 12301764] -EVENT[983]: 0.094154925 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[984]: 0.094166800 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12299072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[985]: 0.094178075 - core[0].svIdle(17), plen 0: [] -EVENT[986]: 0.094189725 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[987]: 0.094206100 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[988]: 0.094269650 - core[1].svPrint(26), plen 63: [msg: I (402) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb7b8 -, lvl: 0, unused: 0] -[0.094269650] LOG: I (402) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb7b8 -EVENT[989]: 0.094290850 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461176, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.094290850] HEAP: Freed bytes @ 0x3ffbb7b8 from task "free2" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +EVENT[1109]: 0.094004125 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073459056, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.094004125] HEAP: Freed bytes @ 0x3ffbaf70 from task "free1" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[990]: 0.094321875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[991]: 0.094333350 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[992]: 0.094350050 - core[1].svIdle(17), plen 0: [] -EVENT[993]: 0.094666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[994]: 0.094679875 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[995]: 0.094695450 - core[1].svIdle(17), plen 0: [] -EVENT[996]: 0.094833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[997]: 0.094849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[998]: 0.094864425 - core[0].svIdle(17), plen 0: [] -EVENT[999]: 0.095666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1000]: 0.095679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1001]: 0.095695100 - core[1].svIdle(17), plen 0: [] -EVENT[1002]: 0.095833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1003]: 0.095849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1004]: 0.095864250 - core[0].svIdle(17), plen 0: [] -EVENT[1005]: 0.096666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1006]: 0.096680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1007]: 0.096695350 - core[1].svIdle(17), plen 0: [] -EVENT[1008]: 0.096833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1009]: 0.096849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1010]: 0.096864250 - core[0].svIdle(17), plen 0: [] -EVENT[1011]: 0.097666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1012]: 0.097680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1013]: 0.097695125 - core[1].svIdle(17), plen 0: [] -EVENT[1014]: 0.097833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1015]: 0.097849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1016]: 0.097864250 - core[0].svIdle(17), plen 0: [] -EVENT[1017]: 0.098666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1018]: 0.098680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1019]: 0.098695225 - core[1].svIdle(17), plen 0: [] -EVENT[1020]: 0.098833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1021]: 0.098849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1022]: 0.098864425 - core[0].svIdle(17), plen 0: [] -EVENT[1023]: 0.099666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1024]: 0.099679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1025]: 0.099695100 - core[1].svIdle(17), plen 0: [] -EVENT[1026]: 0.099833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1027]: 0.099849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1028]: 0.099864250 - core[0].svIdle(17), plen 0: [] -EVENT[1029]: 0.100666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1030]: 0.100680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1031]: 0.100695350 - core[1].svIdle(17), plen 0: [] -EVENT[1032]: 0.100833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1033]: 0.100849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1034]: 0.100864250 - core[0].svIdle(17), plen 0: [] -EVENT[1035]: 0.101666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1036]: 0.101680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1037]: 0.101695125 - core[1].svIdle(17), plen 0: [] -EVENT[1038]: 0.101833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1039]: 0.101849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1040]: 0.101864250 - core[0].svIdle(17), plen 0: [] -EVENT[1041]: 0.102666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1042]: 0.102680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1043]: 0.102695225 - core[1].svIdle(17), plen 0: [] -EVENT[1044]: 0.102833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1045]: 0.102849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1046]: 0.102864425 - core[0].svIdle(17), plen 0: [] -EVENT[1047]: 0.103666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1048]: 0.103679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1049]: 0.103695100 - core[1].svIdle(17), plen 0: [] -EVENT[1050]: 0.103833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1051]: 0.103849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1052]: 0.103864250 - core[0].svIdle(17), plen 0: [] -EVENT[1053]: 0.104666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1054]: 0.104683575 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1055]: 0.104698725 - core[1].svIdle(17), plen 0: [] -EVENT[1056]: 0.104833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1057]: 0.104849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1058]: 0.104864250 - core[0].svIdle(17), plen 0: [] -EVENT[1059]: 0.105666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1060]: 0.105680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1061]: 0.105695225 - core[1].svIdle(17), plen 0: [] -EVENT[1062]: 0.105833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1063]: 0.105849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1064]: 0.105864425 - core[0].svIdle(17), plen 0: [] -EVENT[1065]: 0.106666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1066]: 0.106679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1067]: 0.106695100 - core[1].svIdle(17), plen 0: [] -EVENT[1068]: 0.106833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1069]: 0.106849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1070]: 0.106864250 - core[0].svIdle(17), plen 0: [] -EVENT[1071]: 0.107666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1072]: 0.107680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1073]: 0.107695350 - core[1].svIdle(17), plen 0: [] -EVENT[1074]: 0.107833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1075]: 0.107849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1076]: 0.107864250 - core[0].svIdle(17), plen 0: [] -EVENT[1077]: 0.108666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1078]: 0.108680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1079]: 0.108695125 - core[1].svIdle(17), plen 0: [] -EVENT[1080]: 0.108833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1081]: 0.108849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1082]: 0.108864250 - core[0].svIdle(17), plen 0: [] -EVENT[1083]: 0.109666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1084]: 0.109680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1085]: 0.109695225 - core[1].svIdle(17), plen 0: [] -EVENT[1086]: 0.109833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1087]: 0.109849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1088]: 0.109864425 - core[0].svIdle(17), plen 0: [] -EVENT[1089]: 0.110666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1090]: 0.110679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1091]: 0.110695100 - core[1].svIdle(17), plen 0: [] -EVENT[1092]: 0.110833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1093]: 0.110849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1094]: 0.110864250 - core[0].svIdle(17), plen 0: [] -EVENT[1095]: 0.111666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1096]: 0.111680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1097]: 0.111695350 - core[1].svIdle(17), plen 0: [] -EVENT[1098]: 0.111833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1099]: 0.111849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1100]: 0.111864250 - core[0].svIdle(17), plen 0: [] -EVENT[1101]: 0.112666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1102]: 0.112680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1103]: 0.112695125 - core[1].svIdle(17), plen 0: [] -EVENT[1104]: 0.112833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1105]: 0.112849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1106]: 0.112864250 - core[0].svIdle(17), plen 0: [] -EVENT[1107]: 0.113666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1108]: 0.113680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1109]: 0.113695225 - core[1].svIdle(17), plen 0: [] -EVENT[1110]: 0.113833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1111]: 0.113849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1112]: 0.113864425 - core[0].svIdle(17), plen 0: [] -EVENT[1113]: 0.114666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1114]: 0.114679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1115]: 0.114695100 - core[1].svIdle(17), plen 0: [] -EVENT[1116]: 0.114833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1117]: 0.114849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1118]: 0.114864250 - core[0].svIdle(17), plen 0: [] -EVENT[1119]: 0.115666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1120]: 0.115680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1121]: 0.115695350 - core[1].svIdle(17), plen 0: [] -EVENT[1122]: 0.115833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1123]: 0.115849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1124]: 0.115864250 - core[0].svIdle(17), plen 0: [] -EVENT[1125]: 0.116666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1126]: 0.116684225 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1127]: 0.116699375 - core[1].svIdle(17), plen 0: [] -EVENT[1128]: 0.116833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1129]: 0.116849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1130]: 0.116864250 - core[0].svIdle(17), plen 0: [] -EVENT[1131]: 0.117666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1132]: 0.117680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1133]: 0.117695225 - core[1].svIdle(17), plen 0: [] -EVENT[1134]: 0.117833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1135]: 0.117849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1136]: 0.117864425 - core[0].svIdle(17), plen 0: [] -EVENT[1137]: 0.118666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1138]: 0.118679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1139]: 0.118695100 - core[1].svIdle(17), plen 0: [] -EVENT[1140]: 0.118833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1141]: 0.118849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1142]: 0.118864250 - core[0].svIdle(17), plen 0: [] -EVENT[1143]: 0.119666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1144]: 0.119680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1145]: 0.119695350 - core[1].svIdle(17), plen 0: [] -EVENT[1146]: 0.119833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1147]: 0.119849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1148]: 0.119864250 - core[0].svIdle(17), plen 0: [] -EVENT[1149]: 0.120666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1150]: 0.120680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1151]: 0.120695125 - core[1].svIdle(17), plen 0: [] -EVENT[1152]: 0.120833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1153]: 0.120849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1154]: 0.120864250 - core[0].svIdle(17), plen 0: [] -EVENT[1155]: 0.121666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1156]: 0.121680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1157]: 0.121695225 - core[1].svIdle(17), plen 0: [] -EVENT[1158]: 0.121833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1159]: 0.121848825 - core[0].svTaskStartReady(6), plen 0: [tid: 12286700] -EVENT[1160]: 0.121861575 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1161]: 0.121877250 - core[0].svTaskStartExec(4), plen 0: [tid: 12286700] -EVENT[1162]: 0.121912575 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461176, size: 5, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.121912575] HEAP: Allocated 5 bytes @ 0x3ffbb7b8 from task "alloc0" on core 0 by: +EVENT[1110]: 0.094016550 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1111]: 0.094036600 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1112]: 0.094047525 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1113]: 0.094059050 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1114]: 0.094077025 - core[1].svIdle(17), plen 0: [] +EVENT[1115]: 0.094095025 - core[0].svPrint(26), plen 70: [msg: I (389) example: Task[0x3ffba1a4]: allocated 24 bytes @ 0x3ffbaf94 +, lvl: 0, unused: 0] +[0.094095025] LOG: I (389) example: Task[0x3ffba1a4]: allocated 24 bytes @ 0x3ffbaf94 +EVENT[1116]: 0.094108450 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12296968, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1117]: 0.094125225 - core[0].svTaskStartReady(6), plen 0: [tid: 12299660] +EVENT[1118]: 0.094125225 - core[1].svTaskStartReady(6), plen 0: [tid: 12299660] +EVENT[1119]: 0.094141575 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1120]: 0.094152425 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[1121]: 0.094163250 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1122]: 0.094177050 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[1123]: 0.094187800 - core[1].svTaskStartExec(4), plen 0: [tid: 12299660] +EVENT[1124]: 0.094198600 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1125]: 0.094210550 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12296968, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[1126]: 0.094221775 - core[0].svIdle(17), plen 0: [] +EVENT[1127]: 0.094233600 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1128]: 0.094249850 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1129]: 0.094297625 - core[1].svPrint(26), plen 63: [msg: I (389) example: Task[0x3ffbad8c]: free memory @ 0x3ffbaf94 +, lvl: 0, unused: 0] +[0.094297625] LOG: I (389) example: Task[0x3ffbad8c]: free memory @ 0x3ffbaf94 +EVENT[1130]: 0.094319000 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073459092, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.094319000] HEAP: Freed bytes @ 0x3ffbaf94 from task "free2" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1131]: 0.094346425 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1132]: 0.094357825 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1133]: 0.094374400 - core[1].svIdle(17), plen 0: [] +EVENT[1134]: 0.094448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1135]: 0.094461625 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1136]: 0.094477200 - core[1].svIdle(17), plen 0: [] +EVENT[1137]: 0.094546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1138]: 0.094562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1139]: 0.094577075 - core[0].svIdle(17), plen 0: [] +EVENT[1140]: 0.095448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1141]: 0.095461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1142]: 0.095476850 - core[1].svIdle(17), plen 0: [] +EVENT[1143]: 0.095546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1144]: 0.095562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1145]: 0.095577275 - core[0].svIdle(17), plen 0: [] +EVENT[1146]: 0.096448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1147]: 0.096461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1148]: 0.096476850 - core[1].svIdle(17), plen 0: [] +EVENT[1149]: 0.096546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1150]: 0.096565625 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1151]: 0.096580850 - core[0].svIdle(17), plen 0: [] +EVENT[1152]: 0.097448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1153]: 0.097461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1154]: 0.097476850 - core[1].svIdle(17), plen 0: [] +EVENT[1155]: 0.097546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1156]: 0.097562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1157]: 0.097577075 - core[0].svIdle(17), plen 0: [] +EVENT[1158]: 0.098448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1159]: 0.098461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1160]: 0.098476975 - core[1].svIdle(17), plen 0: [] +EVENT[1161]: 0.098546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1162]: 0.098562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1163]: 0.098577225 - core[0].svIdle(17), plen 0: [] +EVENT[1164]: 0.099448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1165]: 0.099461775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1166]: 0.099476900 - core[1].svIdle(17), plen 0: [] +EVENT[1167]: 0.099546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1168]: 0.099562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1169]: 0.099577075 - core[0].svIdle(17), plen 0: [] +EVENT[1170]: 0.100448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1171]: 0.100461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1172]: 0.100476850 - core[1].svIdle(17), plen 0: [] +EVENT[1173]: 0.100546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1174]: 0.100562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1175]: 0.100577275 - core[0].svIdle(17), plen 0: [] +EVENT[1176]: 0.101448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1177]: 0.101461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1178]: 0.101476850 - core[1].svIdle(17), plen 0: [] +EVENT[1179]: 0.101546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1180]: 0.101562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1181]: 0.101577075 - core[0].svIdle(17), plen 0: [] +EVENT[1182]: 0.102448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1183]: 0.102461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1184]: 0.102476975 - core[1].svIdle(17), plen 0: [] +EVENT[1185]: 0.102546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1186]: 0.102562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1187]: 0.102577225 - core[0].svIdle(17), plen 0: [] +EVENT[1188]: 0.103448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1189]: 0.103461775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1190]: 0.103476900 - core[1].svIdle(17), plen 0: [] +EVENT[1191]: 0.103546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1192]: 0.103562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1193]: 0.103577075 - core[0].svIdle(17), plen 0: [] +EVENT[1194]: 0.104448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1195]: 0.104461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1196]: 0.104476850 - core[1].svIdle(17), plen 0: [] +EVENT[1197]: 0.104546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1198]: 0.104562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1199]: 0.104577275 - core[0].svIdle(17), plen 0: [] +EVENT[1200]: 0.105448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1201]: 0.105461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1202]: 0.105476850 - core[1].svIdle(17), plen 0: [] +EVENT[1203]: 0.105546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1204]: 0.105562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1205]: 0.105577075 - core[0].svIdle(17), plen 0: [] +EVENT[1206]: 0.106448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1207]: 0.106461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1208]: 0.106476975 - core[1].svIdle(17), plen 0: [] +EVENT[1209]: 0.106546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1210]: 0.106562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1211]: 0.106577225 - core[0].svIdle(17), plen 0: [] +EVENT[1212]: 0.107448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1213]: 0.107461775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1214]: 0.107476900 - core[1].svIdle(17), plen 0: [] +EVENT[1215]: 0.107546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1216]: 0.107562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1217]: 0.107577075 - core[0].svIdle(17), plen 0: [] +EVENT[1218]: 0.108448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1219]: 0.108461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1220]: 0.108476850 - core[1].svIdle(17), plen 0: [] +EVENT[1221]: 0.108546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1222]: 0.108566300 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1223]: 0.108581500 - core[0].svIdle(17), plen 0: [] +EVENT[1224]: 0.109448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1225]: 0.109461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1226]: 0.109476850 - core[1].svIdle(17), plen 0: [] +EVENT[1227]: 0.109546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1228]: 0.109562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1229]: 0.109577075 - core[0].svIdle(17), plen 0: [] +EVENT[1230]: 0.110448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1231]: 0.110461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1232]: 0.110476975 - core[1].svIdle(17), plen 0: [] +EVENT[1233]: 0.110546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1234]: 0.110562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1235]: 0.110577225 - core[0].svIdle(17), plen 0: [] +EVENT[1236]: 0.111448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1237]: 0.111461775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1238]: 0.111476900 - core[1].svIdle(17), plen 0: [] +EVENT[1239]: 0.111546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1240]: 0.111562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1241]: 0.111577075 - core[0].svIdle(17), plen 0: [] +EVENT[1242]: 0.112448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1243]: 0.112461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1244]: 0.112476850 - core[1].svIdle(17), plen 0: [] +EVENT[1245]: 0.112546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1246]: 0.112562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1247]: 0.112577275 - core[0].svIdle(17), plen 0: [] +EVENT[1248]: 0.113448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1249]: 0.113461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1250]: 0.113476850 - core[1].svIdle(17), plen 0: [] +EVENT[1251]: 0.113546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1252]: 0.113562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1253]: 0.113577075 - core[0].svIdle(17), plen 0: [] +EVENT[1254]: 0.114448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1255]: 0.114461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1256]: 0.114476975 - core[1].svIdle(17), plen 0: [] +EVENT[1257]: 0.114546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1258]: 0.114562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1259]: 0.114577225 - core[0].svIdle(17), plen 0: [] +EVENT[1260]: 0.115448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1261]: 0.115461775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1262]: 0.115476900 - core[1].svIdle(17), plen 0: [] +EVENT[1263]: 0.115546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1264]: 0.115562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1265]: 0.115577075 - core[0].svIdle(17), plen 0: [] +EVENT[1266]: 0.116448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1267]: 0.116461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1268]: 0.116476850 - core[1].svIdle(17), plen 0: [] +EVENT[1269]: 0.116546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1270]: 0.116562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1271]: 0.116577275 - core[0].svIdle(17), plen 0: [] +EVENT[1272]: 0.117448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1273]: 0.117461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1274]: 0.117476850 - core[1].svIdle(17), plen 0: [] +EVENT[1275]: 0.117546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1276]: 0.117562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1277]: 0.117577075 - core[0].svIdle(17), plen 0: [] +EVENT[1278]: 0.118448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1279]: 0.118461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1280]: 0.118476975 - core[1].svIdle(17), plen 0: [] +EVENT[1281]: 0.118546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1282]: 0.118562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1283]: 0.118577225 - core[0].svIdle(17), plen 0: [] +EVENT[1284]: 0.119448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1285]: 0.119461775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1286]: 0.119476900 - core[1].svIdle(17), plen 0: [] +EVENT[1287]: 0.119546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1288]: 0.119562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1289]: 0.119577075 - core[0].svIdle(17), plen 0: [] +EVENT[1290]: 0.120448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1291]: 0.120461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1292]: 0.120476850 - core[1].svIdle(17), plen 0: [] +EVENT[1293]: 0.120546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1294]: 0.120566300 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1295]: 0.120581500 - core[0].svIdle(17), plen 0: [] +EVENT[1296]: 0.121448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1297]: 0.121461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1298]: 0.121476850 - core[1].svIdle(17), plen 0: [] +EVENT[1299]: 0.121546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1300]: 0.121562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1301]: 0.121577075 - core[0].svIdle(17), plen 0: [] +EVENT[1302]: 0.122448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1303]: 0.122461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1304]: 0.122476975 - core[1].svIdle(17), plen 0: [] +EVENT[1305]: 0.122546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1306]: 0.122561625 - core[0].svTaskStartReady(6), plen 0: [tid: 12284596] +EVENT[1307]: 0.122561625 - core[1].svTaskStartReady(6), plen 0: [tid: 12284596] +EVENT[1308]: 0.122574225 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1309]: 0.122589875 - core[0].svTaskStartExec(4), plen 0: [tid: 12284596] +EVENT[1310]: 0.122624900 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459056, size: 5, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.122624900] HEAP: Allocated 5 bytes @ 0x3ffbaf70 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1163]: 0.121947000 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461192, size: 10, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.121947000] HEAP: Allocated 10 bytes @ 0x3ffbb7c8 from task "alloc0" on core 0 by: +EVENT[1311]: 0.122660375 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459092, size: 10, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.122660375] HEAP: Allocated 10 bytes @ 0x3ffbaf94 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1164]: 0.121964025 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1165]: 0.121980025 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1166]: 0.122050450 - core[0].svPrint(26), plen 70: [msg: I (430) example: Task[0x3ffb7aec]: allocated 10 bytes @ 0x3ffbb7c8 +EVENT[1312]: 0.122677300 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1313]: 0.122693250 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1314]: 0.122748025 - core[0].svPrint(26), plen 70: [msg: I (418) example: Task[0x3ffb72b4]: allocated 10 bytes @ 0x3ffbaf94 , lvl: 0, unused: 0] -[0.122050450] LOG: I (430) example: Task[0x3ffb7aec]: allocated 10 bytes @ 0x3ffbb7c8 -EVENT[1167]: 0.122068175 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12287056, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1168]: 0.122081400 - core[0].svTaskStartReady(6), plen 0: [tid: 12289748] -EVENT[1169]: 0.122097650 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1170]: 0.122108500 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[1171]: 0.122119275 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1172]: 0.122133100 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[1173]: 0.122144000 - core[1].svTaskStartExec(4), plen 0: [tid: 12289748] -EVENT[1174]: 0.122154825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1175]: 0.122166775 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12287056, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[1176]: 0.122177025 - core[0].svIdle(17), plen 0: [] -EVENT[1177]: 0.122188450 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1178]: 0.122204800 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1179]: 0.122268350 - core[1].svPrint(26), plen 63: [msg: I (430) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb7c8 +[0.122748025] LOG: I (418) example: Task[0x3ffb72b4]: allocated 10 bytes @ 0x3ffbaf94 +EVENT[1315]: 0.122761500 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12284952, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1316]: 0.122778850 - core[0].svTaskStartReady(6), plen 0: [tid: 12287644] +EVENT[1317]: 0.122778850 - core[1].svTaskStartReady(6), plen 0: [tid: 12287644] +EVENT[1318]: 0.122795100 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1319]: 0.122806050 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[1320]: 0.122816825 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1321]: 0.122830550 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[1322]: 0.122841300 - core[1].svTaskStartExec(4), plen 0: [tid: 12287644] +EVENT[1323]: 0.122852100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1324]: 0.122864075 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12284952, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[1325]: 0.122874325 - core[0].svIdle(17), plen 0: [] +EVENT[1326]: 0.122886075 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1327]: 0.122902350 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1328]: 0.122950125 - core[1].svPrint(26), plen 63: [msg: I (418) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbaf94 , lvl: 0, unused: 0] -[0.122268350] LOG: I (430) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb7c8 -EVENT[1180]: 0.122289550 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461192, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.122289550] HEAP: Freed bytes @ 0x3ffbb7c8 from task "free0" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +[0.122950125] LOG: I (418) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbaf94 +EVENT[1329]: 0.122971500 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073459092, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.122971500] HEAP: Freed bytes @ 0x3ffbaf94 from task "free0" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1181]: 0.122320575 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1182]: 0.122332175 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1183]: 0.122348875 - core[1].svIdle(17), plen 0: [] -EVENT[1184]: 0.122666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1185]: 0.122679875 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1186]: 0.122695450 - core[1].svIdle(17), plen 0: [] -EVENT[1187]: 0.122833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1188]: 0.122848825 - core[0].svTaskStartReady(6), plen 0: [tid: 12292716] -EVENT[1189]: 0.122861575 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1190]: 0.122877250 - core[0].svTaskStartExec(4), plen 0: [tid: 12292716] -EVENT[1191]: 0.122912575 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461192, size: 10, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.122912575] HEAP: Allocated 10 bytes @ 0x3ffbb7c8 from task "alloc1" on core 0 by: +EVENT[1330]: 0.122998900 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1331]: 0.123010325 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1332]: 0.123026875 - core[1].svIdle(17), plen 0: [] +EVENT[1333]: 0.123448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1334]: 0.123461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1335]: 0.123477300 - core[1].svIdle(17), plen 0: [] +EVENT[1336]: 0.123546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1337]: 0.123561675 - core[0].svTaskStartReady(6), plen 0: [tid: 12290612] +EVENT[1338]: 0.123561675 - core[1].svTaskStartReady(6), plen 0: [tid: 12290612] +EVENT[1339]: 0.123573500 - core[0].svTaskStartReady(6), plen 0: [tid: 12296612] +EVENT[1340]: 0.123573500 - core[1].svTaskStartReady(6), plen 0: [tid: 12296612] +EVENT[1341]: 0.123586000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1342]: 0.123601675 - core[0].svTaskStartExec(4), plen 0: [tid: 12290612] +EVENT[1343]: 0.123638125 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459092, size: 10, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.123638125] HEAP: Allocated 10 bytes @ 0x3ffbaf94 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1192]: 0.122947000 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461208, size: 20, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.122947000] HEAP: Allocated 20 bytes @ 0x3ffbb7d8 from task "alloc1" on core 0 by: +EVENT[1344]: 0.123677700 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459108, size: 20, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.123677700] HEAP: Allocated 20 bytes @ 0x3ffbafa4 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1193]: 0.122964025 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1194]: 0.122980025 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1195]: 0.123050450 - core[0].svPrint(26), plen 70: [msg: I (431) example: Task[0x3ffb926c]: allocated 20 bytes @ 0x3ffbb7d8 +EVENT[1345]: 0.123694650 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1346]: 0.123710775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1347]: 0.123765500 - core[0].svPrint(26), plen 70: [msg: I (419) example: Task[0x3ffb8a34]: allocated 20 bytes @ 0x3ffbafa4 , lvl: 0, unused: 0] -[0.123050450] LOG: I (431) example: Task[0x3ffb926c]: allocated 20 bytes @ 0x3ffbb7d8 -EVENT[1196]: 0.123064000 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12293072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1197]: 0.123081425 - core[0].svTaskStartReady(6), plen 0: [tid: 12295764] -EVENT[1198]: 0.123097725 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1199]: 0.123108575 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[1200]: 0.123119325 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1201]: 0.123133050 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[1202]: 0.123143900 - core[1].svTaskStartExec(4), plen 0: [tid: 12295764] -EVENT[1203]: 0.123154725 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1204]: 0.123166600 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12293072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[1205]: 0.123176850 - core[0].svIdle(17), plen 0: [] -EVENT[1206]: 0.123188325 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1207]: 0.123204625 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1208]: 0.123268075 - core[1].svPrint(26), plen 63: [msg: I (431) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb7d8 -, lvl: 0, unused: 0] -[0.123268075] LOG: I (431) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb7d8 -EVENT[1209]: 0.123289250 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461208, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.123289250] HEAP: Freed bytes @ 0x3ffbb7d8 from task "free1" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 -/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 -/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 - -EVENT[1210]: 0.123316250 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1211]: 0.123327675 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1212]: 0.123344250 - core[1].svIdle(17), plen 0: [] -EVENT[1213]: 0.123666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1214]: 0.123679850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1215]: 0.123695550 - core[1].svIdle(17), plen 0: [] -EVENT[1216]: 0.123833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1217]: 0.123848800 - core[0].svTaskStartReady(6), plen 0: [tid: 12298716] -EVENT[1218]: 0.123861575 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1219]: 0.123877250 - core[0].svTaskStartExec(4), plen 0: [tid: 12298716] -EVENT[1220]: 0.123912650 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461208, size: 15, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.123912650] HEAP: Allocated 15 bytes @ 0x3ffbb7d8 from task "alloc2" on core 0 by: +[0.123765500] LOG: I (419) example: Task[0x3ffb8a34]: allocated 20 bytes @ 0x3ffbafa4 +EVENT[1348]: 0.123778950 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12290968, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1349]: 0.123792325 - core[0].svTaskStartReady(6), plen 0: [tid: 12293660] +EVENT[1350]: 0.123792325 - core[1].svTaskStartReady(6), plen 0: [tid: 12293660] +EVENT[1351]: 0.123808675 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1352]: 0.123819525 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[1353]: 0.123830350 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1354]: 0.123844125 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[1355]: 0.123856075 - core[1].svTaskStartExec(4), plen 0: [tid: 12293660] +EVENT[1356]: 0.123867225 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1357]: 0.123879175 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12290968, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[1358]: 0.123890825 - core[0].svTaskStartExec(4), plen 0: [tid: 12296612] +EVENT[1359]: 0.123902525 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1360]: 0.123924350 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1361]: 0.123936825 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459132, size: 15, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.123936825] HEAP: Allocated 15 bytes @ 0x3ffbafbc from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1221]: 0.123951325 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461228, size: 30, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.123951325] HEAP: Allocated 30 bytes @ 0x3ffbb7ec from task "alloc2" on core 0 by: +EVENT[1362]: 0.123977900 - core[1].svPrint(26), plen 63: [msg: I (419) example: Task[0x3ffb961c]: free memory @ 0x3ffbafa4 +, lvl: 0, unused: 0] +[0.123977900] LOG: I (419) example: Task[0x3ffb961c]: free memory @ 0x3ffbafa4 +EVENT[1363]: 0.123989450 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459152, size: 30, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.123989450] HEAP: Allocated 30 bytes @ 0x3ffbafd0 from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1222]: 0.123968225 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1223]: 0.123984200 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1224]: 0.124054550 - core[0].svPrint(26), plen 70: [msg: I (432) example: Task[0x3ffba9dc]: allocated 30 bytes @ 0x3ffbb7ec -, lvl: 0, unused: 0] -[0.124054550] LOG: I (432) example: Task[0x3ffba9dc]: allocated 30 bytes @ 0x3ffbb7ec -EVENT[1225]: 0.124068150 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12299072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1226]: 0.124081375 - core[0].svTaskStartReady(6), plen 0: [tid: 12301764] -EVENT[1227]: 0.124097675 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1228]: 0.124108525 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[1229]: 0.124119300 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1230]: 0.124133175 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[1231]: 0.124144050 - core[1].svTaskStartExec(4), plen 0: [tid: 12301764] -EVENT[1232]: 0.124154875 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1233]: 0.124166750 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12299072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[1234]: 0.124178025 - core[0].svIdle(17), plen 0: [] -EVENT[1235]: 0.124189675 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1236]: 0.124209375 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1237]: 0.124272925 - core[1].svPrint(26), plen 63: [msg: I (432) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb7ec -, lvl: 0, unused: 0] -[0.124272925] LOG: I (432) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb7ec -EVENT[1238]: 0.124294125 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461228, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.124294125] HEAP: Freed bytes @ 0x3ffbb7ec from task "free2" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +EVENT[1364]: 0.124003700 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073459108, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.124003700] HEAP: Freed bytes @ 0x3ffbafa4 from task "free1" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1239]: 0.124321025 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1240]: 0.124332575 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1241]: 0.124349150 - core[1].svIdle(17), plen 0: [] -EVENT[1242]: 0.124666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1243]: 0.124679850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1244]: 0.124695550 - core[1].svIdle(17), plen 0: [] -EVENT[1245]: 0.124833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1246]: 0.124849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1247]: 0.124864250 - core[0].svIdle(17), plen 0: [] -EVENT[1248]: 0.125666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1249]: 0.125680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1250]: 0.125695350 - core[1].svIdle(17), plen 0: [] -EVENT[1251]: 0.125833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1252]: 0.125849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1253]: 0.125864250 - core[0].svIdle(17), plen 0: [] -EVENT[1254]: 0.126666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1255]: 0.126680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1256]: 0.126695125 - core[1].svIdle(17), plen 0: [] -EVENT[1257]: 0.126833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1258]: 0.126849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1259]: 0.126864250 - core[0].svIdle(17), plen 0: [] -EVENT[1260]: 0.127666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1261]: 0.127680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1262]: 0.127695225 - core[1].svIdle(17), plen 0: [] -EVENT[1263]: 0.127833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1264]: 0.127849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1265]: 0.127864425 - core[0].svIdle(17), plen 0: [] -EVENT[1266]: 0.128666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1267]: 0.128679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1268]: 0.128695100 - core[1].svIdle(17), plen 0: [] -EVENT[1269]: 0.128833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1270]: 0.128849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1271]: 0.128864250 - core[0].svIdle(17), plen 0: [] -EVENT[1272]: 0.129666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1273]: 0.129680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1274]: 0.129695350 - core[1].svIdle(17), plen 0: [] -EVENT[1275]: 0.129833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1276]: 0.129849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1277]: 0.129868575 - core[0].svIdle(17), plen 0: [] -EVENT[1278]: 0.130666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1279]: 0.130679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1280]: 0.130695100 - core[1].svIdle(17), plen 0: [] -EVENT[1281]: 0.130833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1282]: 0.130849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1283]: 0.130864250 - core[0].svIdle(17), plen 0: [] -EVENT[1284]: 0.131666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1285]: 0.131680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1286]: 0.131695350 - core[1].svIdle(17), plen 0: [] -EVENT[1287]: 0.131833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1288]: 0.131849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1289]: 0.131864250 - core[0].svIdle(17), plen 0: [] -EVENT[1290]: 0.132666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1291]: 0.132680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1292]: 0.132695125 - core[1].svIdle(17), plen 0: [] -EVENT[1293]: 0.132833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1294]: 0.132849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1295]: 0.132864250 - core[0].svIdle(17), plen 0: [] -EVENT[1296]: 0.133666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1297]: 0.133680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1298]: 0.133695225 - core[1].svIdle(17), plen 0: [] -EVENT[1299]: 0.133833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1300]: 0.133849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1301]: 0.133864425 - core[0].svIdle(17), plen 0: [] -EVENT[1302]: 0.134666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1303]: 0.134679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1304]: 0.134695100 - core[1].svIdle(17), plen 0: [] -EVENT[1305]: 0.134833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1306]: 0.134849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1307]: 0.134864250 - core[0].svIdle(17), plen 0: [] -EVENT[1308]: 0.135666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1309]: 0.135680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1310]: 0.135695350 - core[1].svIdle(17), plen 0: [] -EVENT[1311]: 0.135833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1312]: 0.135849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1313]: 0.135864250 - core[0].svIdle(17), plen 0: [] -EVENT[1314]: 0.136666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1315]: 0.136680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1316]: 0.136695125 - core[1].svIdle(17), plen 0: [] -EVENT[1317]: 0.136833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1318]: 0.136849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1319]: 0.136864250 - core[0].svIdle(17), plen 0: [] -EVENT[1320]: 0.137666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1321]: 0.137680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1322]: 0.137695225 - core[1].svIdle(17), plen 0: [] -EVENT[1323]: 0.137833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1324]: 0.137849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1325]: 0.137864425 - core[0].svIdle(17), plen 0: [] -EVENT[1326]: 0.138666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1327]: 0.138679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1328]: 0.138695100 - core[1].svIdle(17), plen 0: [] -EVENT[1329]: 0.138833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1330]: 0.138849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1331]: 0.138864250 - core[0].svIdle(17), plen 0: [] -EVENT[1332]: 0.139666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1333]: 0.139680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1334]: 0.139695350 - core[1].svIdle(17), plen 0: [] -EVENT[1335]: 0.139833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1336]: 0.139849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1337]: 0.139864250 - core[0].svIdle(17), plen 0: [] -EVENT[1338]: 0.140666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1339]: 0.140680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1340]: 0.140695125 - core[1].svIdle(17), plen 0: [] -EVENT[1341]: 0.140833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1342]: 0.140849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1343]: 0.140864250 - core[0].svIdle(17), plen 0: [] -EVENT[1344]: 0.141666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1345]: 0.141680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1346]: 0.141695225 - core[1].svIdle(17), plen 0: [] -EVENT[1347]: 0.141833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1348]: 0.141849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1349]: 0.141864425 - core[0].svIdle(17), plen 0: [] -EVENT[1350]: 0.142666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1351]: 0.142680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1352]: 0.142695350 - core[1].svIdle(17), plen 0: [] -EVENT[1353]: 0.142833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1354]: 0.142849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1355]: 0.142864250 - core[0].svIdle(17), plen 0: [] -EVENT[1356]: 0.143666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1357]: 0.143680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1358]: 0.143695125 - core[1].svIdle(17), plen 0: [] -EVENT[1359]: 0.143833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1360]: 0.143849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1361]: 0.143864250 - core[0].svIdle(17), plen 0: [] -EVENT[1362]: 0.144666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1363]: 0.144680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1364]: 0.144695225 - core[1].svIdle(17), plen 0: [] -EVENT[1365]: 0.144833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1366]: 0.144849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1367]: 0.144864425 - core[0].svIdle(17), plen 0: [] -EVENT[1368]: 0.145666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1369]: 0.145679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1370]: 0.145695100 - core[1].svIdle(17), plen 0: [] -EVENT[1371]: 0.145833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1372]: 0.145849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1373]: 0.145864250 - core[0].svIdle(17), plen 0: [] -EVENT[1374]: 0.146666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1375]: 0.146680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1376]: 0.146695350 - core[1].svIdle(17), plen 0: [] -EVENT[1377]: 0.146833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1378]: 0.146849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1379]: 0.146864250 - core[0].svIdle(17), plen 0: [] -EVENT[1380]: 0.147666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1381]: 0.147680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1382]: 0.147695125 - core[1].svIdle(17), plen 0: [] -EVENT[1383]: 0.147833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1384]: 0.147849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1385]: 0.147864250 - core[0].svIdle(17), plen 0: [] -EVENT[1386]: 0.148666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1387]: 0.148680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1388]: 0.148695225 - core[1].svIdle(17), plen 0: [] -EVENT[1389]: 0.148833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1390]: 0.148849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1391]: 0.148864425 - core[0].svIdle(17), plen 0: [] -EVENT[1392]: 0.149666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1393]: 0.149679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1394]: 0.149695100 - core[1].svIdle(17), plen 0: [] -EVENT[1395]: 0.149833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1396]: 0.149849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1397]: 0.149864250 - core[0].svIdle(17), plen 0: [] -EVENT[1398]: 0.150666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1399]: 0.150680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1400]: 0.150695350 - core[1].svIdle(17), plen 0: [] -EVENT[1401]: 0.150833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1402]: 0.150849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1403]: 0.150864250 - core[0].svIdle(17), plen 0: [] -EVENT[1404]: 0.151666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1405]: 0.151680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1406]: 0.151695125 - core[1].svIdle(17), plen 0: [] -EVENT[1407]: 0.151833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1408]: 0.151848800 - core[0].svTaskStartReady(6), plen 0: [tid: 12286700] -EVENT[1409]: 0.151861575 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1410]: 0.151877250 - core[0].svTaskStartExec(4), plen 0: [tid: 12286700] -EVENT[1411]: 0.151912650 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461228, size: 6, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.151912650] HEAP: Allocated 6 bytes @ 0x3ffbb7ec from task "alloc0" on core 0 by: +EVENT[1365]: 0.124016225 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1366]: 0.124035575 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1367]: 0.124046775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1368]: 0.124057550 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1369]: 0.124075700 - core[1].svIdle(17), plen 0: [] +EVENT[1370]: 0.124103475 - core[0].svPrint(26), plen 70: [msg: I (419) example: Task[0x3ffba1a4]: allocated 30 bytes @ 0x3ffbafd0 +, lvl: 0, unused: 0] +[0.124103475] LOG: I (419) example: Task[0x3ffba1a4]: allocated 30 bytes @ 0x3ffbafd0 +EVENT[1371]: 0.124121075 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12296968, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1372]: 0.124134325 - core[0].svTaskStartReady(6), plen 0: [tid: 12299660] +EVENT[1373]: 0.124134325 - core[1].svTaskStartReady(6), plen 0: [tid: 12299660] +EVENT[1374]: 0.124150675 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1375]: 0.124161525 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[1376]: 0.124172350 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1377]: 0.124186175 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[1378]: 0.124196925 - core[1].svTaskStartExec(4), plen 0: [tid: 12299660] +EVENT[1379]: 0.124207675 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1380]: 0.124219775 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12296968, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[1381]: 0.124231000 - core[0].svIdle(17), plen 0: [] +EVENT[1382]: 0.124243325 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1383]: 0.124259575 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1384]: 0.124307450 - core[1].svPrint(26), plen 63: [msg: I (419) example: Task[0x3ffbad8c]: free memory @ 0x3ffbafd0 +, lvl: 0, unused: 0] +[0.124307450] LOG: I (419) example: Task[0x3ffbad8c]: free memory @ 0x3ffbafd0 +EVENT[1385]: 0.124328850 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073459152, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.124328850] HEAP: Freed bytes @ 0x3ffbafd0 from task "free2" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1386]: 0.124360200 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1387]: 0.124371650 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1388]: 0.124388350 - core[1].svIdle(17), plen 0: [] +EVENT[1389]: 0.124448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1390]: 0.124461625 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1391]: 0.124477200 - core[1].svIdle(17), plen 0: [] +EVENT[1392]: 0.124546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1393]: 0.124562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1394]: 0.124577275 - core[0].svIdle(17), plen 0: [] +EVENT[1395]: 0.125448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1396]: 0.125461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1397]: 0.125476850 - core[1].svIdle(17), plen 0: [] +EVENT[1398]: 0.125546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1399]: 0.125562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1400]: 0.125577075 - core[0].svIdle(17), plen 0: [] +EVENT[1401]: 0.126448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1402]: 0.126461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1403]: 0.126476975 - core[1].svIdle(17), plen 0: [] +EVENT[1404]: 0.126546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1405]: 0.126562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1406]: 0.126577225 - core[0].svIdle(17), plen 0: [] +EVENT[1407]: 0.127448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1408]: 0.127461775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1409]: 0.127476900 - core[1].svIdle(17), plen 0: [] +EVENT[1410]: 0.127546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1411]: 0.127562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1412]: 0.127577075 - core[0].svIdle(17), plen 0: [] +EVENT[1413]: 0.128448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1414]: 0.128461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1415]: 0.128476850 - core[1].svIdle(17), plen 0: [] +EVENT[1416]: 0.128546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1417]: 0.128562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1418]: 0.128577275 - core[0].svIdle(17), plen 0: [] +EVENT[1419]: 0.129448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1420]: 0.129461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1421]: 0.129476850 - core[1].svIdle(17), plen 0: [] +EVENT[1422]: 0.129546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1423]: 0.129562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1424]: 0.129577075 - core[0].svIdle(17), plen 0: [] +EVENT[1425]: 0.130448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1426]: 0.130461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1427]: 0.130476975 - core[1].svIdle(17), plen 0: [] +EVENT[1428]: 0.130546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1429]: 0.130562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1430]: 0.130577225 - core[0].svIdle(17), plen 0: [] +EVENT[1431]: 0.131448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1432]: 0.131461775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1433]: 0.131476900 - core[1].svIdle(17), plen 0: [] +EVENT[1434]: 0.131546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1435]: 0.131562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1436]: 0.131577075 - core[0].svIdle(17), plen 0: [] +EVENT[1437]: 0.132448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1438]: 0.132461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1439]: 0.132476850 - core[1].svIdle(17), plen 0: [] +EVENT[1440]: 0.132546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1441]: 0.132562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1442]: 0.132577275 - core[0].svIdle(17), plen 0: [] +EVENT[1443]: 0.133448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1444]: 0.133461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1445]: 0.133476850 - core[1].svIdle(17), plen 0: [] +EVENT[1446]: 0.133546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1447]: 0.133562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1448]: 0.133577075 - core[0].svIdle(17), plen 0: [] +EVENT[1449]: 0.134448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1450]: 0.134465950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1451]: 0.134481100 - core[1].svIdle(17), plen 0: [] +EVENT[1452]: 0.134546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1453]: 0.134562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1454]: 0.134577075 - core[0].svIdle(17), plen 0: [] +EVENT[1455]: 0.135448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1456]: 0.135461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1457]: 0.135476850 - core[1].svIdle(17), plen 0: [] +EVENT[1458]: 0.135546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1459]: 0.135562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1460]: 0.135577275 - core[0].svIdle(17), plen 0: [] +EVENT[1461]: 0.136448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1462]: 0.136461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1463]: 0.136476850 - core[1].svIdle(17), plen 0: [] +EVENT[1464]: 0.136546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1465]: 0.136562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1466]: 0.136577075 - core[0].svIdle(17), plen 0: [] +EVENT[1467]: 0.137448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1468]: 0.137461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1469]: 0.137476975 - core[1].svIdle(17), plen 0: [] +EVENT[1470]: 0.137546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1471]: 0.137562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1472]: 0.137577225 - core[0].svIdle(17), plen 0: [] +EVENT[1473]: 0.138448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1474]: 0.138461775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1475]: 0.138476900 - core[1].svIdle(17), plen 0: [] +EVENT[1476]: 0.138546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1477]: 0.138562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1478]: 0.138577075 - core[0].svIdle(17), plen 0: [] +EVENT[1479]: 0.139448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1480]: 0.139461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1481]: 0.139476850 - core[1].svIdle(17), plen 0: [] +EVENT[1482]: 0.139546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1483]: 0.139562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1484]: 0.139577275 - core[0].svIdle(17), plen 0: [] +EVENT[1485]: 0.140448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1486]: 0.140461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1487]: 0.140476850 - core[1].svIdle(17), plen 0: [] +EVENT[1488]: 0.140546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1489]: 0.140562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1490]: 0.140577075 - core[0].svIdle(17), plen 0: [] +EVENT[1491]: 0.141448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1492]: 0.141461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1493]: 0.141476975 - core[1].svIdle(17), plen 0: [] +EVENT[1494]: 0.141546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1495]: 0.141562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1496]: 0.141577225 - core[0].svIdle(17), plen 0: [] +EVENT[1497]: 0.142448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1498]: 0.142461775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1499]: 0.142476900 - core[1].svIdle(17), plen 0: [] +EVENT[1500]: 0.142546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1501]: 0.142562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1502]: 0.142577075 - core[0].svIdle(17), plen 0: [] +EVENT[1503]: 0.143448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1504]: 0.143461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1505]: 0.143476850 - core[1].svIdle(17), plen 0: [] +EVENT[1506]: 0.143546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1507]: 0.143562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1508]: 0.143577275 - core[0].svIdle(17), plen 0: [] +EVENT[1509]: 0.144448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1510]: 0.144461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1511]: 0.144476850 - core[1].svIdle(17), plen 0: [] +EVENT[1512]: 0.144546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1513]: 0.144562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1514]: 0.144577075 - core[0].svIdle(17), plen 0: [] +EVENT[1515]: 0.145448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1516]: 0.145461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1517]: 0.145476975 - core[1].svIdle(17), plen 0: [] +EVENT[1518]: 0.145546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1519]: 0.145562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1520]: 0.145577225 - core[0].svIdle(17), plen 0: [] +EVENT[1521]: 0.146448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1522]: 0.146466000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1523]: 0.146481125 - core[1].svIdle(17), plen 0: [] +EVENT[1524]: 0.146546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1525]: 0.146562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1526]: 0.146577075 - core[0].svIdle(17), plen 0: [] +EVENT[1527]: 0.147448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1528]: 0.147461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1529]: 0.147476850 - core[1].svIdle(17), plen 0: [] +EVENT[1530]: 0.147546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1531]: 0.147562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1532]: 0.147577275 - core[0].svIdle(17), plen 0: [] +EVENT[1533]: 0.148448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1534]: 0.148461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1535]: 0.148476850 - core[1].svIdle(17), plen 0: [] +EVENT[1536]: 0.148546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1537]: 0.148562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1538]: 0.148577075 - core[0].svIdle(17), plen 0: [] +EVENT[1539]: 0.149448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1540]: 0.149461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1541]: 0.149476975 - core[1].svIdle(17), plen 0: [] +EVENT[1542]: 0.149546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1543]: 0.149562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1544]: 0.149577225 - core[0].svIdle(17), plen 0: [] +EVENT[1545]: 0.150448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1546]: 0.150461775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1547]: 0.150476900 - core[1].svIdle(17), plen 0: [] +EVENT[1548]: 0.150546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1549]: 0.150562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1550]: 0.150577075 - core[0].svIdle(17), plen 0: [] +EVENT[1551]: 0.151448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1552]: 0.151461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1553]: 0.151476850 - core[1].svIdle(17), plen 0: [] +EVENT[1554]: 0.151546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1555]: 0.151562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1556]: 0.151577275 - core[0].svIdle(17), plen 0: [] +EVENT[1557]: 0.152448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1558]: 0.152461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1559]: 0.152476850 - core[1].svIdle(17), plen 0: [] +EVENT[1560]: 0.152546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1561]: 0.152561625 - core[0].svTaskStartReady(6), plen 0: [tid: 12284596] +EVENT[1562]: 0.152561625 - core[1].svTaskStartReady(6), plen 0: [tid: 12284596] +EVENT[1563]: 0.152574275 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1564]: 0.152590075 - core[0].svTaskStartExec(4), plen 0: [tid: 12284596] +EVENT[1565]: 0.152625125 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459108, size: 6, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.152625125] HEAP: Allocated 6 bytes @ 0x3ffbafa4 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1412]: 0.151951250 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461244, size: 12, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.151951250] HEAP: Allocated 12 bytes @ 0x3ffbb7fc from task "alloc0" on core 0 by: +EVENT[1566]: 0.152660700 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459152, size: 12, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.152660700] HEAP: Allocated 12 bytes @ 0x3ffbafd0 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1413]: 0.151968150 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1414]: 0.151984150 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1415]: 0.152054475 - core[0].svPrint(26), plen 70: [msg: I (460) example: Task[0x3ffb7aec]: allocated 12 bytes @ 0x3ffbb7fc +EVENT[1567]: 0.152677675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1568]: 0.152693775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1569]: 0.152752800 - core[0].svPrint(26), plen 70: [msg: I (448) example: Task[0x3ffb72b4]: allocated 12 bytes @ 0x3ffbafd0 , lvl: 0, unused: 0] -[0.152054475] LOG: I (460) example: Task[0x3ffb7aec]: allocated 12 bytes @ 0x3ffbb7fc -EVENT[1416]: 0.152068075 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12287056, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1417]: 0.152081300 - core[0].svTaskStartReady(6), plen 0: [tid: 12289748] -EVENT[1418]: 0.152097675 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1419]: 0.152108525 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[1420]: 0.152119300 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1421]: 0.152133125 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[1422]: 0.152144025 - core[1].svTaskStartExec(4), plen 0: [tid: 12289748] -EVENT[1423]: 0.152154850 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1424]: 0.152166800 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12287056, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[1425]: 0.152177050 - core[0].svIdle(17), plen 0: [] -EVENT[1426]: 0.152188475 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1427]: 0.152208850 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1428]: 0.152272400 - core[1].svPrint(26), plen 63: [msg: I (460) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb7fc +[0.152752800] LOG: I (448) example: Task[0x3ffb72b4]: allocated 12 bytes @ 0x3ffbafd0 +EVENT[1570]: 0.152766275 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12284952, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1571]: 0.152779450 - core[0].svTaskStartReady(6), plen 0: [tid: 12287644] +EVENT[1572]: 0.152779450 - core[1].svTaskStartReady(6), plen 0: [tid: 12287644] +EVENT[1573]: 0.152795650 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1574]: 0.152806600 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[1575]: 0.152817375 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1576]: 0.152831275 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[1577]: 0.152842075 - core[1].svTaskStartExec(4), plen 0: [tid: 12287644] +EVENT[1578]: 0.152852800 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1579]: 0.152864925 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12284952, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[1580]: 0.152875100 - core[0].svIdle(17), plen 0: [] +EVENT[1581]: 0.152886875 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1582]: 0.152903200 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1583]: 0.152951075 - core[1].svPrint(26), plen 63: [msg: I (448) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbafd0 , lvl: 0, unused: 0] -[0.152272400] LOG: I (460) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb7fc -EVENT[1429]: 0.152293600 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461244, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.152293600] HEAP: Freed bytes @ 0x3ffbb7fc from task "free0" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +[0.152951075] LOG: I (448) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbafd0 +EVENT[1584]: 0.152972300 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073459152, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.152972300] HEAP: Freed bytes @ 0x3ffbafd0 from task "free0" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1430]: 0.152320475 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1431]: 0.152331900 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1432]: 0.152348475 - core[1].svIdle(17), plen 0: [] -EVENT[1433]: 0.152666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1434]: 0.152679850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1435]: 0.152695550 - core[1].svIdle(17), plen 0: [] -EVENT[1436]: 0.152833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1437]: 0.152848800 - core[0].svTaskStartReady(6), plen 0: [tid: 12292716] -EVENT[1438]: 0.152861575 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1439]: 0.152877375 - core[0].svTaskStartExec(4), plen 0: [tid: 12292716] -EVENT[1440]: 0.152912775 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461244, size: 12, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.152912775] HEAP: Allocated 12 bytes @ 0x3ffbb7fc from task "alloc1" on core 0 by: +EVENT[1585]: 0.153003750 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1586]: 0.153015325 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1587]: 0.153032025 - core[1].svIdle(17), plen 0: [] +EVENT[1588]: 0.153448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1589]: 0.153461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1590]: 0.153477300 - core[1].svIdle(17), plen 0: [] +EVENT[1591]: 0.153546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1592]: 0.153561625 - core[0].svTaskStartReady(6), plen 0: [tid: 12290612] +EVENT[1593]: 0.153561625 - core[1].svTaskStartReady(6), plen 0: [tid: 12290612] +EVENT[1594]: 0.153573500 - core[0].svTaskStartReady(6), plen 0: [tid: 12296612] +EVENT[1595]: 0.153573500 - core[1].svTaskStartReady(6), plen 0: [tid: 12296612] +EVENT[1596]: 0.153585975 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1597]: 0.153601625 - core[0].svTaskStartExec(4), plen 0: [tid: 12290612] +EVENT[1598]: 0.153638000 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459152, size: 12, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.153638000] HEAP: Allocated 12 bytes @ 0x3ffbafd0 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1441]: 0.152947300 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461260, size: 24, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.152947300] HEAP: Allocated 24 bytes @ 0x3ffbb80c from task "alloc1" on core 0 by: +EVENT[1599]: 0.153673450 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459168, size: 24, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.153673450] HEAP: Allocated 24 bytes @ 0x3ffbafe0 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1442]: 0.152964250 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1443]: 0.152984425 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1444]: 0.153054850 - core[0].svPrint(26), plen 70: [msg: I (461) example: Task[0x3ffb926c]: allocated 24 bytes @ 0x3ffbb80c +EVENT[1600]: 0.153690500 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1601]: 0.153706525 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1602]: 0.153761350 - core[0].svPrint(26), plen 70: [msg: I (449) example: Task[0x3ffb8a34]: allocated 24 bytes @ 0x3ffbafe0 , lvl: 0, unused: 0] -[0.153054850] LOG: I (461) example: Task[0x3ffb926c]: allocated 24 bytes @ 0x3ffbb80c -EVENT[1445]: 0.153068500 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12293072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1446]: 0.153081675 - core[0].svTaskStartReady(6), plen 0: [tid: 12295764] -EVENT[1447]: 0.153097875 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1448]: 0.153108925 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[1449]: 0.153119675 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1450]: 0.153133400 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[1451]: 0.153144350 - core[1].svTaskStartExec(4), plen 0: [tid: 12295764] -EVENT[1452]: 0.153155150 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1453]: 0.153167000 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12293072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[1454]: 0.153177275 - core[0].svIdle(17), plen 0: [] -EVENT[1455]: 0.153188750 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1456]: 0.153205050 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1457]: 0.153268500 - core[1].svPrint(26), plen 63: [msg: I (461) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb80c -, lvl: 0, unused: 0] -[0.153268500] LOG: I (461) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb80c -EVENT[1458]: 0.153293525 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461260, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.153293525] HEAP: Freed bytes @ 0x3ffbb80c from task "free1" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 -/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 -/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 - -EVENT[1459]: 0.153320525 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1460]: 0.153331950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1461]: 0.153348525 - core[1].svIdle(17), plen 0: [] -EVENT[1462]: 0.153666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1463]: 0.153679850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1464]: 0.153695550 - core[1].svIdle(17), plen 0: [] -EVENT[1465]: 0.153833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1466]: 0.153848800 - core[0].svTaskStartReady(6), plen 0: [tid: 12298716] -EVENT[1467]: 0.153861575 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1468]: 0.153877250 - core[0].svTaskStartExec(4), plen 0: [tid: 12298716] -EVENT[1469]: 0.153912650 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461260, size: 18, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.153912650] HEAP: Allocated 18 bytes @ 0x3ffbb80c from task "alloc2" on core 0 by: +[0.153761350] LOG: I (449) example: Task[0x3ffb8a34]: allocated 24 bytes @ 0x3ffbafe0 +EVENT[1603]: 0.153778125 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12290968, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1604]: 0.153791500 - core[0].svTaskStartReady(6), plen 0: [tid: 12293660] +EVENT[1605]: 0.153791500 - core[1].svTaskStartReady(6), plen 0: [tid: 12293660] +EVENT[1606]: 0.153807850 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1607]: 0.153818700 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[1608]: 0.153829525 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1609]: 0.153843300 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[1610]: 0.153855250 - core[1].svTaskStartExec(4), plen 0: [tid: 12293660] +EVENT[1611]: 0.153866400 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1612]: 0.153878350 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12290968, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[1613]: 0.153890000 - core[0].svTaskStartExec(4), plen 0: [tid: 12296612] +EVENT[1614]: 0.153901700 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1615]: 0.153920300 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1616]: 0.153933400 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459196, size: 18, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.153933400] HEAP: Allocated 18 bytes @ 0x3ffbaffc from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1470]: 0.153947200 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461284, size: 36, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.153947200] HEAP: Allocated 36 bytes @ 0x3ffbb824 from task "alloc2" on core 0 by: +EVENT[1617]: 0.153973975 - core[1].svPrint(26), plen 63: [msg: I (449) example: Task[0x3ffb961c]: free memory @ 0x3ffbafe0 +, lvl: 0, unused: 0] +[0.153973975] LOG: I (449) example: Task[0x3ffb961c]: free memory @ 0x3ffbafe0 +EVENT[1618]: 0.153989950 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459220, size: 36, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.153989950] HEAP: Allocated 36 bytes @ 0x3ffbb014 from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1471]: 0.153964350 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1472]: 0.153980350 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1473]: 0.154050675 - core[0].svPrint(26), plen 70: [msg: I (462) example: Task[0x3ffba9dc]: allocated 36 bytes @ 0x3ffbb824 -, lvl: 0, unused: 0] -[0.154050675] LOG: I (462) example: Task[0x3ffba9dc]: allocated 36 bytes @ 0x3ffbb824 -EVENT[1474]: 0.154068500 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12299072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1475]: 0.154081850 - core[0].svTaskStartReady(6), plen 0: [tid: 12301764] -EVENT[1476]: 0.154098175 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1477]: 0.154109025 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[1478]: 0.154119775 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1479]: 0.154133500 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[1480]: 0.154144400 - core[1].svTaskStartExec(4), plen 0: [tid: 12301764] -EVENT[1481]: 0.154155225 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1482]: 0.154167075 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12299072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[1483]: 0.154178375 - core[0].svIdle(17), plen 0: [] -EVENT[1484]: 0.154190000 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1485]: 0.154206400 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1486]: 0.154269950 - core[1].svPrint(26), plen 63: [msg: I (462) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb824 -, lvl: 0, unused: 0] -[0.154269950] LOG: I (462) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb824 -EVENT[1487]: 0.154291150 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461284, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.154291150] HEAP: Freed bytes @ 0x3ffbb824 from task "free2" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +EVENT[1619]: 0.154004325 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073459168, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.154004325] HEAP: Freed bytes @ 0x3ffbafe0 from task "free1" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1488]: 0.154322150 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1489]: 0.154333625 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1490]: 0.154350325 - core[1].svIdle(17), plen 0: [] -EVENT[1491]: 0.154666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1492]: 0.154679875 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1493]: 0.154695450 - core[1].svIdle(17), plen 0: [] -EVENT[1494]: 0.154833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1495]: 0.154849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1496]: 0.154864425 - core[0].svIdle(17), plen 0: [] -EVENT[1497]: 0.155666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1498]: 0.155679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1499]: 0.155695100 - core[1].svIdle(17), plen 0: [] -EVENT[1500]: 0.155833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1501]: 0.155849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1502]: 0.155864250 - core[0].svIdle(17), plen 0: [] -EVENT[1503]: 0.156666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1504]: 0.156680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1505]: 0.156695350 - core[1].svIdle(17), plen 0: [] -EVENT[1506]: 0.156833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1507]: 0.156849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1508]: 0.156864250 - core[0].svIdle(17), plen 0: [] -EVENT[1509]: 0.157666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1510]: 0.157680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1511]: 0.157695125 - core[1].svIdle(17), plen 0: [] -EVENT[1512]: 0.157833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1513]: 0.157849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1514]: 0.157864250 - core[0].svIdle(17), plen 0: [] -EVENT[1515]: 0.158666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1516]: 0.158680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1517]: 0.158695225 - core[1].svIdle(17), plen 0: [] -EVENT[1518]: 0.158833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1519]: 0.158849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1520]: 0.158864425 - core[0].svIdle(17), plen 0: [] -EVENT[1521]: 0.159666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1522]: 0.159679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1523]: 0.159695100 - core[1].svIdle(17), plen 0: [] -EVENT[1524]: 0.159833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1525]: 0.159849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1526]: 0.159864250 - core[0].svIdle(17), plen 0: [] -EVENT[1527]: 0.160666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1528]: 0.160680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1529]: 0.160695350 - core[1].svIdle(17), plen 0: [] -EVENT[1530]: 0.160833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1531]: 0.160849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1532]: 0.160864250 - core[0].svIdle(17), plen 0: [] -EVENT[1533]: 0.161666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1534]: 0.161680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1535]: 0.161695125 - core[1].svIdle(17), plen 0: [] -EVENT[1536]: 0.161833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1537]: 0.161849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1538]: 0.161864250 - core[0].svIdle(17), plen 0: [] -EVENT[1539]: 0.162666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1540]: 0.162680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1541]: 0.162695225 - core[1].svIdle(17), plen 0: [] -EVENT[1542]: 0.162833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1543]: 0.162849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1544]: 0.162864425 - core[0].svIdle(17), plen 0: [] -EVENT[1545]: 0.163666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1546]: 0.163679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1547]: 0.163695100 - core[1].svIdle(17), plen 0: [] -EVENT[1548]: 0.163833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1549]: 0.163849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1550]: 0.163864250 - core[0].svIdle(17), plen 0: [] -EVENT[1551]: 0.164666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1552]: 0.164683575 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1553]: 0.164698725 - core[1].svIdle(17), plen 0: [] -EVENT[1554]: 0.164833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1555]: 0.164849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1556]: 0.164864250 - core[0].svIdle(17), plen 0: [] -EVENT[1557]: 0.165666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1558]: 0.165680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1559]: 0.165695225 - core[1].svIdle(17), plen 0: [] -EVENT[1560]: 0.165833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1561]: 0.165849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1562]: 0.165864425 - core[0].svIdle(17), plen 0: [] -EVENT[1563]: 0.166666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1564]: 0.166679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1565]: 0.166695100 - core[1].svIdle(17), plen 0: [] -EVENT[1566]: 0.166833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1567]: 0.166849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1568]: 0.166864250 - core[0].svIdle(17), plen 0: [] -EVENT[1569]: 0.167666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1570]: 0.167680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1571]: 0.167695350 - core[1].svIdle(17), plen 0: [] -EVENT[1572]: 0.167833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1573]: 0.167849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1574]: 0.167864250 - core[0].svIdle(17), plen 0: [] -EVENT[1575]: 0.168666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1576]: 0.168680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1577]: 0.168695125 - core[1].svIdle(17), plen 0: [] -EVENT[1578]: 0.168833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1579]: 0.168849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1580]: 0.168864250 - core[0].svIdle(17), plen 0: [] -EVENT[1581]: 0.169666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1582]: 0.169680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1583]: 0.169695225 - core[1].svIdle(17), plen 0: [] -EVENT[1584]: 0.169833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1585]: 0.169849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1586]: 0.169864425 - core[0].svIdle(17), plen 0: [] -EVENT[1587]: 0.170666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1588]: 0.170679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1589]: 0.170695100 - core[1].svIdle(17), plen 0: [] -EVENT[1590]: 0.170833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1591]: 0.170849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1592]: 0.170864250 - core[0].svIdle(17), plen 0: [] -EVENT[1593]: 0.171666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1594]: 0.171680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1595]: 0.171695350 - core[1].svIdle(17), plen 0: [] -EVENT[1596]: 0.171833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1597]: 0.171849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1598]: 0.171864250 - core[0].svIdle(17), plen 0: [] -EVENT[1599]: 0.172666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1600]: 0.172680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1601]: 0.172695125 - core[1].svIdle(17), plen 0: [] -EVENT[1602]: 0.172833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1603]: 0.172849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1604]: 0.172864250 - core[0].svIdle(17), plen 0: [] -EVENT[1605]: 0.173666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1606]: 0.173680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1607]: 0.173695225 - core[1].svIdle(17), plen 0: [] -EVENT[1608]: 0.173833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1609]: 0.173849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1610]: 0.173864425 - core[0].svIdle(17), plen 0: [] -EVENT[1611]: 0.174666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1612]: 0.174679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1613]: 0.174695100 - core[1].svIdle(17), plen 0: [] -EVENT[1614]: 0.174833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1615]: 0.174849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1616]: 0.174864250 - core[0].svIdle(17), plen 0: [] -EVENT[1617]: 0.175666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1618]: 0.175680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1619]: 0.175695350 - core[1].svIdle(17), plen 0: [] -EVENT[1620]: 0.175833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1621]: 0.175849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1622]: 0.175864250 - core[0].svIdle(17), plen 0: [] -EVENT[1623]: 0.176666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1624]: 0.176684225 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1625]: 0.176699375 - core[1].svIdle(17), plen 0: [] -EVENT[1626]: 0.176833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1627]: 0.176849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1628]: 0.176864250 - core[0].svIdle(17), plen 0: [] -EVENT[1629]: 0.177666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1630]: 0.177680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1631]: 0.177695225 - core[1].svIdle(17), plen 0: [] -EVENT[1632]: 0.177833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1633]: 0.177849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1634]: 0.177864425 - core[0].svIdle(17), plen 0: [] -EVENT[1635]: 0.178666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1636]: 0.178679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1637]: 0.178695100 - core[1].svIdle(17), plen 0: [] -EVENT[1638]: 0.178833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1639]: 0.178849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1640]: 0.178864250 - core[0].svIdle(17), plen 0: [] -EVENT[1641]: 0.179666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1642]: 0.179680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1643]: 0.179695350 - core[1].svIdle(17), plen 0: [] -EVENT[1644]: 0.179833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1645]: 0.179849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1646]: 0.179864250 - core[0].svIdle(17), plen 0: [] -EVENT[1647]: 0.180666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1648]: 0.180680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1649]: 0.180695125 - core[1].svIdle(17), plen 0: [] -EVENT[1650]: 0.180833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1651]: 0.180849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1652]: 0.180864250 - core[0].svIdle(17), plen 0: [] -EVENT[1653]: 0.181666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1654]: 0.181680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1655]: 0.181695225 - core[1].svIdle(17), plen 0: [] -EVENT[1656]: 0.181833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1657]: 0.181848825 - core[0].svTaskStartReady(6), plen 0: [tid: 12286700] -EVENT[1658]: 0.181861575 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1659]: 0.181877250 - core[0].svTaskStartExec(4), plen 0: [tid: 12286700] -EVENT[1660]: 0.181912575 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461284, size: 7, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.181912575] HEAP: Allocated 7 bytes @ 0x3ffbb824 from task "alloc0" on core 0 by: +EVENT[1620]: 0.154016775 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1621]: 0.154036150 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1622]: 0.154047400 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1623]: 0.154058200 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1624]: 0.154076400 - core[1].svIdle(17), plen 0: [] +EVENT[1625]: 0.154104125 - core[0].svPrint(26), plen 70: [msg: I (449) example: Task[0x3ffba1a4]: allocated 36 bytes @ 0x3ffbb014 +, lvl: 0, unused: 0] +[0.154104125] LOG: I (449) example: Task[0x3ffba1a4]: allocated 36 bytes @ 0x3ffbb014 +EVENT[1626]: 0.154117575 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12296968, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1627]: 0.154134325 - core[0].svTaskStartReady(6), plen 0: [tid: 12299660] +EVENT[1628]: 0.154134325 - core[1].svTaskStartReady(6), plen 0: [tid: 12299660] +EVENT[1629]: 0.154150675 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1630]: 0.154161550 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[1631]: 0.154172400 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1632]: 0.154186075 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[1633]: 0.154196825 - core[1].svTaskStartExec(4), plen 0: [tid: 12299660] +EVENT[1634]: 0.154207625 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1635]: 0.154219575 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12296968, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[1636]: 0.154230800 - core[0].svIdle(17), plen 0: [] +EVENT[1637]: 0.154242625 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1638]: 0.154258875 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1639]: 0.154306650 - core[1].svPrint(26), plen 63: [msg: I (449) example: Task[0x3ffbad8c]: free memory @ 0x3ffbb014 +, lvl: 0, unused: 0] +[0.154306650] LOG: I (449) example: Task[0x3ffbad8c]: free memory @ 0x3ffbb014 +EVENT[1640]: 0.154328025 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073459220, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.154328025] HEAP: Freed bytes @ 0x3ffbb014 from task "free2" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1641]: 0.154355450 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1642]: 0.154366850 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1643]: 0.154383425 - core[1].svIdle(17), plen 0: [] +EVENT[1644]: 0.154448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1645]: 0.154461625 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1646]: 0.154477200 - core[1].svIdle(17), plen 0: [] +EVENT[1647]: 0.154546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1648]: 0.154562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1649]: 0.154577075 - core[0].svIdle(17), plen 0: [] +EVENT[1650]: 0.155448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1651]: 0.155461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1652]: 0.155476850 - core[1].svIdle(17), plen 0: [] +EVENT[1653]: 0.155546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1654]: 0.155562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1655]: 0.155577275 - core[0].svIdle(17), plen 0: [] +EVENT[1656]: 0.156448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1657]: 0.156461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1658]: 0.156476850 - core[1].svIdle(17), plen 0: [] +EVENT[1659]: 0.156546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1660]: 0.156565625 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1661]: 0.156580850 - core[0].svIdle(17), plen 0: [] +EVENT[1662]: 0.157448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1663]: 0.157461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1664]: 0.157476850 - core[1].svIdle(17), plen 0: [] +EVENT[1665]: 0.157546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1666]: 0.157562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1667]: 0.157577075 - core[0].svIdle(17), plen 0: [] +EVENT[1668]: 0.158448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1669]: 0.158461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1670]: 0.158476975 - core[1].svIdle(17), plen 0: [] +EVENT[1671]: 0.158546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1672]: 0.158562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1673]: 0.158577225 - core[0].svIdle(17), plen 0: [] +EVENT[1674]: 0.159448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1675]: 0.159461775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1676]: 0.159476900 - core[1].svIdle(17), plen 0: [] +EVENT[1677]: 0.159546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1678]: 0.159562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1679]: 0.159577075 - core[0].svIdle(17), plen 0: [] +EVENT[1680]: 0.160448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1681]: 0.160461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1682]: 0.160476850 - core[1].svIdle(17), plen 0: [] +EVENT[1683]: 0.160546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1684]: 0.160562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1685]: 0.160577275 - core[0].svIdle(17), plen 0: [] +EVENT[1686]: 0.161448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1687]: 0.161461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1688]: 0.161476850 - core[1].svIdle(17), plen 0: [] +EVENT[1689]: 0.161546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1690]: 0.161562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1691]: 0.161577075 - core[0].svIdle(17), plen 0: [] +EVENT[1692]: 0.162448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1693]: 0.162461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1694]: 0.162476975 - core[1].svIdle(17), plen 0: [] +EVENT[1695]: 0.162546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1696]: 0.162562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1697]: 0.162577225 - core[0].svIdle(17), plen 0: [] +EVENT[1698]: 0.163448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1699]: 0.163461775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1700]: 0.163476900 - core[1].svIdle(17), plen 0: [] +EVENT[1701]: 0.163546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1702]: 0.163562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1703]: 0.163577075 - core[0].svIdle(17), plen 0: [] +EVENT[1704]: 0.164448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1705]: 0.164461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1706]: 0.164476850 - core[1].svIdle(17), plen 0: [] +EVENT[1707]: 0.164546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1708]: 0.164562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1709]: 0.164577275 - core[0].svIdle(17), plen 0: [] +EVENT[1710]: 0.165448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1711]: 0.165461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1712]: 0.165476850 - core[1].svIdle(17), plen 0: [] +EVENT[1713]: 0.165546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1714]: 0.165562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1715]: 0.165577075 - core[0].svIdle(17), plen 0: [] +EVENT[1716]: 0.166448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1717]: 0.166461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1718]: 0.166476975 - core[1].svIdle(17), plen 0: [] +EVENT[1719]: 0.166546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1720]: 0.166562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1721]: 0.166577225 - core[0].svIdle(17), plen 0: [] +EVENT[1722]: 0.167448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1723]: 0.167461775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1724]: 0.167476900 - core[1].svIdle(17), plen 0: [] +EVENT[1725]: 0.167546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1726]: 0.167562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1727]: 0.167577075 - core[0].svIdle(17), plen 0: [] +EVENT[1728]: 0.168448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1729]: 0.168461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1730]: 0.168476850 - core[1].svIdle(17), plen 0: [] +EVENT[1731]: 0.168546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1732]: 0.168566300 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1733]: 0.168581500 - core[0].svIdle(17), plen 0: [] +EVENT[1734]: 0.169448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1735]: 0.169461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1736]: 0.169476850 - core[1].svIdle(17), plen 0: [] +EVENT[1737]: 0.169546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1738]: 0.169562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1739]: 0.169577075 - core[0].svIdle(17), plen 0: [] +EVENT[1740]: 0.170448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1741]: 0.170461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1742]: 0.170476975 - core[1].svIdle(17), plen 0: [] +EVENT[1743]: 0.170546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1744]: 0.170562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1745]: 0.170577225 - core[0].svIdle(17), plen 0: [] +EVENT[1746]: 0.171448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1747]: 0.171461775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1748]: 0.171476900 - core[1].svIdle(17), plen 0: [] +EVENT[1749]: 0.171546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1750]: 0.171562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1751]: 0.171577075 - core[0].svIdle(17), plen 0: [] +EVENT[1752]: 0.172448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1753]: 0.172461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1754]: 0.172476850 - core[1].svIdle(17), plen 0: [] +EVENT[1755]: 0.172546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1756]: 0.172562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1757]: 0.172577275 - core[0].svIdle(17), plen 0: [] +EVENT[1758]: 0.173448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1759]: 0.173461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1760]: 0.173476850 - core[1].svIdle(17), plen 0: [] +EVENT[1761]: 0.173546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1762]: 0.173562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1763]: 0.173577075 - core[0].svIdle(17), plen 0: [] +EVENT[1764]: 0.174448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1765]: 0.174461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1766]: 0.174476975 - core[1].svIdle(17), plen 0: [] +EVENT[1767]: 0.174546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1768]: 0.174562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1769]: 0.174577225 - core[0].svIdle(17), plen 0: [] +EVENT[1770]: 0.175448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1771]: 0.175461775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1772]: 0.175476900 - core[1].svIdle(17), plen 0: [] +EVENT[1773]: 0.175546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1774]: 0.175562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1775]: 0.175577075 - core[0].svIdle(17), plen 0: [] +EVENT[1776]: 0.176448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1777]: 0.176461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1778]: 0.176476850 - core[1].svIdle(17), plen 0: [] +EVENT[1779]: 0.176546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1780]: 0.176562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1781]: 0.176577275 - core[0].svIdle(17), plen 0: [] +EVENT[1782]: 0.177448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1783]: 0.177461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1784]: 0.177476850 - core[1].svIdle(17), plen 0: [] +EVENT[1785]: 0.177546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1786]: 0.177562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1787]: 0.177577075 - core[0].svIdle(17), plen 0: [] +EVENT[1788]: 0.178448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1789]: 0.178461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1790]: 0.178476975 - core[1].svIdle(17), plen 0: [] +EVENT[1791]: 0.178546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1792]: 0.178562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1793]: 0.178577225 - core[0].svIdle(17), plen 0: [] +EVENT[1794]: 0.179448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1795]: 0.179461775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1796]: 0.179476900 - core[1].svIdle(17), plen 0: [] +EVENT[1797]: 0.179546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1798]: 0.179562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1799]: 0.179577075 - core[0].svIdle(17), plen 0: [] +EVENT[1800]: 0.180448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1801]: 0.180461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1802]: 0.180476850 - core[1].svIdle(17), plen 0: [] +EVENT[1803]: 0.180546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1804]: 0.180566300 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1805]: 0.180581500 - core[0].svIdle(17), plen 0: [] +EVENT[1806]: 0.181448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1807]: 0.181461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1808]: 0.181476850 - core[1].svIdle(17), plen 0: [] +EVENT[1809]: 0.181546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1810]: 0.181562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1811]: 0.181577075 - core[0].svIdle(17), plen 0: [] +EVENT[1812]: 0.182448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1813]: 0.182461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1814]: 0.182476975 - core[1].svIdle(17), plen 0: [] +EVENT[1815]: 0.182546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1816]: 0.182561625 - core[0].svTaskStartReady(6), plen 0: [tid: 12284596] +EVENT[1817]: 0.182561625 - core[1].svTaskStartReady(6), plen 0: [tid: 12284596] +EVENT[1818]: 0.182574225 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1819]: 0.182589875 - core[0].svTaskStartExec(4), plen 0: [tid: 12284596] +EVENT[1820]: 0.182624900 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459168, size: 7, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.182624900] HEAP: Allocated 7 bytes @ 0x3ffbafe0 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1661]: 0.181947000 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461300, size: 14, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.181947000] HEAP: Allocated 14 bytes @ 0x3ffbb834 from task "alloc0" on core 0 by: +EVENT[1821]: 0.182660375 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459220, size: 14, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.182660375] HEAP: Allocated 14 bytes @ 0x3ffbb014 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1662]: 0.181964025 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1663]: 0.181980025 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1664]: 0.182050450 - core[0].svPrint(26), plen 70: [msg: I (490) example: Task[0x3ffb7aec]: allocated 14 bytes @ 0x3ffbb834 +EVENT[1822]: 0.182677300 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1823]: 0.182693250 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1824]: 0.182748025 - core[0].svPrint(26), plen 70: [msg: I (478) example: Task[0x3ffb72b4]: allocated 14 bytes @ 0x3ffbb014 , lvl: 0, unused: 0] -[0.182050450] LOG: I (490) example: Task[0x3ffb7aec]: allocated 14 bytes @ 0x3ffbb834 -EVENT[1665]: 0.182068200 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12287056, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1666]: 0.182081425 - core[0].svTaskStartReady(6), plen 0: [tid: 12289748] -EVENT[1667]: 0.182097650 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1668]: 0.182108525 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[1669]: 0.182119275 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1670]: 0.182133125 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[1671]: 0.182144000 - core[1].svTaskStartExec(4), plen 0: [tid: 12289748] -EVENT[1672]: 0.182154825 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1673]: 0.182166800 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12287056, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[1674]: 0.182177050 - core[0].svIdle(17), plen 0: [] -EVENT[1675]: 0.182188450 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1676]: 0.182204825 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1677]: 0.182268375 - core[1].svPrint(26), plen 63: [msg: I (490) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb834 +[0.182748025] LOG: I (478) example: Task[0x3ffb72b4]: allocated 14 bytes @ 0x3ffbb014 +EVENT[1825]: 0.182761500 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12284952, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1826]: 0.182778850 - core[0].svTaskStartReady(6), plen 0: [tid: 12287644] +EVENT[1827]: 0.182778850 - core[1].svTaskStartReady(6), plen 0: [tid: 12287644] +EVENT[1828]: 0.182795100 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1829]: 0.182806050 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[1830]: 0.182816825 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1831]: 0.182830550 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[1832]: 0.182841300 - core[1].svTaskStartExec(4), plen 0: [tid: 12287644] +EVENT[1833]: 0.182852100 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1834]: 0.182864075 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12284952, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[1835]: 0.182874325 - core[0].svIdle(17), plen 0: [] +EVENT[1836]: 0.182886075 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1837]: 0.182902350 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1838]: 0.182950125 - core[1].svPrint(26), plen 63: [msg: I (478) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbb014 , lvl: 0, unused: 0] -[0.182268375] LOG: I (490) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb834 -EVENT[1678]: 0.182289575 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461300, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.182289575] HEAP: Freed bytes @ 0x3ffbb834 from task "free0" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +[0.182950125] LOG: I (478) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbb014 +EVENT[1839]: 0.182971500 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073459220, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.182971500] HEAP: Freed bytes @ 0x3ffbb014 from task "free0" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1679]: 0.182320575 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1680]: 0.182332050 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1681]: 0.182348750 - core[1].svIdle(17), plen 0: [] -EVENT[1682]: 0.182666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1683]: 0.182679875 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1684]: 0.182695450 - core[1].svIdle(17), plen 0: [] -EVENT[1685]: 0.182833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1686]: 0.182848825 - core[0].svTaskStartReady(6), plen 0: [tid: 12292716] -EVENT[1687]: 0.182861575 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1688]: 0.182877250 - core[0].svTaskStartExec(4), plen 0: [tid: 12292716] -EVENT[1689]: 0.182912575 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461300, size: 14, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.182912575] HEAP: Allocated 14 bytes @ 0x3ffbb834 from task "alloc1" on core 0 by: +EVENT[1840]: 0.182998900 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1841]: 0.183010325 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1842]: 0.183026875 - core[1].svIdle(17), plen 0: [] +EVENT[1843]: 0.183448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1844]: 0.183461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1845]: 0.183477300 - core[1].svIdle(17), plen 0: [] +EVENT[1846]: 0.183546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1847]: 0.183561675 - core[0].svTaskStartReady(6), plen 0: [tid: 12290612] +EVENT[1848]: 0.183561675 - core[1].svTaskStartReady(6), plen 0: [tid: 12290612] +EVENT[1849]: 0.183573500 - core[0].svTaskStartReady(6), plen 0: [tid: 12296612] +EVENT[1850]: 0.183573500 - core[1].svTaskStartReady(6), plen 0: [tid: 12296612] +EVENT[1851]: 0.183586000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1852]: 0.183601675 - core[0].svTaskStartExec(4), plen 0: [tid: 12290612] +EVENT[1853]: 0.183638125 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459220, size: 14, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.183638125] HEAP: Allocated 14 bytes @ 0x3ffbb014 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1690]: 0.182947000 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461320, size: 28, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.182947000] HEAP: Allocated 28 bytes @ 0x3ffbb848 from task "alloc1" on core 0 by: +EVENT[1854]: 0.183677700 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459240, size: 28, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.183677700] HEAP: Allocated 28 bytes @ 0x3ffbb028 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1691]: 0.182964025 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1692]: 0.182980025 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1693]: 0.183050450 - core[0].svPrint(26), plen 70: [msg: I (491) example: Task[0x3ffb926c]: allocated 28 bytes @ 0x3ffbb848 +EVENT[1855]: 0.183694650 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1856]: 0.183710775 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1857]: 0.183765500 - core[0].svPrint(26), plen 70: [msg: I (479) example: Task[0x3ffb8a34]: allocated 28 bytes @ 0x3ffbb028 , lvl: 0, unused: 0] -[0.183050450] LOG: I (491) example: Task[0x3ffb926c]: allocated 28 bytes @ 0x3ffbb848 -EVENT[1694]: 0.183064000 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12293072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1695]: 0.183081425 - core[0].svTaskStartReady(6), plen 0: [tid: 12295764] -EVENT[1696]: 0.183097725 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1697]: 0.183108575 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[1698]: 0.183119325 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1699]: 0.183133050 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[1700]: 0.183143900 - core[1].svTaskStartExec(4), plen 0: [tid: 12295764] -EVENT[1701]: 0.183154725 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1702]: 0.183166600 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12293072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[1703]: 0.183176850 - core[0].svIdle(17), plen 0: [] -EVENT[1704]: 0.183188325 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1705]: 0.183204625 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1706]: 0.183268075 - core[1].svPrint(26), plen 63: [msg: I (491) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb848 -, lvl: 0, unused: 0] -[0.183268075] LOG: I (491) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb848 -EVENT[1707]: 0.183289250 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461320, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.183289250] HEAP: Freed bytes @ 0x3ffbb848 from task "free1" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 -/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 -/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 - -EVENT[1708]: 0.183316250 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1709]: 0.183327675 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1710]: 0.183344250 - core[1].svIdle(17), plen 0: [] -EVENT[1711]: 0.183666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1712]: 0.183679850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1713]: 0.183695550 - core[1].svIdle(17), plen 0: [] -EVENT[1714]: 0.183833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1715]: 0.183848800 - core[0].svTaskStartReady(6), plen 0: [tid: 12298716] -EVENT[1716]: 0.183861575 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1717]: 0.183877250 - core[0].svTaskStartExec(4), plen 0: [tid: 12298716] -EVENT[1718]: 0.183912650 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461320, size: 21, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.183912650] HEAP: Allocated 21 bytes @ 0x3ffbb848 from task "alloc2" on core 0 by: +[0.183765500] LOG: I (479) example: Task[0x3ffb8a34]: allocated 28 bytes @ 0x3ffbb028 +EVENT[1858]: 0.183778950 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12290968, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1859]: 0.183792325 - core[0].svTaskStartReady(6), plen 0: [tid: 12293660] +EVENT[1860]: 0.183792325 - core[1].svTaskStartReady(6), plen 0: [tid: 12293660] +EVENT[1861]: 0.183808675 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1862]: 0.183819525 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[1863]: 0.183830350 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1864]: 0.183844125 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[1865]: 0.183856075 - core[1].svTaskStartExec(4), plen 0: [tid: 12293660] +EVENT[1866]: 0.183867225 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1867]: 0.183879175 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12290968, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[1868]: 0.183890825 - core[0].svTaskStartExec(4), plen 0: [tid: 12296612] +EVENT[1869]: 0.183902500 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1870]: 0.183924575 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1871]: 0.183936150 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459272, size: 21, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.183936150] HEAP: Allocated 21 bytes @ 0x3ffbb048 from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1719]: 0.183951325 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461348, size: 42, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.183951325] HEAP: Allocated 42 bytes @ 0x3ffbb864 from task "alloc2" on core 0 by: +EVENT[1872]: 0.183977500 - core[1].svPrint(26), plen 63: [msg: I (479) example: Task[0x3ffb961c]: free memory @ 0x3ffbb028 +, lvl: 0, unused: 0] +[0.183977500] LOG: I (479) example: Task[0x3ffb961c]: free memory @ 0x3ffbb028 +EVENT[1873]: 0.183988600 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459300, size: 42, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.183988600] HEAP: Allocated 42 bytes @ 0x3ffbb064 from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1720]: 0.183968225 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1721]: 0.183984200 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1722]: 0.184054550 - core[0].svPrint(26), plen 70: [msg: I (492) example: Task[0x3ffba9dc]: allocated 42 bytes @ 0x3ffbb864 -, lvl: 0, unused: 0] -[0.184054550] LOG: I (492) example: Task[0x3ffba9dc]: allocated 42 bytes @ 0x3ffbb864 -EVENT[1723]: 0.184068150 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12299072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1724]: 0.184081375 - core[0].svTaskStartReady(6), plen 0: [tid: 12301764] -EVENT[1725]: 0.184097675 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1726]: 0.184108525 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[1727]: 0.184119300 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1728]: 0.184133175 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[1729]: 0.184144050 - core[1].svTaskStartExec(4), plen 0: [tid: 12301764] -EVENT[1730]: 0.184154875 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1731]: 0.184166750 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12299072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[1732]: 0.184178025 - core[0].svIdle(17), plen 0: [] -EVENT[1733]: 0.184189675 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1734]: 0.184209375 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1735]: 0.184272925 - core[1].svPrint(26), plen 63: [msg: I (492) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb864 -, lvl: 0, unused: 0] -[0.184272925] LOG: I (492) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb864 -EVENT[1736]: 0.184294125 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461348, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.184294125] HEAP: Freed bytes @ 0x3ffbb864 from task "free2" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +EVENT[1874]: 0.184003025 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073459240, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.184003025] HEAP: Freed bytes @ 0x3ffbb028 from task "free1" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1737]: 0.184321025 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1738]: 0.184332575 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1739]: 0.184349150 - core[1].svIdle(17), plen 0: [] -EVENT[1740]: 0.184666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1741]: 0.184679850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1742]: 0.184695550 - core[1].svIdle(17), plen 0: [] -EVENT[1743]: 0.184833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1744]: 0.184849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1745]: 0.184864250 - core[0].svIdle(17), plen 0: [] -EVENT[1746]: 0.185666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1747]: 0.185680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1748]: 0.185695350 - core[1].svIdle(17), plen 0: [] -EVENT[1749]: 0.185833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1750]: 0.185849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1751]: 0.185864250 - core[0].svIdle(17), plen 0: [] -EVENT[1752]: 0.186666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1753]: 0.186680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1754]: 0.186695125 - core[1].svIdle(17), plen 0: [] -EVENT[1755]: 0.186833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1756]: 0.186849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1757]: 0.186864250 - core[0].svIdle(17), plen 0: [] -EVENT[1758]: 0.187666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1759]: 0.187680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1760]: 0.187695225 - core[1].svIdle(17), plen 0: [] -EVENT[1761]: 0.187833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1762]: 0.187849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1763]: 0.187864425 - core[0].svIdle(17), plen 0: [] -EVENT[1764]: 0.188666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1765]: 0.188679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1766]: 0.188695100 - core[1].svIdle(17), plen 0: [] -EVENT[1767]: 0.188833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1768]: 0.188849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1769]: 0.188864250 - core[0].svIdle(17), plen 0: [] -EVENT[1770]: 0.189666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1771]: 0.189680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1772]: 0.189695350 - core[1].svIdle(17), plen 0: [] -EVENT[1773]: 0.189833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1774]: 0.189849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1775]: 0.189868575 - core[0].svIdle(17), plen 0: [] -EVENT[1776]: 0.190666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1777]: 0.190679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1778]: 0.190695100 - core[1].svIdle(17), plen 0: [] -EVENT[1779]: 0.190833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1780]: 0.190849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1781]: 0.190864250 - core[0].svIdle(17), plen 0: [] -EVENT[1782]: 0.191666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1783]: 0.191680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1784]: 0.191695350 - core[1].svIdle(17), plen 0: [] -EVENT[1785]: 0.191833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1786]: 0.191849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1787]: 0.191864250 - core[0].svIdle(17), plen 0: [] -EVENT[1788]: 0.192666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1789]: 0.192680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1790]: 0.192695125 - core[1].svIdle(17), plen 0: [] -EVENT[1791]: 0.192833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1792]: 0.192849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1793]: 0.192864250 - core[0].svIdle(17), plen 0: [] -EVENT[1794]: 0.193666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1795]: 0.193680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1796]: 0.193695225 - core[1].svIdle(17), plen 0: [] -EVENT[1797]: 0.193833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1798]: 0.193849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1799]: 0.193864425 - core[0].svIdle(17), plen 0: [] -EVENT[1800]: 0.194666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1801]: 0.194679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1802]: 0.194695100 - core[1].svIdle(17), plen 0: [] -EVENT[1803]: 0.194833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1804]: 0.194849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1805]: 0.194864250 - core[0].svIdle(17), plen 0: [] -EVENT[1806]: 0.195666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1807]: 0.195680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1808]: 0.195695350 - core[1].svIdle(17), plen 0: [] -EVENT[1809]: 0.195833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1810]: 0.195849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1811]: 0.195864250 - core[0].svIdle(17), plen 0: [] -EVENT[1812]: 0.196666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1813]: 0.196680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1814]: 0.196695125 - core[1].svIdle(17), plen 0: [] -EVENT[1815]: 0.196833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1816]: 0.196849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1817]: 0.196864250 - core[0].svIdle(17), plen 0: [] -EVENT[1818]: 0.197666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1819]: 0.197680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1820]: 0.197695225 - core[1].svIdle(17), plen 0: [] -EVENT[1821]: 0.197833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1822]: 0.197849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1823]: 0.197864425 - core[0].svIdle(17), plen 0: [] -EVENT[1824]: 0.198666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1825]: 0.198679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1826]: 0.198695100 - core[1].svIdle(17), plen 0: [] -EVENT[1827]: 0.198833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1828]: 0.198849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1829]: 0.198864250 - core[0].svIdle(17), plen 0: [] -EVENT[1830]: 0.199666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1831]: 0.199680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1832]: 0.199695350 - core[1].svIdle(17), plen 0: [] -EVENT[1833]: 0.199833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1834]: 0.199849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1835]: 0.199864250 - core[0].svIdle(17), plen 0: [] -EVENT[1836]: 0.200666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1837]: 0.200680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1838]: 0.200695125 - core[1].svIdle(17), plen 0: [] -EVENT[1839]: 0.200833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1840]: 0.200849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1841]: 0.200864250 - core[0].svIdle(17), plen 0: [] -EVENT[1842]: 0.201666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1843]: 0.201680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1844]: 0.201695225 - core[1].svIdle(17), plen 0: [] -EVENT[1845]: 0.201833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1846]: 0.201849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1847]: 0.201864425 - core[0].svIdle(17), plen 0: [] -EVENT[1848]: 0.202666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1849]: 0.202680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1850]: 0.202695350 - core[1].svIdle(17), plen 0: [] -EVENT[1851]: 0.202833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1852]: 0.202849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1853]: 0.202864250 - core[0].svIdle(17), plen 0: [] -EVENT[1854]: 0.203666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1855]: 0.203680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1856]: 0.203695125 - core[1].svIdle(17), plen 0: [] -EVENT[1857]: 0.203833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1858]: 0.203849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1859]: 0.203864250 - core[0].svIdle(17), plen 0: [] -EVENT[1860]: 0.204666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1861]: 0.204680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1862]: 0.204695225 - core[1].svIdle(17), plen 0: [] -EVENT[1863]: 0.204833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1864]: 0.204849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1865]: 0.204864425 - core[0].svIdle(17), plen 0: [] -EVENT[1866]: 0.205666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1867]: 0.205679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1868]: 0.205695100 - core[1].svIdle(17), plen 0: [] -EVENT[1869]: 0.205833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1870]: 0.205849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1871]: 0.205864250 - core[0].svIdle(17), plen 0: [] -EVENT[1872]: 0.206666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1873]: 0.206680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1874]: 0.206695350 - core[1].svIdle(17), plen 0: [] -EVENT[1875]: 0.206833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1876]: 0.206849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1877]: 0.206864250 - core[0].svIdle(17), plen 0: [] -EVENT[1878]: 0.207666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1879]: 0.207680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1880]: 0.207695125 - core[1].svIdle(17), plen 0: [] -EVENT[1881]: 0.207833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1882]: 0.207849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1883]: 0.207864250 - core[0].svIdle(17), plen 0: [] -EVENT[1884]: 0.208666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1885]: 0.208680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1886]: 0.208695225 - core[1].svIdle(17), plen 0: [] -EVENT[1887]: 0.208833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1888]: 0.208849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1889]: 0.208864425 - core[0].svIdle(17), plen 0: [] -EVENT[1890]: 0.209666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1891]: 0.209679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1892]: 0.209695100 - core[1].svIdle(17), plen 0: [] -EVENT[1893]: 0.209833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1894]: 0.209849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1895]: 0.209864250 - core[0].svIdle(17), plen 0: [] -EVENT[1896]: 0.210666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1897]: 0.210680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1898]: 0.210695350 - core[1].svIdle(17), plen 0: [] -EVENT[1899]: 0.210833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1900]: 0.210849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1901]: 0.210864250 - core[0].svIdle(17), plen 0: [] -EVENT[1902]: 0.211666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1903]: 0.211680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1904]: 0.211695125 - core[1].svIdle(17), plen 0: [] -EVENT[1905]: 0.211833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1906]: 0.211848800 - core[0].svTaskStartReady(6), plen 0: [tid: 12286700] -EVENT[1907]: 0.211861575 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1908]: 0.211877250 - core[0].svTaskStartExec(4), plen 0: [tid: 12286700] -EVENT[1909]: 0.211912650 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461348, size: 8, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.211912650] HEAP: Allocated 8 bytes @ 0x3ffbb864 from task "alloc0" on core 0 by: +EVENT[1875]: 0.184015600 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1876]: 0.184034475 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1877]: 0.184045700 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1878]: 0.184056475 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1879]: 0.184074625 - core[1].svIdle(17), plen 0: [] +EVENT[1880]: 0.184102425 - core[0].svPrint(26), plen 70: [msg: I (479) example: Task[0x3ffba1a4]: allocated 42 bytes @ 0x3ffbb064 +, lvl: 0, unused: 0] +[0.184102425] LOG: I (479) example: Task[0x3ffba1a4]: allocated 42 bytes @ 0x3ffbb064 +EVENT[1881]: 0.184120150 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12296968, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1882]: 0.184133400 - core[0].svTaskStartReady(6), plen 0: [tid: 12299660] +EVENT[1883]: 0.184133400 - core[1].svTaskStartReady(6), plen 0: [tid: 12299660] +EVENT[1884]: 0.184149750 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1885]: 0.184160600 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[1886]: 0.184171425 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1887]: 0.184185225 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[1888]: 0.184195975 - core[1].svTaskStartExec(4), plen 0: [tid: 12299660] +EVENT[1889]: 0.184206750 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1890]: 0.184218850 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12296968, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[1891]: 0.184230050 - core[0].svIdle(17), plen 0: [] +EVENT[1892]: 0.184242400 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[1893]: 0.184258625 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[1894]: 0.184306500 - core[1].svPrint(26), plen 63: [msg: I (479) example: Task[0x3ffbad8c]: free memory @ 0x3ffbb064 +, lvl: 0, unused: 0] +[0.184306500] LOG: I (479) example: Task[0x3ffbad8c]: free memory @ 0x3ffbb064 +EVENT[1895]: 0.184327925 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073459300, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.184327925] HEAP: Freed bytes @ 0x3ffbb064 from task "free2" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[1896]: 0.184359250 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[1897]: 0.184370825 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1898]: 0.184387525 - core[1].svIdle(17), plen 0: [] +EVENT[1899]: 0.184448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1900]: 0.184461625 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1901]: 0.184477200 - core[1].svIdle(17), plen 0: [] +EVENT[1902]: 0.184546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1903]: 0.184562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1904]: 0.184577275 - core[0].svIdle(17), plen 0: [] +EVENT[1905]: 0.185448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1906]: 0.185461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1907]: 0.185476850 - core[1].svIdle(17), plen 0: [] +EVENT[1908]: 0.185546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1909]: 0.185562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1910]: 0.185577075 - core[0].svIdle(17), plen 0: [] +EVENT[1911]: 0.186448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1912]: 0.186461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1913]: 0.186476975 - core[1].svIdle(17), plen 0: [] +EVENT[1914]: 0.186546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1915]: 0.186562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1916]: 0.186577225 - core[0].svIdle(17), plen 0: [] +EVENT[1917]: 0.187448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1918]: 0.187461775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1919]: 0.187476900 - core[1].svIdle(17), plen 0: [] +EVENT[1920]: 0.187546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1921]: 0.187562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1922]: 0.187577075 - core[0].svIdle(17), plen 0: [] +EVENT[1923]: 0.188448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1924]: 0.188461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1925]: 0.188476850 - core[1].svIdle(17), plen 0: [] +EVENT[1926]: 0.188546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1927]: 0.188562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1928]: 0.188577275 - core[0].svIdle(17), plen 0: [] +EVENT[1929]: 0.189448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1930]: 0.189461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1931]: 0.189476850 - core[1].svIdle(17), plen 0: [] +EVENT[1932]: 0.189546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1933]: 0.189562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1934]: 0.189577075 - core[0].svIdle(17), plen 0: [] +EVENT[1935]: 0.190448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1936]: 0.190461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1937]: 0.190476975 - core[1].svIdle(17), plen 0: [] +EVENT[1938]: 0.190546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1939]: 0.190562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1940]: 0.190577225 - core[0].svIdle(17), plen 0: [] +EVENT[1941]: 0.191448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1942]: 0.191461775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1943]: 0.191476900 - core[1].svIdle(17), plen 0: [] +EVENT[1944]: 0.191546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1945]: 0.191562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1946]: 0.191577075 - core[0].svIdle(17), plen 0: [] +EVENT[1947]: 0.192448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1948]: 0.192461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1949]: 0.192476850 - core[1].svIdle(17), plen 0: [] +EVENT[1950]: 0.192546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1951]: 0.192562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1952]: 0.192577275 - core[0].svIdle(17), plen 0: [] +EVENT[1953]: 0.193448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1954]: 0.193461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1955]: 0.193476850 - core[1].svIdle(17), plen 0: [] +EVENT[1956]: 0.193546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1957]: 0.193562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1958]: 0.193577075 - core[0].svIdle(17), plen 0: [] +EVENT[1959]: 0.194448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1960]: 0.194465950 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1961]: 0.194481100 - core[1].svIdle(17), plen 0: [] +EVENT[1962]: 0.194546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1963]: 0.194562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1964]: 0.194577075 - core[0].svIdle(17), plen 0: [] +EVENT[1965]: 0.195448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1966]: 0.195461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1967]: 0.195476850 - core[1].svIdle(17), plen 0: [] +EVENT[1968]: 0.195546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1969]: 0.195562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1970]: 0.195577275 - core[0].svIdle(17), plen 0: [] +EVENT[1971]: 0.196448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1972]: 0.196461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1973]: 0.196476850 - core[1].svIdle(17), plen 0: [] +EVENT[1974]: 0.196546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1975]: 0.196562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1976]: 0.196577075 - core[0].svIdle(17), plen 0: [] +EVENT[1977]: 0.197448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1978]: 0.197461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1979]: 0.197476975 - core[1].svIdle(17), plen 0: [] +EVENT[1980]: 0.197546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1981]: 0.197562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1982]: 0.197577225 - core[0].svIdle(17), plen 0: [] +EVENT[1983]: 0.198448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1984]: 0.198461775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1985]: 0.198476900 - core[1].svIdle(17), plen 0: [] +EVENT[1986]: 0.198546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1987]: 0.198562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1988]: 0.198577075 - core[0].svIdle(17), plen 0: [] +EVENT[1989]: 0.199448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1990]: 0.199461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1991]: 0.199476850 - core[1].svIdle(17), plen 0: [] +EVENT[1992]: 0.199546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1993]: 0.199562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[1994]: 0.199577275 - core[0].svIdle(17), plen 0: [] +EVENT[1995]: 0.200448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1996]: 0.200461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[1997]: 0.200476850 - core[1].svIdle(17), plen 0: [] +EVENT[1998]: 0.200546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[1999]: 0.200562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2000]: 0.200577075 - core[0].svIdle(17), plen 0: [] +EVENT[2001]: 0.201448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2002]: 0.201461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2003]: 0.201476975 - core[1].svIdle(17), plen 0: [] +EVENT[2004]: 0.201546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2005]: 0.201562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2006]: 0.201577225 - core[0].svIdle(17), plen 0: [] +EVENT[2007]: 0.202448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2008]: 0.202461775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2009]: 0.202476900 - core[1].svIdle(17), plen 0: [] +EVENT[2010]: 0.202546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2011]: 0.202562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2012]: 0.202577075 - core[0].svIdle(17), plen 0: [] +EVENT[2013]: 0.203448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2014]: 0.203461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2015]: 0.203476850 - core[1].svIdle(17), plen 0: [] +EVENT[2016]: 0.203546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2017]: 0.203562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2018]: 0.203577275 - core[0].svIdle(17), plen 0: [] +EVENT[2019]: 0.204448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2020]: 0.204461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2021]: 0.204476850 - core[1].svIdle(17), plen 0: [] +EVENT[2022]: 0.204546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2023]: 0.204562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2024]: 0.204577075 - core[0].svIdle(17), plen 0: [] +EVENT[2025]: 0.205448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2026]: 0.205461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2027]: 0.205476975 - core[1].svIdle(17), plen 0: [] +EVENT[2028]: 0.205546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2029]: 0.205562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2030]: 0.205577225 - core[0].svIdle(17), plen 0: [] +EVENT[2031]: 0.206448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2032]: 0.206466000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2033]: 0.206481125 - core[1].svIdle(17), plen 0: [] +EVENT[2034]: 0.206546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2035]: 0.206562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2036]: 0.206577075 - core[0].svIdle(17), plen 0: [] +EVENT[2037]: 0.207448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2038]: 0.207461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2039]: 0.207476850 - core[1].svIdle(17), plen 0: [] +EVENT[2040]: 0.207546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2041]: 0.207562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2042]: 0.207577275 - core[0].svIdle(17), plen 0: [] +EVENT[2043]: 0.208448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2044]: 0.208461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2045]: 0.208476850 - core[1].svIdle(17), plen 0: [] +EVENT[2046]: 0.208546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2047]: 0.208562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2048]: 0.208577075 - core[0].svIdle(17), plen 0: [] +EVENT[2049]: 0.209448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2050]: 0.209461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2051]: 0.209476975 - core[1].svIdle(17), plen 0: [] +EVENT[2052]: 0.209546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2053]: 0.209562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2054]: 0.209577225 - core[0].svIdle(17), plen 0: [] +EVENT[2055]: 0.210448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2056]: 0.210461775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2057]: 0.210476900 - core[1].svIdle(17), plen 0: [] +EVENT[2058]: 0.210546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2059]: 0.210562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2060]: 0.210577075 - core[0].svIdle(17), plen 0: [] +EVENT[2061]: 0.211448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2062]: 0.211461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2063]: 0.211476850 - core[1].svIdle(17), plen 0: [] +EVENT[2064]: 0.211546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2065]: 0.211562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2066]: 0.211577275 - core[0].svIdle(17), plen 0: [] +EVENT[2067]: 0.212448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2068]: 0.212461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2069]: 0.212476850 - core[1].svIdle(17), plen 0: [] +EVENT[2070]: 0.212546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2071]: 0.212561625 - core[0].svTaskStartReady(6), plen 0: [tid: 12284596] +EVENT[2072]: 0.212561625 - core[1].svTaskStartReady(6), plen 0: [tid: 12284596] +EVENT[2073]: 0.212574275 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2074]: 0.212590075 - core[0].svTaskStartExec(4), plen 0: [tid: 12284596] +EVENT[2075]: 0.212626150 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459240, size: 8, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.212626150] HEAP: Allocated 8 bytes @ 0x3ffbb028 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1910]: 0.211951250 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461364, size: 16, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.211951250] HEAP: Allocated 16 bytes @ 0x3ffbb874 from task "alloc0" on core 0 by: +EVENT[2076]: 0.212661725 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459300, size: 16, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.212661725] HEAP: Allocated 16 bytes @ 0x3ffbb064 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1911]: 0.211968150 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1912]: 0.211984150 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1913]: 0.212054475 - core[0].svPrint(26), plen 70: [msg: I (520) example: Task[0x3ffb7aec]: allocated 16 bytes @ 0x3ffbb874 +EVENT[2077]: 0.212678700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2078]: 0.212694675 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2079]: 0.212753700 - core[0].svPrint(26), plen 70: [msg: I (508) example: Task[0x3ffb72b4]: allocated 16 bytes @ 0x3ffbb064 , lvl: 0, unused: 0] -[0.212054475] LOG: I (520) example: Task[0x3ffb7aec]: allocated 16 bytes @ 0x3ffbb874 -EVENT[1914]: 0.212068075 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12287056, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1915]: 0.212081300 - core[0].svTaskStartReady(6), plen 0: [tid: 12289748] -EVENT[1916]: 0.212097675 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1917]: 0.212108525 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[1918]: 0.212119300 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1919]: 0.212133125 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[1920]: 0.212144025 - core[1].svTaskStartExec(4), plen 0: [tid: 12289748] -EVENT[1921]: 0.212154850 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1922]: 0.212166800 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12287056, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[1923]: 0.212177050 - core[0].svIdle(17), plen 0: [] -EVENT[1924]: 0.212188475 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1925]: 0.212208850 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1926]: 0.212272400 - core[1].svPrint(26), plen 63: [msg: I (520) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb874 +[0.212753700] LOG: I (508) example: Task[0x3ffb72b4]: allocated 16 bytes @ 0x3ffbb064 +EVENT[2080]: 0.212767175 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12284952, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2081]: 0.212780350 - core[0].svTaskStartReady(6), plen 0: [tid: 12287644] +EVENT[2082]: 0.212780350 - core[1].svTaskStartReady(6), plen 0: [tid: 12287644] +EVENT[2083]: 0.212796550 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[2084]: 0.212807500 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[2085]: 0.212818275 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2086]: 0.212832325 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[2087]: 0.212844475 - core[1].svTaskStartExec(4), plen 0: [tid: 12287644] +EVENT[2088]: 0.212855425 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2089]: 0.212867375 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12284952, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[2090]: 0.212877575 - core[0].svIdle(17), plen 0: [] +EVENT[2091]: 0.212889300 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2092]: 0.212905650 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2093]: 0.212953525 - core[1].svPrint(26), plen 63: [msg: I (508) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbb064 , lvl: 0, unused: 0] -[0.212272400] LOG: I (520) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb874 -EVENT[1927]: 0.212293600 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461364, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.212293600] HEAP: Freed bytes @ 0x3ffbb874 from task "free0" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +[0.212953525] LOG: I (508) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbb064 +EVENT[2094]: 0.212974725 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073459300, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.212974725] HEAP: Freed bytes @ 0x3ffbb064 from task "free0" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1928]: 0.212320475 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1929]: 0.212331900 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1930]: 0.212348475 - core[1].svIdle(17), plen 0: [] -EVENT[1931]: 0.212666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1932]: 0.212679850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1933]: 0.212695550 - core[1].svIdle(17), plen 0: [] -EVENT[1934]: 0.212833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1935]: 0.212848800 - core[0].svTaskStartReady(6), plen 0: [tid: 12292716] -EVENT[1936]: 0.212861575 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1937]: 0.212877375 - core[0].svTaskStartExec(4), plen 0: [tid: 12292716] -EVENT[1938]: 0.212912775 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461364, size: 16, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.212912775] HEAP: Allocated 16 bytes @ 0x3ffbb874 from task "alloc1" on core 0 by: +EVENT[2095]: 0.213006200 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[2096]: 0.213017650 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2097]: 0.213034350 - core[1].svIdle(17), plen 0: [] +EVENT[2098]: 0.213448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2099]: 0.213461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2100]: 0.213477300 - core[1].svIdle(17), plen 0: [] +EVENT[2101]: 0.213546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2102]: 0.213561625 - core[0].svTaskStartReady(6), plen 0: [tid: 12290612] +EVENT[2103]: 0.213561625 - core[1].svTaskStartReady(6), plen 0: [tid: 12290612] +EVENT[2104]: 0.213573500 - core[0].svTaskStartReady(6), plen 0: [tid: 12296612] +EVENT[2105]: 0.213573500 - core[1].svTaskStartReady(6), plen 0: [tid: 12296612] +EVENT[2106]: 0.213585975 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2107]: 0.213601625 - core[0].svTaskStartExec(4), plen 0: [tid: 12290612] +EVENT[2108]: 0.213638000 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459300, size: 16, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.213638000] HEAP: Allocated 16 bytes @ 0x3ffbb064 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1939]: 0.212947475 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461384, size: 32, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.212947475] HEAP: Allocated 32 bytes @ 0x3ffbb888 from task "alloc1" on core 0 by: +EVENT[2109]: 0.213673625 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459320, size: 32, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.213673625] HEAP: Allocated 32 bytes @ 0x3ffbb078 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1940]: 0.212964400 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1941]: 0.212984575 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1942]: 0.213055025 - core[0].svPrint(26), plen 70: [msg: I (521) example: Task[0x3ffb926c]: allocated 32 bytes @ 0x3ffbb888 +EVENT[2110]: 0.213690700 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2111]: 0.213706725 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2112]: 0.213761525 - core[0].svPrint(26), plen 70: [msg: I (509) example: Task[0x3ffb8a34]: allocated 32 bytes @ 0x3ffbb078 , lvl: 0, unused: 0] -[0.213055025] LOG: I (521) example: Task[0x3ffb926c]: allocated 32 bytes @ 0x3ffbb888 -EVENT[1943]: 0.213068650 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12293072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1944]: 0.213081850 - core[0].svTaskStartReady(6), plen 0: [tid: 12295764] -EVENT[1945]: 0.213098150 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1946]: 0.213109000 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[1947]: 0.213119750 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1948]: 0.213133475 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[1949]: 0.213144325 - core[1].svTaskStartExec(4), plen 0: [tid: 12295764] -EVENT[1950]: 0.213155150 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1951]: 0.213167025 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12293072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[1952]: 0.213177275 - core[0].svIdle(17), plen 0: [] -EVENT[1953]: 0.213188750 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1954]: 0.213205050 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1955]: 0.213268500 - core[1].svPrint(26), plen 63: [msg: I (521) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb888 -, lvl: 0, unused: 0] -[0.213268500] LOG: I (521) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb888 -EVENT[1956]: 0.213293550 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461384, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.213293550] HEAP: Freed bytes @ 0x3ffbb888 from task "free1" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 -/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 -/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 - -EVENT[1957]: 0.213320550 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1958]: 0.213331975 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1959]: 0.213348550 - core[1].svIdle(17), plen 0: [] -EVENT[1960]: 0.213666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1961]: 0.213679850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1962]: 0.213695550 - core[1].svIdle(17), plen 0: [] -EVENT[1963]: 0.213833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1964]: 0.213848800 - core[0].svTaskStartReady(6), plen 0: [tid: 12298716] -EVENT[1965]: 0.213861575 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1966]: 0.213877250 - core[0].svTaskStartExec(4), plen 0: [tid: 12298716] -EVENT[1967]: 0.213912650 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461384, size: 24, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.213912650] HEAP: Allocated 24 bytes @ 0x3ffbb888 from task "alloc2" on core 0 by: +[0.213761525] LOG: I (509) example: Task[0x3ffb8a34]: allocated 32 bytes @ 0x3ffbb078 +EVENT[2113]: 0.213778300 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12290968, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2114]: 0.213791550 - core[0].svTaskStartReady(6), plen 0: [tid: 12293660] +EVENT[2115]: 0.213791550 - core[1].svTaskStartReady(6), plen 0: [tid: 12293660] +EVENT[2116]: 0.213807900 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[2117]: 0.213818750 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[2118]: 0.213829575 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2119]: 0.213843375 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[2120]: 0.213855300 - core[1].svTaskStartExec(4), plen 0: [tid: 12293660] +EVENT[2121]: 0.213866475 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2122]: 0.213878400 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12290968, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[2123]: 0.213890050 - core[0].svTaskStartExec(4), plen 0: [tid: 12296612] +EVENT[2124]: 0.213901775 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2125]: 0.213920350 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2126]: 0.213933475 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459356, size: 24, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.213933475] HEAP: Allocated 24 bytes @ 0x3ffbb09c from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1968]: 0.213947200 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461412, size: 48, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.213947200] HEAP: Allocated 48 bytes @ 0x3ffbb8a4 from task "alloc2" on core 0 by: +EVENT[2127]: 0.213974050 - core[1].svPrint(26), plen 63: [msg: I (509) example: Task[0x3ffb961c]: free memory @ 0x3ffbb078 +, lvl: 0, unused: 0] +[0.213974050] LOG: I (509) example: Task[0x3ffb961c]: free memory @ 0x3ffbb078 +EVENT[2128]: 0.213990025 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459384, size: 48, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.213990025] HEAP: Allocated 48 bytes @ 0x3ffbb0b8 from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1969]: 0.213964350 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1970]: 0.213980350 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1971]: 0.214050675 - core[0].svPrint(26), plen 70: [msg: I (522) example: Task[0x3ffba9dc]: allocated 48 bytes @ 0x3ffbb8a4 -, lvl: 0, unused: 0] -[0.214050675] LOG: I (522) example: Task[0x3ffba9dc]: allocated 48 bytes @ 0x3ffbb8a4 -EVENT[1972]: 0.214071175 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12299072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1973]: 0.214084400 - core[0].svTaskStartReady(6), plen 0: [tid: 12301764] -EVENT[1974]: 0.214100725 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1975]: 0.214111575 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[1976]: 0.214122325 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1977]: 0.214136050 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[1978]: 0.214146950 - core[1].svTaskStartExec(4), plen 0: [tid: 12301764] -EVENT[1979]: 0.214157775 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1980]: 0.214169625 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12299072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[1981]: 0.214180925 - core[0].svIdle(17), plen 0: [] -EVENT[1982]: 0.214192550 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[1983]: 0.214208950 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[1984]: 0.214272500 - core[1].svPrint(26), plen 63: [msg: I (522) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb8a4 -, lvl: 0, unused: 0] -[0.214272500] LOG: I (522) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb8a4 -EVENT[1985]: 0.214293700 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461412, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.214293700] HEAP: Freed bytes @ 0x3ffbb8a4 from task "free2" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +EVENT[2129]: 0.214004375 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073459320, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.214004375] HEAP: Freed bytes @ 0x3ffbb078 from task "free1" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[1986]: 0.214324025 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[1987]: 0.214335500 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1988]: 0.214352200 - core[1].svIdle(17), plen 0: [] -EVENT[1989]: 0.214666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1990]: 0.214679875 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1991]: 0.214695450 - core[1].svIdle(17), plen 0: [] -EVENT[1992]: 0.214833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1993]: 0.214849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[1994]: 0.214864425 - core[0].svIdle(17), plen 0: [] -EVENT[1995]: 0.215666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1996]: 0.215679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[1997]: 0.215695100 - core[1].svIdle(17), plen 0: [] -EVENT[1998]: 0.215833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[1999]: 0.215849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2000]: 0.215864250 - core[0].svIdle(17), plen 0: [] -EVENT[2001]: 0.216666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2002]: 0.216680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2003]: 0.216695350 - core[1].svIdle(17), plen 0: [] -EVENT[2004]: 0.216833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2005]: 0.216849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2006]: 0.216864250 - core[0].svIdle(17), plen 0: [] -EVENT[2007]: 0.217666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2008]: 0.217680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2009]: 0.217695125 - core[1].svIdle(17), plen 0: [] -EVENT[2010]: 0.217833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2011]: 0.217849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2012]: 0.217864250 - core[0].svIdle(17), plen 0: [] -EVENT[2013]: 0.218666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2014]: 0.218680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2015]: 0.218695225 - core[1].svIdle(17), plen 0: [] -EVENT[2016]: 0.218833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2017]: 0.218849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2018]: 0.218864425 - core[0].svIdle(17), plen 0: [] -EVENT[2019]: 0.219666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2020]: 0.219679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2021]: 0.219695100 - core[1].svIdle(17), plen 0: [] -EVENT[2022]: 0.219833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2023]: 0.219849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2024]: 0.219864250 - core[0].svIdle(17), plen 0: [] -EVENT[2025]: 0.220666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2026]: 0.220680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2027]: 0.220695350 - core[1].svIdle(17), plen 0: [] -EVENT[2028]: 0.220833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2029]: 0.220849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2030]: 0.220864250 - core[0].svIdle(17), plen 0: [] -EVENT[2031]: 0.221666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2032]: 0.221680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2033]: 0.221695125 - core[1].svIdle(17), plen 0: [] -EVENT[2034]: 0.221833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2035]: 0.221849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2036]: 0.221864250 - core[0].svIdle(17), plen 0: [] -EVENT[2037]: 0.222666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2038]: 0.222680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2039]: 0.222695225 - core[1].svIdle(17), plen 0: [] -EVENT[2040]: 0.222833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2041]: 0.222849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2042]: 0.222864425 - core[0].svIdle(17), plen 0: [] -EVENT[2043]: 0.223666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2044]: 0.223679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2045]: 0.223695100 - core[1].svIdle(17), plen 0: [] -EVENT[2046]: 0.223833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2047]: 0.223849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2048]: 0.223864250 - core[0].svIdle(17), plen 0: [] -EVENT[2049]: 0.224666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2050]: 0.224684200 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2051]: 0.224699350 - core[1].svIdle(17), plen 0: [] -EVENT[2052]: 0.224833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2053]: 0.224849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2054]: 0.224864250 - core[0].svIdle(17), plen 0: [] -EVENT[2055]: 0.225666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2056]: 0.225680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2057]: 0.225695225 - core[1].svIdle(17), plen 0: [] -EVENT[2058]: 0.225833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2059]: 0.225849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2060]: 0.225864425 - core[0].svIdle(17), plen 0: [] -EVENT[2061]: 0.226666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2062]: 0.226679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2063]: 0.226695100 - core[1].svIdle(17), plen 0: [] -EVENT[2064]: 0.226833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2065]: 0.226849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2066]: 0.226864250 - core[0].svIdle(17), plen 0: [] -EVENT[2067]: 0.227666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2068]: 0.227680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2069]: 0.227695350 - core[1].svIdle(17), plen 0: [] -EVENT[2070]: 0.227833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2071]: 0.227849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2072]: 0.227864250 - core[0].svIdle(17), plen 0: [] -EVENT[2073]: 0.228666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2074]: 0.228680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2075]: 0.228695125 - core[1].svIdle(17), plen 0: [] -EVENT[2076]: 0.228833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2077]: 0.228849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2078]: 0.228864250 - core[0].svIdle(17), plen 0: [] -EVENT[2079]: 0.229666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2080]: 0.229680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2081]: 0.229695225 - core[1].svIdle(17), plen 0: [] -EVENT[2082]: 0.229833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2083]: 0.229849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2084]: 0.229864425 - core[0].svIdle(17), plen 0: [] -EVENT[2085]: 0.230666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2086]: 0.230679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2087]: 0.230695100 - core[1].svIdle(17), plen 0: [] -EVENT[2088]: 0.230833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2089]: 0.230849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2090]: 0.230864250 - core[0].svIdle(17), plen 0: [] -EVENT[2091]: 0.231666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2092]: 0.231680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2093]: 0.231695350 - core[1].svIdle(17), plen 0: [] -EVENT[2094]: 0.231833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2095]: 0.231849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2096]: 0.231864250 - core[0].svIdle(17), plen 0: [] -EVENT[2097]: 0.232666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2098]: 0.232680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2099]: 0.232695125 - core[1].svIdle(17), plen 0: [] -EVENT[2100]: 0.232833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2101]: 0.232849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2102]: 0.232864250 - core[0].svIdle(17), plen 0: [] -EVENT[2103]: 0.233666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2104]: 0.233680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2105]: 0.233695225 - core[1].svIdle(17), plen 0: [] -EVENT[2106]: 0.233833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2107]: 0.233849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2108]: 0.233864425 - core[0].svIdle(17), plen 0: [] -EVENT[2109]: 0.234666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2110]: 0.234679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2111]: 0.234695100 - core[1].svIdle(17), plen 0: [] -EVENT[2112]: 0.234833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2113]: 0.234849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2114]: 0.234864250 - core[0].svIdle(17), plen 0: [] -EVENT[2115]: 0.235666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2116]: 0.235680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2117]: 0.235695350 - core[1].svIdle(17), plen 0: [] -EVENT[2118]: 0.235833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2119]: 0.235849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2120]: 0.235864250 - core[0].svIdle(17), plen 0: [] -EVENT[2121]: 0.236666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2122]: 0.236683550 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2123]: 0.236698675 - core[1].svIdle(17), plen 0: [] -EVENT[2124]: 0.236833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2125]: 0.236849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2126]: 0.236864250 - core[0].svIdle(17), plen 0: [] -EVENT[2127]: 0.237666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2128]: 0.237680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2129]: 0.237695225 - core[1].svIdle(17), plen 0: [] -EVENT[2130]: 0.237833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2131]: 0.237849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2132]: 0.237864425 - core[0].svIdle(17), plen 0: [] -EVENT[2133]: 0.238666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2134]: 0.238679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2135]: 0.238695100 - core[1].svIdle(17), plen 0: [] -EVENT[2136]: 0.238833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2137]: 0.238849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2138]: 0.238864250 - core[0].svIdle(17), plen 0: [] -EVENT[2139]: 0.239666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2140]: 0.239680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2141]: 0.239695350 - core[1].svIdle(17), plen 0: [] -EVENT[2142]: 0.239833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2143]: 0.239849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2144]: 0.239864250 - core[0].svIdle(17), plen 0: [] -EVENT[2145]: 0.240666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2146]: 0.240680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2147]: 0.240695125 - core[1].svIdle(17), plen 0: [] -EVENT[2148]: 0.240833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2149]: 0.240849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2150]: 0.240864250 - core[0].svIdle(17), plen 0: [] -EVENT[2151]: 0.241666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2152]: 0.241680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2153]: 0.241695225 - core[1].svIdle(17), plen 0: [] -EVENT[2154]: 0.241833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2155]: 0.241848825 - core[0].svTaskStartReady(6), plen 0: [tid: 12286700] -EVENT[2156]: 0.241861575 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2157]: 0.241877250 - core[0].svTaskStartExec(4), plen 0: [tid: 12286700] -EVENT[2158]: 0.241912575 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461412, size: 9, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.241912575] HEAP: Allocated 9 bytes @ 0x3ffbb8a4 from task "alloc0" on core 0 by: +EVENT[2130]: 0.214016825 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2131]: 0.214035975 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[2132]: 0.214047225 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2133]: 0.214058075 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2134]: 0.214076350 - core[1].svIdle(17), plen 0: [] +EVENT[2135]: 0.214104200 - core[0].svPrint(26), plen 70: [msg: I (509) example: Task[0x3ffba1a4]: allocated 48 bytes @ 0x3ffbb0b8 +, lvl: 0, unused: 0] +[0.214104200] LOG: I (509) example: Task[0x3ffba1a4]: allocated 48 bytes @ 0x3ffbb0b8 +EVENT[2136]: 0.214117650 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12296968, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2137]: 0.215663675 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2138]: 0.215675325 - core[0].svTaskStartReady(6), plen 0: [tid: 12299660] +EVENT[2139]: 0.215675325 - core[1].svTaskStartReady(6), plen 0: [tid: 12299660] +EVENT[2140]: 0.215693125 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2141]: 0.215704250 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2142]: 0.215715175 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2143]: 0.215726825 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2144]: 0.215737325 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2145]: 0.215748175 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2146]: 0.215759125 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[2147]: 0.215770850 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2148]: 0.215781625 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2149]: 0.215793125 - core[0].svTaskStartExec(4), plen 0: [tid: 12296612] +EVENT[2150]: 0.215810975 - core[1].svTaskStartExec(4), plen 0: [tid: 12299660] +EVENT[2151]: 0.215824800 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[2152]: 0.215837075 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12296968, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[2153]: 0.215848525 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[2154]: 0.215860600 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2155]: 0.215871650 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2156]: 0.215883675 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2157]: 0.215894125 - core[0].svIdle(17), plen 0: [] +EVENT[2158]: 0.215944175 - core[1].svPrint(26), plen 63: [msg: I (511) example: Task[0x3ffbad8c]: free memory @ 0x3ffbb0b8 +, lvl: 0, unused: 0] +[0.215944175] LOG: I (511) example: Task[0x3ffbad8c]: free memory @ 0x3ffbb0b8 +EVENT[2159]: 0.215965550 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073459384, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.215965550] HEAP: Freed bytes @ 0x3ffbb0b8 from task "free2" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 +/Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 +/Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 + +EVENT[2160]: 0.215992975 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[2161]: 0.216004375 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2162]: 0.216020950 - core[1].svIdle(17), plen 0: [] +EVENT[2163]: 0.216448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2164]: 0.216461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2165]: 0.216477300 - core[1].svIdle(17), plen 0: [] +EVENT[2166]: 0.216546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2167]: 0.216562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2168]: 0.216577275 - core[0].svIdle(17), plen 0: [] +EVENT[2169]: 0.217448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2170]: 0.217461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2171]: 0.217476975 - core[1].svIdle(17), plen 0: [] +EVENT[2172]: 0.217546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2173]: 0.217562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2174]: 0.217577225 - core[0].svIdle(17), plen 0: [] +EVENT[2175]: 0.218448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2176]: 0.218461775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2177]: 0.218476900 - core[1].svIdle(17), plen 0: [] +EVENT[2178]: 0.218546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2179]: 0.218562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2180]: 0.218577075 - core[0].svIdle(17), plen 0: [] +EVENT[2181]: 0.219448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2182]: 0.219461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2183]: 0.219476850 - core[1].svIdle(17), plen 0: [] +EVENT[2184]: 0.219546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2185]: 0.219562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2186]: 0.219577275 - core[0].svIdle(17), plen 0: [] +EVENT[2187]: 0.220448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2188]: 0.220461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2189]: 0.220476850 - core[1].svIdle(17), plen 0: [] +EVENT[2190]: 0.220546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2191]: 0.220562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2192]: 0.220577075 - core[0].svIdle(17), plen 0: [] +EVENT[2193]: 0.221448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2194]: 0.221461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2195]: 0.221476975 - core[1].svIdle(17), plen 0: [] +EVENT[2196]: 0.221546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2197]: 0.221562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2198]: 0.221577225 - core[0].svIdle(17), plen 0: [] +EVENT[2199]: 0.222448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2200]: 0.222461775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2201]: 0.222476900 - core[1].svIdle(17), plen 0: [] +EVENT[2202]: 0.222546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2203]: 0.222562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2204]: 0.222577075 - core[0].svIdle(17), plen 0: [] +EVENT[2205]: 0.223448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2206]: 0.223461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2207]: 0.223476850 - core[1].svIdle(17), plen 0: [] +EVENT[2208]: 0.223546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2209]: 0.223562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2210]: 0.223577275 - core[0].svIdle(17), plen 0: [] +EVENT[2211]: 0.224448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2212]: 0.224461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2213]: 0.224476850 - core[1].svIdle(17), plen 0: [] +EVENT[2214]: 0.224546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2215]: 0.224562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2216]: 0.224577075 - core[0].svIdle(17), plen 0: [] +EVENT[2217]: 0.225448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2218]: 0.225461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2219]: 0.225476975 - core[1].svIdle(17), plen 0: [] +EVENT[2220]: 0.225546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2221]: 0.225562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2222]: 0.225577225 - core[0].svIdle(17), plen 0: [] +EVENT[2223]: 0.226448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2224]: 0.226461775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2225]: 0.226476900 - core[1].svIdle(17), plen 0: [] +EVENT[2226]: 0.226546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2227]: 0.226562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2228]: 0.226577075 - core[0].svIdle(17), plen 0: [] +EVENT[2229]: 0.227448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2230]: 0.227461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2231]: 0.227476850 - core[1].svIdle(17), plen 0: [] +EVENT[2232]: 0.227546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2233]: 0.227562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2234]: 0.227577275 - core[0].svIdle(17), plen 0: [] +EVENT[2235]: 0.228448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2236]: 0.228461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2237]: 0.228476850 - core[1].svIdle(17), plen 0: [] +EVENT[2238]: 0.228546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2239]: 0.228562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2240]: 0.228577075 - core[0].svIdle(17), plen 0: [] +EVENT[2241]: 0.229448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2242]: 0.229466000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2243]: 0.229481125 - core[1].svIdle(17), plen 0: [] +EVENT[2244]: 0.229546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2245]: 0.229562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2246]: 0.229577075 - core[0].svIdle(17), plen 0: [] +EVENT[2247]: 0.230448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2248]: 0.230461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2249]: 0.230476850 - core[1].svIdle(17), plen 0: [] +EVENT[2250]: 0.230546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2251]: 0.230562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2252]: 0.230577275 - core[0].svIdle(17), plen 0: [] +EVENT[2253]: 0.231448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2254]: 0.231461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2255]: 0.231476850 - core[1].svIdle(17), plen 0: [] +EVENT[2256]: 0.231546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2257]: 0.231562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2258]: 0.231577075 - core[0].svIdle(17), plen 0: [] +EVENT[2259]: 0.232448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2260]: 0.232461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2261]: 0.232476975 - core[1].svIdle(17), plen 0: [] +EVENT[2262]: 0.232546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2263]: 0.232562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2264]: 0.232577225 - core[0].svIdle(17), plen 0: [] +EVENT[2265]: 0.233448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2266]: 0.233461775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2267]: 0.233476900 - core[1].svIdle(17), plen 0: [] +EVENT[2268]: 0.233546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2269]: 0.233562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2270]: 0.233577075 - core[0].svIdle(17), plen 0: [] +EVENT[2271]: 0.234448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2272]: 0.234461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2273]: 0.234476850 - core[1].svIdle(17), plen 0: [] +EVENT[2274]: 0.234546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2275]: 0.234562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2276]: 0.234577275 - core[0].svIdle(17), plen 0: [] +EVENT[2277]: 0.235448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2278]: 0.235461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2279]: 0.235476850 - core[1].svIdle(17), plen 0: [] +EVENT[2280]: 0.235546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2281]: 0.235562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2282]: 0.235577075 - core[0].svIdle(17), plen 0: [] +EVENT[2283]: 0.236448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2284]: 0.236461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2285]: 0.236476975 - core[1].svIdle(17), plen 0: [] +EVENT[2286]: 0.236546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2287]: 0.236562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2288]: 0.236577225 - core[0].svIdle(17), plen 0: [] +EVENT[2289]: 0.237448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2290]: 0.237461775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2291]: 0.237476900 - core[1].svIdle(17), plen 0: [] +EVENT[2292]: 0.237546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2293]: 0.237562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2294]: 0.237577075 - core[0].svIdle(17), plen 0: [] +EVENT[2295]: 0.238448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2296]: 0.238461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2297]: 0.238476850 - core[1].svIdle(17), plen 0: [] +EVENT[2298]: 0.238546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2299]: 0.238562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2300]: 0.238577275 - core[0].svIdle(17), plen 0: [] +EVENT[2301]: 0.239448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2302]: 0.239461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2303]: 0.239476850 - core[1].svIdle(17), plen 0: [] +EVENT[2304]: 0.239546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2305]: 0.239562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2306]: 0.239577075 - core[0].svIdle(17), plen 0: [] +EVENT[2307]: 0.240448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2308]: 0.240461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2309]: 0.240476975 - core[1].svIdle(17), plen 0: [] +EVENT[2310]: 0.240546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2311]: 0.240562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2312]: 0.240577225 - core[0].svIdle(17), plen 0: [] +EVENT[2313]: 0.241448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2314]: 0.241465300 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2315]: 0.241480450 - core[1].svIdle(17), plen 0: [] +EVENT[2316]: 0.241546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2317]: 0.241562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2318]: 0.241577075 - core[0].svIdle(17), plen 0: [] +EVENT[2319]: 0.242448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2320]: 0.242461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2321]: 0.242476850 - core[1].svIdle(17), plen 0: [] +EVENT[2322]: 0.242546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2323]: 0.242561675 - core[0].svTaskStartReady(6), plen 0: [tid: 12284596] +EVENT[2324]: 0.242561675 - core[1].svTaskStartReady(6), plen 0: [tid: 12284596] +EVENT[2325]: 0.242574275 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2326]: 0.242589925 - core[0].svTaskStartExec(4), plen 0: [tid: 12284596] +EVENT[2327]: 0.242624900 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459256, size: 9, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.242624900] HEAP: Allocated 9 bytes @ 0x3ffbb038 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[2159]: 0.241947000 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461428, size: 18, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.241947000] HEAP: Allocated 18 bytes @ 0x3ffbb8b4 from task "alloc0" on core 0 by: +EVENT[2328]: 0.242659150 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459320, size: 18, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.242659150] HEAP: Allocated 18 bytes @ 0x3ffbb078 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[2160]: 0.241964025 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2161]: 0.241980025 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2162]: 0.242050450 - core[0].svPrint(26), plen 70: [msg: I (550) example: Task[0x3ffb7aec]: allocated 18 bytes @ 0x3ffbb8b4 +EVENT[2329]: 0.242676200 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2330]: 0.242692225 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2331]: 0.242747050 - core[0].svPrint(26), plen 70: [msg: I (538) example: Task[0x3ffb72b4]: allocated 18 bytes @ 0x3ffbb078 , lvl: 0, unused: 0] -[0.242050450] LOG: I (550) example: Task[0x3ffb7aec]: allocated 18 bytes @ 0x3ffbb8b4 -EVENT[2163]: 0.242068275 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12287056, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2164]: 0.242081500 - core[0].svTaskStartReady(6), plen 0: [tid: 12289748] -EVENT[2165]: 0.242097725 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[2166]: 0.242108600 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[2167]: 0.242119350 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2168]: 0.242133200 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[2169]: 0.242144075 - core[1].svTaskStartExec(4), plen 0: [tid: 12289748] -EVENT[2170]: 0.242154900 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2171]: 0.242166875 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12287056, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[2172]: 0.242177125 - core[0].svIdle(17), plen 0: [] -EVENT[2173]: 0.242188525 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2174]: 0.242204900 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2175]: 0.242268450 - core[1].svPrint(26), plen 63: [msg: I (550) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb8b4 +[0.242747050] LOG: I (538) example: Task[0x3ffb72b4]: allocated 18 bytes @ 0x3ffbb078 +EVENT[2332]: 0.242760425 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12284952, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2333]: 0.242773825 - core[0].svTaskStartReady(6), plen 0: [tid: 12287644] +EVENT[2334]: 0.242773825 - core[1].svTaskStartReady(6), plen 0: [tid: 12287644] +EVENT[2335]: 0.242790000 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[2336]: 0.242805900 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[2337]: 0.242816600 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2338]: 0.242830325 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[2339]: 0.242841100 - core[1].svTaskStartExec(4), plen 0: [tid: 12287644] +EVENT[2340]: 0.242851850 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2341]: 0.242864100 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12284952, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[2342]: 0.242875350 - core[0].svIdle(17), plen 0: [] +EVENT[2343]: 0.242892600 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2344]: 0.242908850 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2345]: 0.242956725 - core[1].svPrint(26), plen 63: [msg: I (538) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbb078 , lvl: 0, unused: 0] -[0.242268450] LOG: I (550) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb8b4 -EVENT[2176]: 0.242289650 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461428, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.242289650] HEAP: Freed bytes @ 0x3ffbb8b4 from task "free0" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +[0.242956725] LOG: I (538) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbb078 +EVENT[2346]: 0.242978125 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073459320, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.242978125] HEAP: Freed bytes @ 0x3ffbb078 from task "free0" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[2177]: 0.242320650 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[2178]: 0.242332125 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2179]: 0.242348825 - core[1].svIdle(17), plen 0: [] -EVENT[2180]: 0.242666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2181]: 0.242679875 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2182]: 0.242695450 - core[1].svIdle(17), plen 0: [] -EVENT[2183]: 0.242833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2184]: 0.242848825 - core[0].svTaskStartReady(6), plen 0: [tid: 12292716] -EVENT[2185]: 0.242861575 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2186]: 0.242877250 - core[0].svTaskStartExec(4), plen 0: [tid: 12292716] -EVENT[2187]: 0.242912575 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461428, size: 18, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.242912575] HEAP: Allocated 18 bytes @ 0x3ffbb8b4 from task "alloc1" on core 0 by: +EVENT[2347]: 0.243004600 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[2348]: 0.243016000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2349]: 0.243032575 - core[1].svIdle(17), plen 0: [] +EVENT[2350]: 0.243448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2351]: 0.243461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2352]: 0.243477425 - core[1].svIdle(17), plen 0: [] +EVENT[2353]: 0.243546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2354]: 0.243561625 - core[0].svTaskStartReady(6), plen 0: [tid: 12290612] +EVENT[2355]: 0.243561625 - core[1].svTaskStartReady(6), plen 0: [tid: 12290612] +EVENT[2356]: 0.243574225 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2357]: 0.243589875 - core[0].svTaskStartExec(4), plen 0: [tid: 12290612] +EVENT[2358]: 0.243625050 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459320, size: 18, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.243625050] HEAP: Allocated 18 bytes @ 0x3ffbb078 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[2188]: 0.242947150 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461452, size: 36, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.242947150] HEAP: Allocated 36 bytes @ 0x3ffbb8cc from task "alloc1" on core 0 by: +EVENT[2359]: 0.243664650 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459384, size: 36, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.243664650] HEAP: Allocated 36 bytes @ 0x3ffbb0b8 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[2189]: 0.242964175 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2190]: 0.242980175 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2191]: 0.243050600 - core[0].svPrint(26), plen 70: [msg: I (551) example: Task[0x3ffb926c]: allocated 36 bytes @ 0x3ffbb8cc +EVENT[2360]: 0.243681600 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2361]: 0.243697725 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2362]: 0.243752450 - core[0].svPrint(26), plen 70: [msg: I (539) example: Task[0x3ffb8a34]: allocated 36 bytes @ 0x3ffbb0b8 , lvl: 0, unused: 0] -[0.243050600] LOG: I (551) example: Task[0x3ffb926c]: allocated 36 bytes @ 0x3ffbb8cc -EVENT[2192]: 0.243064150 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12293072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2193]: 0.243080975 - core[0].svTaskStartReady(6), plen 0: [tid: 12295764] -EVENT[2194]: 0.243097275 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[2195]: 0.243108125 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[2196]: 0.243118875 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2197]: 0.243132600 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[2198]: 0.243143450 - core[1].svTaskStartExec(4), plen 0: [tid: 12295764] -EVENT[2199]: 0.243154275 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2200]: 0.243166150 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12293072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[2201]: 0.243176400 - core[0].svIdle(17), plen 0: [] -EVENT[2202]: 0.243187875 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2203]: 0.243204375 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2204]: 0.243267825 - core[1].svPrint(26), plen 63: [msg: I (551) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb8cc +[0.243752450] LOG: I (539) example: Task[0x3ffb8a34]: allocated 36 bytes @ 0x3ffbb0b8 +EVENT[2363]: 0.243765900 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12290968, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2364]: 0.243779150 - core[0].svTaskStartReady(6), plen 0: [tid: 12293660] +EVENT[2365]: 0.243779150 - core[1].svTaskStartReady(6), plen 0: [tid: 12293660] +EVENT[2366]: 0.243795500 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[2367]: 0.243806350 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[2368]: 0.243817175 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2369]: 0.243830875 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[2370]: 0.243841750 - core[1].svTaskStartExec(4), plen 0: [tid: 12293660] +EVENT[2371]: 0.243852625 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2372]: 0.243864575 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12290968, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[2373]: 0.243875800 - core[0].svIdle(17), plen 0: [] +EVENT[2374]: 0.243887600 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2375]: 0.243908225 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2376]: 0.243956100 - core[1].svPrint(26), plen 63: [msg: I (539) example: Task[0x3ffb961c]: free memory @ 0x3ffbb0b8 , lvl: 0, unused: 0] -[0.243267825] LOG: I (551) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb8cc -EVENT[2205]: 0.243288975 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461452, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.243288975] HEAP: Freed bytes @ 0x3ffbb8cc from task "free1" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +[0.243956100] LOG: I (539) example: Task[0x3ffb961c]: free memory @ 0x3ffbb0b8 +EVENT[2377]: 0.243977525 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073459384, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.243977525] HEAP: Freed bytes @ 0x3ffbb0b8 from task "free1" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[2206]: 0.243315975 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[2207]: 0.243327400 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2208]: 0.243343975 - core[1].svIdle(17), plen 0: [] -EVENT[2209]: 0.243666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2210]: 0.243679850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2211]: 0.243695550 - core[1].svIdle(17), plen 0: [] -EVENT[2212]: 0.243833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2213]: 0.243848800 - core[0].svTaskStartReady(6), plen 0: [tid: 12298716] -EVENT[2214]: 0.243861575 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2215]: 0.243877250 - core[0].svTaskStartExec(4), plen 0: [tid: 12298716] -EVENT[2216]: 0.243912650 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461452, size: 27, callers: [1074274287, 1074274340, 1074325096, 1074621171, 1074302356, 0, 0, 0, 0, 0]] -[0.243912650] HEAP: Allocated 27 bytes @ 0x3ffbb8cc from task "alloc2" on core 0 by: +EVENT[2378]: 0.244004825 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[2379]: 0.244016225 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2380]: 0.244032800 - core[1].svIdle(17), plen 0: [] +EVENT[2381]: 0.244448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2382]: 0.244461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2383]: 0.244477425 - core[1].svIdle(17), plen 0: [] +EVENT[2384]: 0.244546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2385]: 0.244562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2386]: 0.244577225 - core[0].svIdle(17), plen 0: [] +EVENT[2387]: 0.245448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2388]: 0.245461775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2389]: 0.245476900 - core[1].svIdle(17), plen 0: [] +EVENT[2390]: 0.245546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2391]: 0.245561625 - core[0].svTaskStartReady(6), plen 0: [tid: 12296612] +EVENT[2392]: 0.245561625 - core[1].svTaskStartReady(6), plen 0: [tid: 12296612] +EVENT[2393]: 0.245574275 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2394]: 0.245589950 - core[0].svTaskStartExec(4), plen 0: [tid: 12296612] +EVENT[2395]: 0.245626225 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459384, size: 27, callers: [1074274047, 1074274100, 1074321944, 1074609076, 1074299100, 0, 0, 0, 0, 0]] +[0.245626225] HEAP: Allocated 27 bytes @ 0x3ffbb0b8 from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[2217]: 0.243951325 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073461484, size: 54, callers: [1074274287, 1074274340, 1074325096, 1074621178, 1074302356, 0, 0, 0, 0, 0]] -[0.243951325] HEAP: Allocated 54 bytes @ 0x3ffbb8ec from task "alloc2" on core 0 by: +EVENT[2396]: 0.245661825 - core[0].esp_sysview_heap_trace_alloc(512), plen 36: [addr: 1073459416, size: 54, callers: [1074274047, 1074274100, 1074321944, 1074609083, 1074299100, 0, 0, 0, 0, 0]] +[0.245661825] HEAP: Allocated 54 bytes @ 0x3ffbb0d8 from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:61 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[2218]: 0.243968350 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2219]: 0.243984350 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2220]: 0.244054675 - core[0].svPrint(26), plen 70: [msg: I (552) example: Task[0x3ffba9dc]: allocated 54 bytes @ 0x3ffbb8ec +EVENT[2397]: 0.245682250 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2398]: 0.245698175 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2399]: 0.245752950 - core[0].svPrint(26), plen 70: [msg: I (541) example: Task[0x3ffba1a4]: allocated 54 bytes @ 0x3ffbb0d8 , lvl: 0, unused: 0] -[0.244054675] LOG: I (552) example: Task[0x3ffba9dc]: allocated 54 bytes @ 0x3ffbb8ec -EVENT[2221]: 0.244068400 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12299072, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2222]: 0.244081625 - core[0].svTaskStartReady(6), plen 0: [tid: 12301764] -EVENT[2223]: 0.244097950 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[2224]: 0.244108800 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] -EVENT[2225]: 0.244119550 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2226]: 0.244133275 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[2227]: 0.244144175 - core[1].svTaskStartExec(4), plen 0: [tid: 12301764] -EVENT[2228]: 0.244155000 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2229]: 0.244166850 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12299072, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] -EVENT[2230]: 0.244178150 - core[0].svIdle(17), plen 0: [] -EVENT[2231]: 0.244189775 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2232]: 0.244210225 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2233]: 0.244273900 - core[1].svPrint(26), plen 63: [msg: I (552) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb8ec +[0.245752950] LOG: I (541) example: Task[0x3ffba1a4]: allocated 54 bytes @ 0x3ffbb0d8 +EVENT[2400]: 0.245766450 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12296968, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2401]: 0.245779600 - core[0].svTaskStartReady(6), plen 0: [tid: 12299660] +EVENT[2402]: 0.245779600 - core[1].svTaskStartReady(6), plen 0: [tid: 12299660] +EVENT[2403]: 0.245795925 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[2404]: 0.245806775 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 30] +EVENT[2405]: 0.245817575 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2406]: 0.245831475 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[2407]: 0.245842275 - core[1].svTaskStartExec(4), plen 0: [tid: 12299660] +EVENT[2408]: 0.245853025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2409]: 0.245865475 - core[1].xQueueGenericReceive(49), plen 15: [xQueue: 12296968, pvBuffer: 3233808384, xTicksToWait: 4294967295, xJustPeek: 1] +EVENT[2410]: 0.245876550 - core[0].svIdle(17), plen 0: [] +EVENT[2411]: 0.245888475 - core[1].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2412]: 0.245904775 - core[1].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2413]: 0.245952650 - core[1].svPrint(26), plen 63: [msg: I (541) example: Task[0x3ffbad8c]: free memory @ 0x3ffbb0d8 , lvl: 0, unused: 0] -[0.244273900] LOG: I (552) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb8ec -EVENT[2234]: 0.244295100 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073461484, callers: [1074325108, 1074621362, 1074302356, 0, 0, 0, 0, 0, 0, 0]] -[0.244295100] HEAP: Freed bytes @ 0x3ffbb8ec from task "free2" on core 1 by: -/Users/erhan/dev/esp-idf/components/newlib/heap.c:40 +[0.245952650] LOG: I (541) example: Task[0x3ffbad8c]: free memory @ 0x3ffbb0d8 +EVENT[2414]: 0.245978075 - core[1].esp_sysview_heap_trace_free(513), plen 27: [addr: 1073459416, callers: [1074321956, 1074609266, 1074299100, 0, 0, 0, 0, 0, 0, 0]] +[0.245978075] HEAP: Freed bytes @ 0x3ffbb0d8 from task "free2" on core 1 by: +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:35 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:26 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -EVENT[2235]: 0.244322000 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] -EVENT[2236]: 0.244333425 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2237]: 0.244350000 - core[1].svIdle(17), plen 0: [] -EVENT[2238]: 0.244666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2239]: 0.244679850 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2240]: 0.244695550 - core[1].svIdle(17), plen 0: [] -EVENT[2241]: 0.244833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2242]: 0.244849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2243]: 0.244864250 - core[0].svIdle(17), plen 0: [] -EVENT[2244]: 0.245666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2245]: 0.245680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2246]: 0.245695350 - core[1].svIdle(17), plen 0: [] -EVENT[2247]: 0.245833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2248]: 0.245849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2249]: 0.245864250 - core[0].svIdle(17), plen 0: [] -EVENT[2250]: 0.246666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2251]: 0.246680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2252]: 0.246695125 - core[1].svIdle(17), plen 0: [] -EVENT[2253]: 0.246833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2254]: 0.246849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2255]: 0.246864250 - core[0].svIdle(17), plen 0: [] -EVENT[2256]: 0.247666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2257]: 0.247680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2258]: 0.247695225 - core[1].svIdle(17), plen 0: [] -EVENT[2259]: 0.247833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2260]: 0.247849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2261]: 0.247864425 - core[0].svIdle(17), plen 0: [] -EVENT[2262]: 0.248666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2263]: 0.248679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2264]: 0.248695100 - core[1].svIdle(17), plen 0: [] -EVENT[2265]: 0.248833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2266]: 0.248849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2267]: 0.248864250 - core[0].svIdle(17), plen 0: [] -EVENT[2268]: 0.249666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2269]: 0.249680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2270]: 0.249695350 - core[1].svIdle(17), plen 0: [] -EVENT[2271]: 0.249833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2272]: 0.249849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2273]: 0.249868675 - core[0].svIdle(17), plen 0: [] -EVENT[2274]: 0.250666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2275]: 0.250679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2276]: 0.250695100 - core[1].svIdle(17), plen 0: [] -EVENT[2277]: 0.250833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2278]: 0.250849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2279]: 0.250864250 - core[0].svIdle(17), plen 0: [] -EVENT[2280]: 0.251666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2281]: 0.251680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2282]: 0.251695350 - core[1].svIdle(17), plen 0: [] -EVENT[2283]: 0.251833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2284]: 0.251849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2285]: 0.251864250 - core[0].svIdle(17), plen 0: [] -EVENT[2286]: 0.252666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2287]: 0.252680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2288]: 0.252695125 - core[1].svIdle(17), plen 0: [] -EVENT[2289]: 0.252833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2290]: 0.252849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2291]: 0.252864250 - core[0].svIdle(17), plen 0: [] -EVENT[2292]: 0.253666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2293]: 0.253680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2294]: 0.253695225 - core[1].svIdle(17), plen 0: [] -EVENT[2295]: 0.253833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2296]: 0.253849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2297]: 0.253864425 - core[0].svIdle(17), plen 0: [] -EVENT[2298]: 0.254666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2299]: 0.254679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2300]: 0.254695100 - core[1].svIdle(17), plen 0: [] -EVENT[2301]: 0.254833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2302]: 0.254849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2303]: 0.254864250 - core[0].svIdle(17), plen 0: [] -EVENT[2304]: 0.255666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2305]: 0.255680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2306]: 0.255695350 - core[1].svIdle(17), plen 0: [] -EVENT[2307]: 0.255833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2308]: 0.255849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2309]: 0.255864250 - core[0].svIdle(17), plen 0: [] -EVENT[2310]: 0.256666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2311]: 0.256680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2312]: 0.256695125 - core[1].svIdle(17), plen 0: [] -EVENT[2313]: 0.256833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2314]: 0.256849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2315]: 0.256864250 - core[0].svIdle(17), plen 0: [] -EVENT[2316]: 0.257666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2317]: 0.257680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2318]: 0.257695225 - core[1].svIdle(17), plen 0: [] -EVENT[2319]: 0.257833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2320]: 0.257849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2321]: 0.257864425 - core[0].svIdle(17), plen 0: [] -EVENT[2322]: 0.258666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2323]: 0.258679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2324]: 0.258695100 - core[1].svIdle(17), plen 0: [] -EVENT[2325]: 0.258833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2326]: 0.258849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2327]: 0.258864250 - core[0].svIdle(17), plen 0: [] -EVENT[2328]: 0.259666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2329]: 0.259680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2330]: 0.259695350 - core[1].svIdle(17), plen 0: [] -EVENT[2331]: 0.259833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2332]: 0.259849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2333]: 0.259864250 - core[0].svIdle(17), plen 0: [] -EVENT[2334]: 0.260666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2335]: 0.260680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2336]: 0.260695125 - core[1].svIdle(17), plen 0: [] -EVENT[2337]: 0.260833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2338]: 0.260849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2339]: 0.260864250 - core[0].svIdle(17), plen 0: [] -EVENT[2340]: 0.261666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2341]: 0.261680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2342]: 0.261695225 - core[1].svIdle(17), plen 0: [] -EVENT[2343]: 0.261833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2344]: 0.261849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2345]: 0.261864425 - core[0].svIdle(17), plen 0: [] -EVENT[2346]: 0.262666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2347]: 0.262680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2348]: 0.262695350 - core[1].svIdle(17), plen 0: [] -EVENT[2349]: 0.262833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2350]: 0.262849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2351]: 0.262864250 - core[0].svIdle(17), plen 0: [] -EVENT[2352]: 0.263666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2353]: 0.263680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2354]: 0.263695125 - core[1].svIdle(17), plen 0: [] -EVENT[2355]: 0.263833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2356]: 0.263849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2357]: 0.263864250 - core[0].svIdle(17), plen 0: [] -EVENT[2358]: 0.264666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2359]: 0.264680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2360]: 0.264695225 - core[1].svIdle(17), plen 0: [] -EVENT[2361]: 0.264833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2362]: 0.264849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2363]: 0.264864425 - core[0].svIdle(17), plen 0: [] -EVENT[2364]: 0.265666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2365]: 0.265679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2366]: 0.265695100 - core[1].svIdle(17), plen 0: [] -EVENT[2367]: 0.265833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2368]: 0.265849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2369]: 0.265864250 - core[0].svIdle(17), plen 0: [] -EVENT[2370]: 0.266666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2371]: 0.266680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2372]: 0.266695350 - core[1].svIdle(17), plen 0: [] -EVENT[2373]: 0.266833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2374]: 0.266849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2375]: 0.266864250 - core[0].svIdle(17), plen 0: [] -EVENT[2376]: 0.267666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2377]: 0.267680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2378]: 0.267695125 - core[1].svIdle(17), plen 0: [] -EVENT[2379]: 0.267833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2380]: 0.267849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2381]: 0.267864250 - core[0].svIdle(17), plen 0: [] -EVENT[2382]: 0.268666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2383]: 0.268680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2384]: 0.268695225 - core[1].svIdle(17), plen 0: [] -EVENT[2385]: 0.268833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2386]: 0.268849200 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2387]: 0.268864425 - core[0].svIdle(17), plen 0: [] -EVENT[2388]: 0.269666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2389]: 0.269679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2390]: 0.269695100 - core[1].svIdle(17), plen 0: [] -EVENT[2391]: 0.269833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2392]: 0.269849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2393]: 0.269864250 - core[0].svIdle(17), plen 0: [] -EVENT[2394]: 0.270666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2395]: 0.270680075 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2396]: 0.270695350 - core[1].svIdle(17), plen 0: [] -EVENT[2397]: 0.270833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2398]: 0.270849175 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2399]: 0.270864250 - core[0].svIdle(17), plen 0: [] -EVENT[2400]: 0.271666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2401]: 0.271680000 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2402]: 0.271695125 - core[1].svIdle(17), plen 0: [] -EVENT[2403]: 0.271833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2404]: 0.271848800 - core[0].svTaskStartReady(6), plen 0: [tid: 12286700] -EVENT[2405]: 0.271861575 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2406]: 0.271877250 - core[0].svTaskStartExec(4), plen 0: [tid: 12286700] -EVENT[2407]: 0.271895625 - core[0].xTaskGenericNotify(44), plen 7: [xTaskToNotify: 12254080, ulValue: 0, eAction: 2, pulPreviousNotificationValue: 0] -EVENT[2408]: 0.271906575 - core[0].svTaskStartReady(6), plen 0: [tid: 12254080] -EVENT[2409]: 0.271919725 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 100] -EVENT[2410]: 0.271936275 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[2411]: 0.271947650 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2412]: 0.271964600 - core[0].svTaskStartExec(4), plen 0: [tid: 12254080] -EVENT[2413]: 0.271982475 - core[0].ulTaskNotifyTake(37), plen 6: [xClearCountOnExit: 0, xTicksToWait: 4294967295] -EVENT[2414]: 0.271998425 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2415]: 0.272014325 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2416]: 0.272063675 - core[0].svPrint(26), plen 37: [msg: I (580) example: Got notify val 1 +EVENT[2415]: 0.246005475 - core[1].svIsrEnter(2), plen 0: [irq_num: 31] +EVENT[2416]: 0.246016900 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2417]: 0.246033450 - core[1].svIdle(17), plen 0: [] +EVENT[2418]: 0.246448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2419]: 0.246461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2420]: 0.246477300 - core[1].svIdle(17), plen 0: [] +EVENT[2421]: 0.246546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2422]: 0.246562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2423]: 0.246577275 - core[0].svIdle(17), plen 0: [] +EVENT[2424]: 0.247448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2425]: 0.247461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2426]: 0.247476850 - core[1].svIdle(17), plen 0: [] +EVENT[2427]: 0.247546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2428]: 0.247562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2429]: 0.247577075 - core[0].svIdle(17), plen 0: [] +EVENT[2430]: 0.248448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2431]: 0.248461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2432]: 0.248476975 - core[1].svIdle(17), plen 0: [] +EVENT[2433]: 0.248546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2434]: 0.248562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2435]: 0.248577225 - core[0].svIdle(17), plen 0: [] +EVENT[2436]: 0.249448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2437]: 0.249461775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2438]: 0.249476900 - core[1].svIdle(17), plen 0: [] +EVENT[2439]: 0.249546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2440]: 0.249562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2441]: 0.249577075 - core[0].svIdle(17), plen 0: [] +EVENT[2442]: 0.250448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2443]: 0.250461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2444]: 0.250476850 - core[1].svIdle(17), plen 0: [] +EVENT[2445]: 0.250546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2446]: 0.250562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2447]: 0.250577275 - core[0].svIdle(17), plen 0: [] +EVENT[2448]: 0.251448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2449]: 0.251461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2450]: 0.251476850 - core[1].svIdle(17), plen 0: [] +EVENT[2451]: 0.251546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2452]: 0.251562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2453]: 0.251577075 - core[0].svIdle(17), plen 0: [] +EVENT[2454]: 0.252448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2455]: 0.252461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2456]: 0.252476975 - core[1].svIdle(17), plen 0: [] +EVENT[2457]: 0.252546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2458]: 0.252562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2459]: 0.252577225 - core[0].svIdle(17), plen 0: [] +EVENT[2460]: 0.253448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2461]: 0.253461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2462]: 0.253476975 - core[1].svIdle(17), plen 0: [] +EVENT[2463]: 0.253546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2464]: 0.253562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2465]: 0.253577225 - core[0].svIdle(17), plen 0: [] +EVENT[2466]: 0.254448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2467]: 0.254461775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2468]: 0.254476900 - core[1].svIdle(17), plen 0: [] +EVENT[2469]: 0.254546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2470]: 0.254562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2471]: 0.254577075 - core[0].svIdle(17), plen 0: [] +EVENT[2472]: 0.255448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2473]: 0.255461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2474]: 0.255476850 - core[1].svIdle(17), plen 0: [] +EVENT[2475]: 0.255546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2476]: 0.255562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2477]: 0.255577275 - core[0].svIdle(17), plen 0: [] +EVENT[2478]: 0.256448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2479]: 0.256461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2480]: 0.256476850 - core[1].svIdle(17), plen 0: [] +EVENT[2481]: 0.256546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2482]: 0.256562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2483]: 0.256577075 - core[0].svIdle(17), plen 0: [] +EVENT[2484]: 0.257448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2485]: 0.257461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2486]: 0.257476975 - core[1].svIdle(17), plen 0: [] +EVENT[2487]: 0.257546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2488]: 0.257562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2489]: 0.257577225 - core[0].svIdle(17), plen 0: [] +EVENT[2490]: 0.258448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2491]: 0.258461775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2492]: 0.258476900 - core[1].svIdle(17), plen 0: [] +EVENT[2493]: 0.258546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2494]: 0.258562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2495]: 0.258577075 - core[0].svIdle(17), plen 0: [] +EVENT[2496]: 0.259448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2497]: 0.259461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2498]: 0.259476850 - core[1].svIdle(17), plen 0: [] +EVENT[2499]: 0.259546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2500]: 0.259562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2501]: 0.259577275 - core[0].svIdle(17), plen 0: [] +EVENT[2502]: 0.260448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2503]: 0.260461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2504]: 0.260476850 - core[1].svIdle(17), plen 0: [] +EVENT[2505]: 0.260546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2506]: 0.260562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2507]: 0.260577075 - core[0].svIdle(17), plen 0: [] +EVENT[2508]: 0.261448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2509]: 0.261461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2510]: 0.261476975 - core[1].svIdle(17), plen 0: [] +EVENT[2511]: 0.261546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2512]: 0.261562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2513]: 0.261577225 - core[0].svIdle(17), plen 0: [] +EVENT[2514]: 0.262448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2515]: 0.262461775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2516]: 0.262476900 - core[1].svIdle(17), plen 0: [] +EVENT[2517]: 0.262546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2518]: 0.262562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2519]: 0.262577075 - core[0].svIdle(17), plen 0: [] +EVENT[2520]: 0.263448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2521]: 0.263461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2522]: 0.263476850 - core[1].svIdle(17), plen 0: [] +EVENT[2523]: 0.263546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2524]: 0.263562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2525]: 0.263577275 - core[0].svIdle(17), plen 0: [] +EVENT[2526]: 0.264448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2527]: 0.264461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2528]: 0.264476850 - core[1].svIdle(17), plen 0: [] +EVENT[2529]: 0.264546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2530]: 0.264562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2531]: 0.264577075 - core[0].svIdle(17), plen 0: [] +EVENT[2532]: 0.265448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2533]: 0.265466000 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2534]: 0.265481125 - core[1].svIdle(17), plen 0: [] +EVENT[2535]: 0.265546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2536]: 0.265562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2537]: 0.265577075 - core[0].svIdle(17), plen 0: [] +EVENT[2538]: 0.266448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2539]: 0.266461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2540]: 0.266476850 - core[1].svIdle(17), plen 0: [] +EVENT[2541]: 0.266546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2542]: 0.266562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2543]: 0.266577275 - core[0].svIdle(17), plen 0: [] +EVENT[2544]: 0.267448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2545]: 0.267461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2546]: 0.267476850 - core[1].svIdle(17), plen 0: [] +EVENT[2547]: 0.267546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2548]: 0.267562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2549]: 0.267577075 - core[0].svIdle(17), plen 0: [] +EVENT[2550]: 0.268448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2551]: 0.268461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2552]: 0.268476975 - core[1].svIdle(17), plen 0: [] +EVENT[2553]: 0.268546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2554]: 0.268562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2555]: 0.268577225 - core[0].svIdle(17), plen 0: [] +EVENT[2556]: 0.269448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2557]: 0.269461775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2558]: 0.269476900 - core[1].svIdle(17), plen 0: [] +EVENT[2559]: 0.269546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2560]: 0.269562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2561]: 0.269577075 - core[0].svIdle(17), plen 0: [] +EVENT[2562]: 0.270448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2563]: 0.270461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2564]: 0.270476850 - core[1].svIdle(17), plen 0: [] +EVENT[2565]: 0.270546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2566]: 0.270562050 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2567]: 0.270577275 - core[0].svIdle(17), plen 0: [] +EVENT[2568]: 0.271448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2569]: 0.271461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2570]: 0.271476850 - core[1].svIdle(17), plen 0: [] +EVENT[2571]: 0.271546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2572]: 0.271562000 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2573]: 0.271577075 - core[0].svIdle(17), plen 0: [] +EVENT[2574]: 0.272448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2575]: 0.272461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2576]: 0.272476975 - core[1].svIdle(17), plen 0: [] +EVENT[2577]: 0.272546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2578]: 0.272561625 - core[0].svTaskStartReady(6), plen 0: [tid: 12284596] +EVENT[2579]: 0.272561625 - core[1].svTaskStartReady(6), plen 0: [tid: 12284596] +EVENT[2580]: 0.272574225 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2581]: 0.272589875 - core[0].svTaskStartExec(4), plen 0: [tid: 12284596] +EVENT[2582]: 0.272608050 - core[0].xTaskGenericNotify(44), plen 7: [xTaskToNotify: 12274964, ulValue: 0, eAction: 2, pulPreviousNotificationValue: 0] +EVENT[2583]: 0.272619100 - core[0].svTaskStartReady(6), plen 0: [tid: 12274964] +EVENT[2584]: 0.272619100 - core[1].svTaskStartReady(6), plen 0: [tid: 12274964] +EVENT[2585]: 0.272632200 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 100] +EVENT[2586]: 0.272648750 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[2587]: 0.272660225 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2588]: 0.272677175 - core[0].svTaskStartExec(4), plen 0: [tid: 12274964] +EVENT[2589]: 0.272690950 - core[0].ulTaskNotifyTake(37), plen 6: [xClearCountOnExit: 0, xTicksToWait: 4294967295] +EVENT[2590]: 0.272706875 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2591]: 0.272722875 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2592]: 0.272764325 - core[0].svPrint(26), plen 37: [msg: I (568) example: Got notify val 1 , lvl: 0, unused: 0] -[0.272063675] LOG: I (580) example: Got notify val 1 -EVENT[2417]: 0.272079975 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2418]: 0.272095925 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2419]: 0.272140275 - core[0].svPrint(26), plen 34: [msg: I (580) example: Wait notify 1 +[0.272764325] LOG: I (568) example: Got notify val 1 +EVENT[2593]: 0.272784675 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2594]: 0.272800725 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2595]: 0.272837275 - core[0].svPrint(26), plen 34: [msg: I (568) example: Wait notify 1 , lvl: 0, unused: 0] -[0.272140275] LOG: I (580) example: Wait notify 1 -EVENT[2420]: 0.272158650 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[2421]: 0.272170050 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2422]: 0.272186100 - core[0].svIdle(17), plen 0: [] -EVENT[2423]: 0.272666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2424]: 0.272679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2425]: 0.272695100 - core[1].svIdle(17), plen 0: [] -EVENT[2426]: 0.272833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2427]: 0.272848800 - core[0].svTaskStartReady(6), plen 0: [tid: 12292716] -EVENT[2428]: 0.272861575 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2429]: 0.272877375 - core[0].svTaskStartExec(4), plen 0: [tid: 12292716] -EVENT[2430]: 0.272891800 - core[0].xTaskGenericNotify(44), plen 7: [xTaskToNotify: 12254080, ulValue: 0, eAction: 2, pulPreviousNotificationValue: 0] -EVENT[2431]: 0.272902925 - core[0].svTaskStartReady(6), plen 0: [tid: 12254080] -EVENT[2432]: 0.272916050 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 100] -EVENT[2433]: 0.272932650 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[2434]: 0.272944025 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2435]: 0.272960975 - core[0].svTaskStartExec(4), plen 0: [tid: 12254080] -EVENT[2436]: 0.272974675 - core[0].ulTaskNotifyTake(37), plen 6: [xClearCountOnExit: 0, xTicksToWait: 4294967295] -EVENT[2437]: 0.272990600 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2438]: 0.273006525 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2439]: 0.273056000 - core[0].svPrint(26), plen 37: [msg: I (581) example: Got notify val 1 +[0.272837275] LOG: I (568) example: Wait notify 1 +EVENT[2596]: 0.272855500 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[2597]: 0.272866850 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2598]: 0.272882775 - core[0].svIdle(17), plen 0: [] +EVENT[2599]: 0.273448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2600]: 0.273461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2601]: 0.273476975 - core[1].svIdle(17), plen 0: [] +EVENT[2602]: 0.273546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2603]: 0.273561625 - core[0].svTaskStartReady(6), plen 0: [tid: 12290612] +EVENT[2604]: 0.273561625 - core[1].svTaskStartReady(6), plen 0: [tid: 12290612] +EVENT[2605]: 0.273574225 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2606]: 0.273589875 - core[0].svTaskStartExec(4), plen 0: [tid: 12290612] +EVENT[2607]: 0.273604250 - core[0].xTaskGenericNotify(44), plen 7: [xTaskToNotify: 12274964, ulValue: 0, eAction: 2, pulPreviousNotificationValue: 0] +EVENT[2608]: 0.273615300 - core[0].svTaskStartReady(6), plen 0: [tid: 12274964] +EVENT[2609]: 0.273615300 - core[1].svTaskStartReady(6), plen 0: [tid: 12274964] +EVENT[2610]: 0.273628400 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 100] +EVENT[2611]: 0.273644950 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[2612]: 0.273656300 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2613]: 0.273673250 - core[0].svTaskStartExec(4), plen 0: [tid: 12274964] +EVENT[2614]: 0.273687025 - core[0].ulTaskNotifyTake(37), plen 6: [xClearCountOnExit: 0, xTicksToWait: 4294967295] +EVENT[2615]: 0.273702950 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2616]: 0.273718950 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2617]: 0.273756450 - core[0].svPrint(26), plen 37: [msg: I (569) example: Got notify val 1 , lvl: 0, unused: 0] -[0.273056000] LOG: I (581) example: Got notify val 1 -EVENT[2440]: 0.273072300 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2441]: 0.273088250 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2442]: 0.273132600 - core[0].svPrint(26), plen 34: [msg: I (581) example: Wait notify 2 +[0.273756450] LOG: I (569) example: Got notify val 1 +EVENT[2618]: 0.273776100 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2619]: 0.273792050 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2620]: 0.273828600 - core[0].svPrint(26), plen 34: [msg: I (569) example: Wait notify 2 , lvl: 0, unused: 0] -[0.273132600] LOG: I (581) example: Wait notify 2 -EVENT[2443]: 0.273150975 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[2444]: 0.273162375 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2445]: 0.273178550 - core[0].svIdle(17), plen 0: [] -EVENT[2446]: 0.273666425 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2447]: 0.273679950 - core[1].svExitIsrToScheduler(18), plen 0: [] -EVENT[2448]: 0.273695100 - core[1].svIdle(17), plen 0: [] -EVENT[2449]: 0.273833800 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] -EVENT[2450]: 0.273848800 - core[0].svTaskStartReady(6), plen 0: [tid: 12298716] -EVENT[2451]: 0.273861575 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2452]: 0.273877375 - core[0].svTaskStartExec(4), plen 0: [tid: 12298716] -EVENT[2453]: 0.273891800 - core[0].xTaskGenericNotify(44), plen 7: [xTaskToNotify: 12254080, ulValue: 0, eAction: 2, pulPreviousNotificationValue: 0] -EVENT[2454]: 0.273902925 - core[0].svTaskStartReady(6), plen 0: [tid: 12254080] -EVENT[2455]: 0.273916050 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 100] -EVENT[2456]: 0.273932650 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] -EVENT[2457]: 0.273944025 - core[0].svExitIsrToScheduler(18), plen 0: [] -EVENT[2458]: 0.273960975 - core[0].svTaskStartExec(4), plen 0: [tid: 12254080] -EVENT[2459]: 0.273974675 - core[0].ulTaskNotifyTake(37), plen 6: [xClearCountOnExit: 0, xTicksToWait: 4294967295] -EVENT[2460]: 0.273990600 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2461]: 0.274006525 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12283904, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] -EVENT[2462]: 0.274051775 - core[0].svPrint(26), plen 37: [msg: I (582) example: Got notify val 1 +[0.273828600] LOG: I (569) example: Wait notify 2 +EVENT[2621]: 0.273846825 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[2622]: 0.273858175 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2623]: 0.273874200 - core[0].svIdle(17), plen 0: [] +EVENT[2624]: 0.274448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2625]: 0.274461725 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2626]: 0.274476975 - core[1].svIdle(17), plen 0: [] +EVENT[2627]: 0.274546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2628]: 0.274562025 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2629]: 0.274577225 - core[0].svIdle(17), plen 0: [] +EVENT[2630]: 0.275448200 - core[1].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2631]: 0.275461775 - core[1].svExitIsrToScheduler(18), plen 0: [] +EVENT[2632]: 0.275476900 - core[1].svIdle(17), plen 0: [] +EVENT[2633]: 0.275546650 - core[0].svIsrEnter(2), plen 0: [irq_num: 5] +EVENT[2634]: 0.275561625 - core[0].svTaskStartReady(6), plen 0: [tid: 12296612] +EVENT[2635]: 0.275561625 - core[1].svTaskStartReady(6), plen 0: [tid: 12296612] +EVENT[2636]: 0.275574275 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2637]: 0.275589950 - core[0].svTaskStartExec(4), plen 0: [tid: 12296612] +EVENT[2638]: 0.275604375 - core[0].xTaskGenericNotify(44), plen 7: [xTaskToNotify: 12274964, ulValue: 0, eAction: 2, pulPreviousNotificationValue: 0] +EVENT[2639]: 0.275615350 - core[0].svTaskStartReady(6), plen 0: [tid: 12274964] +EVENT[2640]: 0.275615350 - core[1].svTaskStartReady(6), plen 0: [tid: 12274964] +EVENT[2641]: 0.275628525 - core[0].vTaskDelay(34), plen 1: [xTicksToDelay: 100] +EVENT[2642]: 0.275645075 - core[0].svIsrEnter(2), plen 0: [irq_num: 30] +EVENT[2643]: 0.275656425 - core[0].svExitIsrToScheduler(18), plen 0: [] +EVENT[2644]: 0.275673375 - core[0].svTaskStartExec(4), plen 0: [tid: 12274964] +EVENT[2645]: 0.275687075 - core[0].ulTaskNotifyTake(37), plen 6: [xClearCountOnExit: 0, xTicksToWait: 4294967295] +EVENT[2646]: 0.275703075 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2647]: 0.275719225 - core[0].xQueueGenericSend(53), plen 7: [xQueue: 12281672, pvItemToQueue: 0, xTicksToWait: 0, xCopyPosition: 0] +EVENT[2648]: 0.275756800 - core[0].svPrint(26), plen 37: [msg: I (571) example: Got notify val 1 , lvl: 0, unused: 0] -[0.274051775] LOG: I (582) example: Got notify val 1 -EVENT[2463]: 0.330505425 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12283904, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] -EVENT[2464]: 0.330514125 - core[0].svTraceStop(11), plen 0: [] -Processed 2465 events +[0.275756800] LOG: I (571) example: Got notify val 1 +EVENT[2649]: 0.327035450 - core[0].xQueueGenericReceive(49), plen 11: [xQueue: 12281672, pvBuffer: 3233808384, xTicksToWait: 10, xJustPeek: 0] +EVENT[2650]: 0.327044075 - core[0].svTraceStop(11), plen 0: [] +EVENT[2651]: 0.327044075 - core[1].svTraceStop(11), plen 0: [] +Processed 2652 events =============== LOG TRACE REPORT =============== Processed 60 log messages. =============== HEAP TRACE REPORT =============== Processed 99 heap events. -[0.001532525] HEAP: Allocated 8 bytes @ 0x3ffb70d8 from task "main" on core 0 by: +[0.001650800] HEAP: Allocated 8 bytes @ 0x3ffb68a0 from task "main" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:87 -/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 10) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.001870025] HEAP: Allocated 2500 bytes @ 0x3ffb70e8 from task "main" on core 0 by: +[0.001952550] HEAP: Allocated 2500 bytes @ 0x3ffb68b0 from task "main" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:231 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:86 (discriminator 2) -/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 10) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.001909875] HEAP: Allocated 340 bytes @ 0x3ffb7aec from task "main" on core 0 by: +[0.001993450] HEAP: Allocated 340 bytes @ 0x3ffb72b4 from task "main" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:236 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:86 (discriminator 2) -/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 10) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.002044025] HEAP: Allocated 124 bytes @ 0x3ffb7c50 from task "alloc0" on core 0 by: +[0.002144425] HEAP: Allocated 124 bytes @ 0x3ffb7418 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/queue.c:545 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:48 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.002113550] HEAP: Allocated 2500 bytes @ 0x3ffb7cd0 from task "alloc0" on core 0 by: +[0.002218950] HEAP: Allocated 2500 bytes @ 0x3ffb7498 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:231 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:57 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.002147950] HEAP: Allocated 340 bytes @ 0x3ffb86d4 from task "alloc0" on core 0 by: +[0.002254400] HEAP: Allocated 340 bytes @ 0x3ffb7e9c from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:236 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:57 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.002251800] HEAP: Allocated 1 bytes @ 0x3ffb8838 from task "alloc0" on core 0 by: +[0.002359325] HEAP: Allocated 1 bytes @ 0x3ffb8000 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.002788050] HEAP: Allocated 8 bytes @ 0x3ffb8858 from task "main" on core 0 by: +[0.002943850] HEAP: Allocated 8 bytes @ 0x3ffb8020 from task "main" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:87 -/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 10) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.002863625] HEAP: Allocated 2500 bytes @ 0x3ffb8868 from task "main" on core 0 by: +[0.002990650] HEAP: Allocated 2500 bytes @ 0x3ffb8030 from task "main" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:231 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:86 (discriminator 2) -/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 10) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.002905675] HEAP: Allocated 340 bytes @ 0x3ffb926c from task "main" on core 0 by: +[0.003033925] HEAP: Allocated 340 bytes @ 0x3ffb8a34 from task "main" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:236 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:86 (discriminator 2) -/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 10) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.003040300] HEAP: Allocated 124 bytes @ 0x3ffb93d0 from task "alloc1" on core 0 by: +[0.003169150] HEAP: Allocated 124 bytes @ 0x3ffb8b98 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/queue.c:545 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:48 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.003093950] HEAP: Allocated 2500 bytes @ 0x3ffb9450 from task "alloc1" on core 0 by: +[0.003223850] HEAP: Allocated 2500 bytes @ 0x3ffb8c18 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:231 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:57 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.003128350] HEAP: Allocated 340 bytes @ 0x3ffb9e54 from task "alloc1" on core 0 by: +[0.003259400] HEAP: Allocated 340 bytes @ 0x3ffb961c from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:236 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:57 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.003223700] HEAP: Allocated 2 bytes @ 0x3ffb9fb8 from task "alloc1" on core 0 by: +[0.003355850] HEAP: Allocated 2 bytes @ 0x3ffb9780 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.003547175] HEAP: Allocated 8 bytes @ 0x3ffb8848 from task "main" on core 0 by: +[0.003754850] HEAP: Allocated 8 bytes @ 0x3ffb8010 from task "main" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:87 -/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 10) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.003600675] HEAP: Allocated 2500 bytes @ 0x3ffb9fd8 from task "main" on core 0 by: +[0.003820975] HEAP: Allocated 2500 bytes @ 0x3ffb97a0 from task "main" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:231 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:86 (discriminator 2) -/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 10) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.003639925] HEAP: Allocated 340 bytes @ 0x3ffba9dc from task "main" on core 0 by: +[0.003874025] HEAP: Allocated 340 bytes @ 0x3ffba1a4 from task "main" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:236 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:86 (discriminator 2) -/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 13) +/Users/erhan/dev/esp-idf/components/freertos/app_startup.c:209 (discriminator 10) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.003888100] HEAP: Allocated 124 bytes @ 0x3ffbab40 from task "alloc2" on core 0 by: +[0.004044725] HEAP: Allocated 124 bytes @ 0x3ffba308 from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/queue.c:545 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:48 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.003941825] HEAP: Allocated 2500 bytes @ 0x3ffbabc0 from task "alloc2" on core 0 by: +[0.004099675] HEAP: Allocated 2500 bytes @ 0x3ffba388 from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:231 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:57 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.003976225] HEAP: Allocated 340 bytes @ 0x3ffbb5c4 from task "alloc2" on core 0 by: +[0.004135150] HEAP: Allocated 340 bytes @ 0x3ffbad8c from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/freertos/heap_idf.c:58 /Users/erhan/dev/esp-idf/components/freertos/esp_additions/freertos_tasks_c_additions.h:236 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:57 /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.004075450] HEAP: Allocated 3 bytes @ 0x3ffb9fc8 from task "alloc2" on core 0 by: +[0.004235500] HEAP: Allocated 3 bytes @ 0x3ffb9790 from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.031912575] HEAP: Allocated 2 bytes @ 0x3ffbb728 from task "alloc0" on core 0 by: +[0.032626375] HEAP: Allocated 2 bytes @ 0x3ffbaef0 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.032912600] HEAP: Allocated 4 bytes @ 0x3ffbb738 from task "alloc1" on core 0 by: +[0.033637950] HEAP: Allocated 4 bytes @ 0x3ffbaf00 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.033912650] HEAP: Allocated 6 bytes @ 0x3ffbb748 from task "alloc2" on core 0 by: +[0.033930825] HEAP: Allocated 6 bytes @ 0x3ffbaf20 from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.061912575] HEAP: Allocated 3 bytes @ 0x3ffbb758 from task "alloc0" on core 0 by: +[0.062624900] HEAP: Allocated 3 bytes @ 0x3ffbaf10 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.062912575] HEAP: Allocated 6 bytes @ 0x3ffbb768 from task "alloc1" on core 0 by: +[0.063638000] HEAP: Allocated 6 bytes @ 0x3ffbaf30 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.063912650] HEAP: Allocated 9 bytes @ 0x3ffbb778 from task "alloc2" on core 0 by: +[0.063937325] HEAP: Allocated 9 bytes @ 0x3ffbaf50 from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.091912475] HEAP: Allocated 4 bytes @ 0x3ffbb788 from task "alloc0" on core 0 by: +[0.092625125] HEAP: Allocated 4 bytes @ 0x3ffbaf40 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.092912775] HEAP: Allocated 8 bytes @ 0x3ffbb798 from task "alloc1" on core 0 by: +[0.093638000] HEAP: Allocated 8 bytes @ 0x3ffbaf60 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.093912650] HEAP: Allocated 12 bytes @ 0x3ffbb7a8 from task "alloc2" on core 0 by: +[0.093933400] HEAP: Allocated 12 bytes @ 0x3ffbaf84 from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.121912575] HEAP: Allocated 5 bytes @ 0x3ffbb7b8 from task "alloc0" on core 0 by: +[0.122624900] HEAP: Allocated 5 bytes @ 0x3ffbaf70 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.122912575] HEAP: Allocated 10 bytes @ 0x3ffbb7c8 from task "alloc1" on core 0 by: +[0.123638125] HEAP: Allocated 10 bytes @ 0x3ffbaf94 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.123912650] HEAP: Allocated 15 bytes @ 0x3ffbb7d8 from task "alloc2" on core 0 by: +[0.123936825] HEAP: Allocated 15 bytes @ 0x3ffbafbc from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.151912650] HEAP: Allocated 6 bytes @ 0x3ffbb7ec from task "alloc0" on core 0 by: +[0.152625125] HEAP: Allocated 6 bytes @ 0x3ffbafa4 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.152912775] HEAP: Allocated 12 bytes @ 0x3ffbb7fc from task "alloc1" on core 0 by: +[0.153638000] HEAP: Allocated 12 bytes @ 0x3ffbafd0 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.153912650] HEAP: Allocated 18 bytes @ 0x3ffbb80c from task "alloc2" on core 0 by: +[0.153933400] HEAP: Allocated 18 bytes @ 0x3ffbaffc from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.181912575] HEAP: Allocated 7 bytes @ 0x3ffbb824 from task "alloc0" on core 0 by: +[0.182624900] HEAP: Allocated 7 bytes @ 0x3ffbafe0 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.182912575] HEAP: Allocated 14 bytes @ 0x3ffbb834 from task "alloc1" on core 0 by: +[0.183638125] HEAP: Allocated 14 bytes @ 0x3ffbb014 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.183912650] HEAP: Allocated 21 bytes @ 0x3ffbb848 from task "alloc2" on core 0 by: +[0.183936150] HEAP: Allocated 21 bytes @ 0x3ffbb048 from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.211912650] HEAP: Allocated 8 bytes @ 0x3ffbb864 from task "alloc0" on core 0 by: +[0.212626150] HEAP: Allocated 8 bytes @ 0x3ffbb028 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.212912775] HEAP: Allocated 16 bytes @ 0x3ffbb874 from task "alloc1" on core 0 by: +[0.213638000] HEAP: Allocated 16 bytes @ 0x3ffbb064 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.213912650] HEAP: Allocated 24 bytes @ 0x3ffbb888 from task "alloc2" on core 0 by: +[0.213933475] HEAP: Allocated 24 bytes @ 0x3ffbb09c from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.241912575] HEAP: Allocated 9 bytes @ 0x3ffbb8a4 from task "alloc0" on core 0 by: +[0.242624900] HEAP: Allocated 9 bytes @ 0x3ffbb038 from task "alloc0" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.242912575] HEAP: Allocated 18 bytes @ 0x3ffbb8b4 from task "alloc1" on core 0 by: +[0.243625050] HEAP: Allocated 18 bytes @ 0x3ffbb078 from task "alloc1" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 -[0.243912650] HEAP: Allocated 27 bytes @ 0x3ffbb8cc from task "alloc2" on core 0 by: +[0.245626225] HEAP: Allocated 27 bytes @ 0x3ffbb0b8 from task "alloc2" on core 0 by: /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:84 /Users/erhan/dev/esp-idf/components/heap/heap_caps.c:110 -/Users/erhan/dev/esp-idf/components/newlib/heap.c:25 +/Users/erhan/dev/esp-idf/components/newlib/src/heap.c:25 /Users/erhan/dev/esp-idf/examples/system/sysview_tracing_heap_log/main/sysview_heap_log.c:59 (discriminator 1) /Users/erhan/dev/esp-idf/components/freertos/FreeRTOS-Kernel/portable/xtensa/port.c:141 diff --git a/tools/esp_app_trace/test/sysview/expected_output_mcore.json b/tools/esp_app_trace/test/sysview/expected_output_mcore.json index 5cc8728b17..c3e5325b94 100644 --- a/tools/esp_app_trace/test/sysview/expected_output_mcore.json +++ b/tools/esp_app_trace/test/sysview/expected_output_mcore.json @@ -3,6 +3,94 @@ { "core_id": 0, "ctx_name": "IDLE1", + "id": 0, + "in_irq": false, + "params": {}, + "ts": 0 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 0, + "in_irq": false, + "params": {}, + "ts": 0 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 0, + "in_irq": false, + "params": {}, + "ts": 0 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 0, + "in_irq": false, + "params": {}, + "ts": 0 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 0, + "in_irq": false, + "params": {}, + "ts": 0 + }, + { + "core_id": 0, + "ctx_name": "IDLE1", + "id": 10, + "in_irq": false, + "params": {}, + "ts": 0 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 0, + "in_irq": false, + "params": {}, + "ts": 0 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 0, + "in_irq": false, + "params": {}, + "ts": 0 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 0, + "in_irq": false, + "params": {}, + "ts": 0 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 0, + "in_irq": false, + "params": {}, + "ts": 0 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 0, + "in_irq": false, + "params": {}, + "ts": 0 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", "id": 10, "in_irq": false, "params": {}, @@ -19,7 +107,20 @@ "ram_base": 1061158912, "sys_freq": 40000000 }, - "ts": 6.625e-06 + "ts": 6.65e-06 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 24, + "in_irq": false, + "params": { + "cpu_freq": 160000000, + "id_shift": 0, + "ram_base": 1061158912, + "sys_freq": 40000000 + }, + "ts": 6.65e-06 }, { "core_id": 0, @@ -29,7 +130,17 @@ "params": { "desc": "N=FreeRTOS Application,D=esp32,C=xtensa,O=FreeRTOS" }, - "ts": 1.855e-05 + "ts": 1.86e-05 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "N=FreeRTOS Application,D=esp32,C=xtensa,O=FreeRTOS" + }, + "ts": 1.86e-05 }, { "core_id": 0, @@ -39,7 +150,17 @@ "params": { "desc": "I#5=SysTick" }, - "ts": 2.7675e-05 + "ts": 2.775e-05 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#5=SysTick" + }, + "ts": 2.775e-05 }, { "core_id": 0, @@ -49,7 +170,17 @@ "params": { "desc": "I#6=WIFI_MAC" }, - "ts": 4.9775e-05 + "ts": 4.59e-05 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#6=WIFI_MAC" + }, + "ts": 4.59e-05 }, { "core_id": 0, @@ -59,7 +190,17 @@ "params": { "desc": "I#7=WIFI_NMI" }, - "ts": 6.3875e-05 + "ts": 6.0025e-05 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#7=WIFI_NMI" + }, + "ts": 6.0025e-05 }, { "core_id": 0, @@ -69,7 +210,17 @@ "params": { "desc": "I#8=WIFI_BB" }, - "ts": 7.38e-05 + "ts": 6.9975e-05 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#8=WIFI_BB" + }, + "ts": 6.9975e-05 }, { "core_id": 0, @@ -79,7 +230,17 @@ "params": { "desc": "I#9=BT_MAC" }, - "ts": 8.75e-05 + "ts": 7.9725e-05 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#9=BT_MAC" + }, + "ts": 7.9725e-05 }, { "core_id": 0, @@ -89,7 +250,17 @@ "params": { "desc": "I#10=BT_BB" }, - "ts": 0.00010155 + "ts": 9.38e-05 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#10=BT_BB" + }, + "ts": 9.38e-05 }, { "core_id": 0, @@ -99,7 +270,17 @@ "params": { "desc": "I#11=BT_BB_NMI" }, - "ts": 0.000112375 + "ts": 0.0001086 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#11=BT_BB_NMI" + }, + "ts": 0.0001086 }, { "core_id": 0, @@ -109,7 +290,17 @@ "params": { "desc": "I#12=RWBT" }, - "ts": 0.0001223 + "ts": 0.00011855 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#12=RWBT" + }, + "ts": 0.00011855 }, { "core_id": 0, @@ -119,7 +310,17 @@ "params": { "desc": "I#13=RWBLE" }, - "ts": 0.000132275 + "ts": 0.00012855 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#13=RWBLE" + }, + "ts": 0.00012855 }, { "core_id": 0, @@ -129,7 +330,17 @@ "params": { "desc": "I#14=RWBT_NMI" }, - "ts": 0.0001468 + "ts": 0.000143075 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#14=RWBT_NMI" + }, + "ts": 0.000143075 }, { "core_id": 0, @@ -139,7 +350,17 @@ "params": { "desc": "I#15=RWBLE_NMI" }, - "ts": 0.0001576 + "ts": 0.0001539 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#15=RWBLE_NMI" + }, + "ts": 0.0001539 }, { "core_id": 0, @@ -149,7 +370,17 @@ "params": { "desc": "I#16=SLC0" }, - "ts": 0.000171875 + "ts": 0.0001682 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#16=SLC0" + }, + "ts": 0.0001682 }, { "core_id": 0, @@ -159,7 +390,17 @@ "params": { "desc": "I#17=SLC1" }, - "ts": 0.000189525 + "ts": 0.000181925 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#17=SLC1" + }, + "ts": 0.000181925 }, { "core_id": 0, @@ -169,7 +410,17 @@ "params": { "desc": "I#18=UHCI0" }, - "ts": 0.00019965 + "ts": 0.000195875 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#18=UHCI0" + }, + "ts": 0.000195875 }, { "core_id": 0, @@ -179,7 +430,17 @@ "params": { "desc": "I#19=UHCI1" }, - "ts": 0.0002096 + "ts": 0.00020585 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#19=UHCI1" + }, + "ts": 0.00020585 }, { "core_id": 0, @@ -189,7 +450,17 @@ "params": { "desc": "I#20=TG0_T0_LEVEL" }, - "ts": 0.000224875 + "ts": 0.00022115 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#20=TG0_T0_LEVEL" + }, + "ts": 0.00022115 }, { "core_id": 0, @@ -199,7 +470,17 @@ "params": { "desc": "I#21=TG0_T1_LEVEL" }, - "ts": 0.000236275 + "ts": 0.000232575 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#21=TG0_T1_LEVEL" + }, + "ts": 0.000232575 }, { "core_id": 0, @@ -209,7 +490,17 @@ "params": { "desc": "I#22=TG0_WDT_LEVEL" }, - "ts": 0.000251975 + "ts": 0.000248275 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#22=TG0_WDT_LEVEL" + }, + "ts": 0.000248275 }, { "core_id": 0, @@ -219,7 +510,17 @@ "params": { "desc": "I#23=TG0_LACT_LEVEL" }, - "ts": 0.00026375 + "ts": 0.000260075 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#23=TG0_LACT_LEVEL" + }, + "ts": 0.000260075 }, { "core_id": 0, @@ -229,7 +530,17 @@ "params": { "desc": "I#24=TG1_T0_LEVEL" }, - "ts": 0.00027915 + "ts": 0.000275525 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#24=TG1_T0_LEVEL" + }, + "ts": 0.000275525 }, { "core_id": 0, @@ -239,7 +550,17 @@ "params": { "desc": "I#25=TG1_T1_LEVEL" }, - "ts": 0.00029455 + "ts": 0.000287 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#25=TG1_T1_LEVEL" + }, + "ts": 0.000287 }, { "core_id": 0, @@ -249,7 +570,17 @@ "params": { "desc": "I#26=TG1_WDT_LEVEL" }, - "ts": 0.000310125 + "ts": 0.000306525 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#26=TG1_WDT_LEVEL" + }, + "ts": 0.000306525 }, { "core_id": 0, @@ -259,7 +590,17 @@ "params": { "desc": "I#27=TG1_LACT_LEVEL" }, - "ts": 0.000322075 + "ts": 0.0003185 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#27=TG1_LACT_LEVEL" + }, + "ts": 0.0003185 }, { "core_id": 0, @@ -269,7 +610,17 @@ "params": { "desc": "I#28=GPIO" }, - "ts": 0.000331975 + "ts": 0.000328425 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#28=GPIO" + }, + "ts": 0.000328425 }, { "core_id": 0, @@ -279,7 +630,17 @@ "params": { "desc": "I#29=GPIO_NMI" }, - "ts": 0.0003509 + "ts": 0.000347375 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#29=GPIO_NMI" + }, + "ts": 0.000347375 }, { "core_id": 0, @@ -289,7 +650,17 @@ "params": { "desc": "I#30=FROM_CPU0" }, - "ts": 0.0003618 + "ts": 0.000358275 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#30=FROM_CPU0" + }, + "ts": 0.000358275 }, { "core_id": 0, @@ -299,7 +670,17 @@ "params": { "desc": "I#31=FROM_CPU1" }, - "ts": 0.0003765 + "ts": 0.000369025 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#31=FROM_CPU1" + }, + "ts": 0.000369025 }, { "core_id": 0, @@ -309,7 +690,17 @@ "params": { "desc": "I#32=FROM_CPU2" }, - "ts": 0.0003873 + "ts": 0.0003838 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#32=FROM_CPU2" + }, + "ts": 0.0003838 }, { "core_id": 0, @@ -319,7 +710,17 @@ "params": { "desc": "I#33=FROM_CPU3" }, - "ts": 0.000402 + "ts": 0.00039455 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#33=FROM_CPU3" + }, + "ts": 0.00039455 }, { "core_id": 0, @@ -329,7 +730,17 @@ "params": { "desc": "I#34=SPI0" }, - "ts": 0.00041575 + "ts": 0.000408325 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#34=SPI0" + }, + "ts": 0.000408325 }, { "core_id": 0, @@ -339,7 +750,17 @@ "params": { "desc": "I#35=SPI1" }, - "ts": 0.0004255 + "ts": 0.00042205 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#35=SPI1" + }, + "ts": 0.00042205 }, { "core_id": 0, @@ -349,7 +770,17 @@ "params": { "desc": "I#36=SPI2" }, - "ts": 0.000435275 + "ts": 0.00043185 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#36=SPI2" + }, + "ts": 0.00043185 }, { "core_id": 0, @@ -359,7 +790,17 @@ "params": { "desc": "I#37=SPI3" }, - "ts": 0.000445025 + "ts": 0.000441625 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#37=SPI3" + }, + "ts": 0.000441625 }, { "core_id": 0, @@ -369,7 +810,17 @@ "params": { "desc": "I#38=I2S0" }, - "ts": 0.000458825 + "ts": 0.0004528 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#38=I2S0" + }, + "ts": 0.0004528 }, { "core_id": 0, @@ -379,7 +830,17 @@ "params": { "desc": "I#39=I2S1" }, - "ts": 0.000468575 + "ts": 0.000468025 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#39=I2S1" + }, + "ts": 0.000468025 }, { "core_id": 0, @@ -389,7 +850,17 @@ "params": { "desc": "I#40=UART0" }, - "ts": 0.000478575 + "ts": 0.00047925 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#40=UART0" + }, + "ts": 0.00047925 }, { "core_id": 0, @@ -399,7 +870,17 @@ "params": { "desc": "I#41=UART1" }, - "ts": 0.0004925 + "ts": 0.000490675 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#41=UART1" + }, + "ts": 0.000490675 }, { "core_id": 0, @@ -409,7 +890,17 @@ "params": { "desc": "I#42=UART2" }, - "ts": 0.000506375 + "ts": 0.000506125 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#42=UART2" + }, + "ts": 0.000506125 }, { "core_id": 0, @@ -419,7 +910,17 @@ "params": { "desc": "I#43=SDIO_HOST" }, - "ts": 0.000517125 + "ts": 0.0005224 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#43=SDIO_HOST" + }, + "ts": 0.0005224 }, { "core_id": 0, @@ -429,7 +930,17 @@ "params": { "desc": "I#44=ETH_MAC" }, - "ts": 0.000527475 + "ts": 0.000534425 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#44=ETH_MAC" + }, + "ts": 0.000534425 }, { "core_id": 0, @@ -439,7 +950,17 @@ "params": { "desc": "I#45=PWM0" }, - "ts": 0.0005416 + "ts": 0.000550275 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#45=PWM0" + }, + "ts": 0.000550275 }, { "core_id": 0, @@ -449,7 +970,17 @@ "params": { "desc": "I#46=PWM1" }, - "ts": 0.0005553 + "ts": 0.000565375 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#46=PWM1" + }, + "ts": 0.000565375 }, { "core_id": 0, @@ -459,7 +990,17 @@ "params": { "desc": "I#47=RESERVED" }, - "ts": 0.00056595 + "ts": 0.000577225 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#47=RESERVED" + }, + "ts": 0.000577225 }, { "core_id": 0, @@ -469,7 +1010,17 @@ "params": { "desc": "I#48=RESERVED" }, - "ts": 0.00057655 + "ts": 0.000589025 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#48=RESERVED" + }, + "ts": 0.000589025 }, { "core_id": 0, @@ -479,7 +1030,17 @@ "params": { "desc": "I#49=LEDC" }, - "ts": 0.000590325 + "ts": 0.00060005 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#49=LEDC" + }, + "ts": 0.00060005 }, { "core_id": 0, @@ -489,7 +1050,17 @@ "params": { "desc": "I#50=EFUSE" }, - "ts": 0.000604225 + "ts": 0.000619275 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#50=EFUSE" + }, + "ts": 0.000619275 }, { "core_id": 0, @@ -499,7 +1070,17 @@ "params": { "desc": "I#51=TWAI" }, - "ts": 0.000618075 + "ts": 0.000630775 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#51=TWAI" + }, + "ts": 0.000630775 }, { "core_id": 0, @@ -509,7 +1090,17 @@ "params": { "desc": "I#52=RTC_CORE" }, - "ts": 0.00062865 + "ts": 0.00064665 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#52=RTC_CORE" + }, + "ts": 0.00064665 }, { "core_id": 0, @@ -519,7 +1110,17 @@ "params": { "desc": "I#53=RMT" }, - "ts": 0.000638225 + "ts": 0.000657625 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#53=RMT" + }, + "ts": 0.000657625 }, { "core_id": 0, @@ -529,7 +1130,17 @@ "params": { "desc": "I#54=PCNT" }, - "ts": 0.000648075 + "ts": 0.00066885 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#54=PCNT" + }, + "ts": 0.00066885 }, { "core_id": 0, @@ -539,7 +1150,17 @@ "params": { "desc": "I#55=I2C_EXT0" }, - "ts": 0.00066305 + "ts": 0.000685 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#55=I2C_EXT0" + }, + "ts": 0.000685 }, { "core_id": 0, @@ -549,7 +1170,17 @@ "params": { "desc": "I#56=I2C_EXT1" }, - "ts": 0.0006752 + "ts": 0.000696775 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#56=I2C_EXT1" + }, + "ts": 0.000696775 }, { "core_id": 0, @@ -559,7 +1190,17 @@ "params": { "desc": "I#57=RSA" }, - "ts": 0.000690175 + "ts": 0.000707625 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#57=RSA" + }, + "ts": 0.000707625 }, { "core_id": 0, @@ -569,7 +1210,17 @@ "params": { "desc": "I#58=SPI1_DMA" }, - "ts": 0.0007059 + "ts": 0.000723625 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#58=SPI1_DMA" + }, + "ts": 0.000723625 }, { "core_id": 0, @@ -579,7 +1230,17 @@ "params": { "desc": "I#59=SPI2_DMA" }, - "ts": 0.000718025 + "ts": 0.0007398 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#59=SPI2_DMA" + }, + "ts": 0.0007398 }, { "core_id": 0, @@ -589,7 +1250,17 @@ "params": { "desc": "I#60=SPI3_DMA" }, - "ts": 0.000730375 + "ts": 0.000752125 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#60=SPI3_DMA" + }, + "ts": 0.000752125 }, { "core_id": 0, @@ -599,7 +1270,17 @@ "params": { "desc": "I#61=WDT" }, - "ts": 0.0007413 + "ts": 0.000763075 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#61=WDT" + }, + "ts": 0.000763075 }, { "core_id": 0, @@ -609,7 +1290,17 @@ "params": { "desc": "I#62=TIMER1" }, - "ts": 0.00076165 + "ts": 0.000783475 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#62=TIMER1" + }, + "ts": 0.000783475 }, { "core_id": 0, @@ -619,7 +1310,17 @@ "params": { "desc": "I#63=TIMER2" }, - "ts": 0.000773525 + "ts": 0.000795 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#63=TIMER2" + }, + "ts": 0.000795 }, { "core_id": 0, @@ -629,7 +1330,17 @@ "params": { "desc": "I#64=TG0_T0_EDGE" }, - "ts": 0.000786275 + "ts": 0.000808 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#64=TG0_T0_EDGE" + }, + "ts": 0.000808 }, { "core_id": 0, @@ -639,7 +1350,17 @@ "params": { "desc": "I#65=TG0_T1_EDGE" }, - "ts": 0.000806925 + "ts": 0.0008249 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#65=TG0_T1_EDGE" + }, + "ts": 0.0008249 }, { "core_id": 0, @@ -649,7 +1370,17 @@ "params": { "desc": "I#66=TG0_WDT_EDGE" }, - "ts": 0.00081995 + "ts": 0.00084165 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#66=TG0_WDT_EDGE" + }, + "ts": 0.00084165 }, { "core_id": 0, @@ -659,7 +1390,17 @@ "params": { "desc": "I#67=TG0_LACT_EDGE" }, - "ts": 0.000837025 + "ts": 0.000858925 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#67=TG0_LACT_EDGE" + }, + "ts": 0.000858925 }, { "core_id": 0, @@ -669,7 +1410,17 @@ "params": { "desc": "I#68=TG1_T0_EDGE" }, - "ts": 0.000850025 + "ts": 0.00087175 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#68=TG1_T0_EDGE" + }, + "ts": 0.00087175 }, { "core_id": 0, @@ -679,7 +1430,17 @@ "params": { "desc": "I#69=TG1_T1_EDGE" }, - "ts": 0.000863125 + "ts": 0.0008844 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#69=TG1_T1_EDGE" + }, + "ts": 0.0008844 }, { "core_id": 0, @@ -689,7 +1450,17 @@ "params": { "desc": "I#70=TG1_WDT_EDGE" }, - "ts": 0.000880425 + "ts": 0.00090155 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#70=TG1_WDT_EDGE" + }, + "ts": 0.00090155 }, { "core_id": 0, @@ -699,7 +1470,17 @@ "params": { "desc": "I#71=TG1_LACT_EDGE" }, - "ts": 0.00089375 + "ts": 0.00091485 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#71=TG1_LACT_EDGE" + }, + "ts": 0.00091485 }, { "core_id": 0, @@ -709,7 +1490,17 @@ "params": { "desc": "I#72=MMU_IA" }, - "ts": 0.00090935 + "ts": 0.00093035 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#72=MMU_IA" + }, + "ts": 0.00093035 }, { "core_id": 0, @@ -719,7 +1510,17 @@ "params": { "desc": "I#73=MPU_IA" }, - "ts": 0.000925 + "ts": 0.000941925 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#73=MPU_IA" + }, + "ts": 0.000941925 }, { "core_id": 0, @@ -729,17 +1530,37 @@ "params": { "desc": "I#74=CACHE_IA" }, - "ts": 0.000937125 + "ts": 0.00095815 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 14, + "in_irq": false, + "params": { + "desc": "I#74=CACHE_IA" + }, + "ts": 0.00095815 }, { "core_id": 0, "ctx_name": "IDLE1", - "id": 13, + "id": 12, "in_irq": false, "params": { - "time": 10000 + "cycles": 2739609 }, - "ts": 0.0009454 + "ts": 0.00096865 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 12, + "in_irq": false, + "params": { + "cycles": 2739609 + }, + "ts": 0.00096865 }, { "core_id": 0, @@ -749,9 +1570,21 @@ "params": { "name": "ipc0", "prio": 24, - "tid": 12253204 + "tid": 12252316 }, - "ts": 0.0010603 + "ts": 0.0010845 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 9, + "in_irq": false, + "params": { + "name": "ipc0", + "prio": 24, + "tid": 12252316 + }, + "ts": 0.0010845 }, { "core_id": 0, @@ -759,12 +1592,25 @@ "id": 21, "in_irq": false, "params": { - "base": 1073410064, - "sz": 1344, - "tid": 12253204, + "base": 1073409176, + "sz": 1352, + "tid": 12252316, "unused": 0 }, - "ts": 0.00106555 + "ts": 0.001089775 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 21, + "in_irq": false, + "params": { + "base": 1073409176, + "sz": 1352, + "tid": 12252316, + "unused": 0 + }, + "ts": 0.001089775 }, { "core_id": 0, @@ -774,9 +1620,21 @@ "params": { "name": "ipc1", "prio": 24, - "tid": 12253560 + "tid": 12254724 }, - "ts": 0.00117445 + "ts": 0.00119535 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 9, + "in_irq": false, + "params": { + "name": "ipc1", + "prio": 24, + "tid": 12254724 + }, + "ts": 0.00119535 }, { "core_id": 0, @@ -784,12 +1642,25 @@ "id": 21, "in_irq": false, "params": { - "base": 1073431024, + "base": 1073411584, "sz": 1344, - "tid": 12253560, + "tid": 12254724, "unused": 0 }, - "ts": 0.001179775 + "ts": 0.0012008 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 21, + "in_irq": false, + "params": { + "base": 1073411584, + "sz": 1344, + "tid": 12254724, + "unused": 0 + }, + "ts": 0.0012008 }, { "core_id": 0, @@ -799,9 +1670,21 @@ "params": { "name": "main", "prio": 1, - "tid": 12254080 + "tid": 12274964 }, - "ts": 0.001331775 + "ts": 0.001388725 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 9, + "in_irq": false, + "params": { + "name": "main", + "prio": 1, + "tid": 12274964 + }, + "ts": 0.001388725 }, { "core_id": 0, @@ -809,12 +1692,25 @@ "id": 21, "in_irq": false, "params": { - "base": 1073433076, - "sz": 1916, - "tid": 12254080, + "base": 1073429776, + "sz": 2400, + "tid": 12274964, "unused": 0 }, - "ts": 0.00133715 + "ts": 0.001394 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 21, + "in_irq": false, + "params": { + "base": 1073429776, + "sz": 2400, + "tid": 12274964, + "unused": 0 + }, + "ts": 0.001394 }, { "core_id": 0, @@ -824,7 +1720,17 @@ "params": { "mod_cnt": 0 }, - "ts": 0.00134445 + "ts": 0.001401225 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 27, + "in_irq": false, + "params": { + "mod_cnt": 0 + }, + "ts": 0.001401225 }, { "core_id": 1, @@ -834,7 +1740,7 @@ "params": { "irq_num": 5 }, - "ts": 0.001351275 + "ts": 0.001407975 }, { "core_id": 0, @@ -844,7 +1750,7 @@ "params": { "irq_num": 5 }, - "ts": 0.00136285 + "ts": 0.0014197 }, { "core_id": 1, @@ -852,7 +1758,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0013738 + "ts": 0.001430725 }, { "core_id": 0, @@ -860,9 +1766,19 @@ "id": 6, "in_irq": true, "params": { - "tid": 12254080 + "tid": 12274964 }, - "ts": 0.00138475 + "ts": 0.001441675 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274964 + }, + "ts": 0.001441675 }, { "core_id": 0, @@ -870,7 +1786,7 @@ "id": 3, "in_irq": false, "params": {}, - "ts": 0.00139985 + "ts": 0.00145695 }, { "core_id": 1, @@ -878,7 +1794,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.00141065 + "ts": 0.001467975 }, { "core_id": 0, @@ -888,7 +1804,17 @@ "params": { "irq_num": 30 }, - "ts": 0.001422175 + "ts": 0.001479225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.001490125 }, { "core_id": 0, @@ -896,7 +1822,15 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.001433675 + "ts": 0.001501375 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.001512375 }, { "core_id": 0, @@ -904,9 +1838,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12254080 + "tid": 12274964 }, - "ts": 0.001450025 + "ts": 0.001523775 }, { "core_id": 0, @@ -918,17 +1852,55 @@ "evt_off": 512, "mod_id": 0 }, - "ts": 0.0014769 + "ts": 0.0015543 }, { - "addr": "0x3ffb70d8", + "core_id": 1, + "ctx_name": "IDLE1", + "id": 22, + "in_irq": false, + "params": { + "desc": "M=ESP32 SystemView Heap Tracing Module", + "evt_off": 512, + "mod_id": 0 + }, + "ts": 0.0015543 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.001566225 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.00157755 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 3, + "in_irq": false, + "params": {}, + "ts": 0.00159325 + }, + { + "addr": "0x3ffb68a0", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6bef", - "0x400e693b", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3caf", + "0x400e3898", + "0x400880dc", "0x0", "0x0", "0x0", @@ -939,61 +1911,17 @@ "id": 512, "in_irq": false, "size": 8, - "ts": 0.001532525 + "ts": 0.0016508 }, { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.001666425 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.00167985 - }, - { - "core_id": 1, - "ctx_name": "IDLE1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.001696525 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.00183355 - }, - { - "core_id": 0, - "ctx_name": "main", - "id": 3, - "in_irq": false, - "params": {}, - "ts": 0.001848925 - }, - { - "addr": "0x3ffb70e8", + "addr": "0x3ffb68b0", "callers": [ - "0x40081fef", - "0x40089414", - "0x4008b304", - "0x400d6c38", - "0x400e693b", - "0x40088d94", + "0x40081eff", + "0x40088720", + "0x4008a610", + "0x400d3cf8", + "0x400e3898", + "0x400880dc", "0x0", "0x0", "0x0", @@ -1004,17 +1932,17 @@ "id": 512, "in_irq": false, "size": 2500, - "ts": 0.001870025 + "ts": 0.00195255 }, { - "addr": "0x3ffb7aec", + "addr": "0x3ffb72b4", "callers": [ - "0x40081fef", - "0x40089414", - "0x4008b30f", - "0x400d6c38", - "0x400e693b", - "0x40088d94", + "0x40081eff", + "0x40088720", + "0x4008a61b", + "0x400d3cf8", + "0x400e3898", + "0x400880dc", "0x0", "0x0", "0x0", @@ -1025,7 +1953,7 @@ "id": 512, "in_irq": false, "size": 340, - "ts": 0.001909875 + "ts": 0.00199345 }, { "core_id": 0, @@ -1033,9 +1961,9 @@ "id": 8, "in_irq": false, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.00193255 + "ts": 0.002024125 }, { "core_id": 0, @@ -1045,9 +1973,21 @@ "params": { "name": "alloc0", "prio": 5, - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.001945175 + "ts": 0.002036775 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 9, + "in_irq": false, + "params": { + "name": "alloc0", + "prio": 5, + "tid": 12284596 + }, + "ts": 0.002036775 }, { "core_id": 0, @@ -1055,12 +1995,25 @@ "id": 21, "in_irq": false, "params": { - "base": 1073443048, - "sz": 4294965096, - "tid": 12286700, + "base": 1073440944, + "sz": 4294965088, + "tid": 12284596, "unused": 0 }, - "ts": 0.001954275 + "ts": 0.0020459 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 21, + "in_irq": false, + "params": { + "base": 1073440944, + "sz": 4294965088, + "tid": 12284596, + "unused": 0 + }, + "ts": 0.0020459 }, { "core_id": 0, @@ -1068,9 +2021,19 @@ "id": 6, "in_irq": false, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.001964975 + "ts": 0.002056625 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12284596 + }, + "ts": 0.002056625 }, { "core_id": 0, @@ -1080,7 +2043,7 @@ "params": { "irq_num": 30 }, - "ts": 0.001980675 + "ts": 0.002072325 }, { "core_id": 0, @@ -1088,7 +2051,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.001992175 + "ts": 0.002083675 }, { "core_id": 0, @@ -1096,18 +2059,18 @@ "id": 4, "in_irq": false, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.00200865 + "ts": 0.002100025 }, { - "addr": "0x3ffb7c50", + "addr": "0x3ffb7418", "callers": [ - "0x40081fef", - "0x40089414", - "0x40088679", - "0x400d6aa4", - "0x40088d94", + "0x40081eff", + "0x40088720", + "0x400879c1", + "0x400d3b64", + "0x400880dc", "0x0", "0x0", "0x0", @@ -1119,7 +2082,7 @@ "id": 512, "in_irq": false, "size": 124, - "ts": 0.002044025 + "ts": 0.002144425 }, { "core_id": 0, @@ -1131,16 +2094,16 @@ "uxItemSize": 4, "uxQueueLength": 10 }, - "ts": 0.002058325 + "ts": 0.002158725 }, { - "addr": "0x3ffb7cd0", + "addr": "0x3ffb7498", "callers": [ - "0x40081fef", - "0x40089414", - "0x4008b304", - "0x400d6ae0", - "0x40088d94", + "0x40081eff", + "0x40088720", + "0x4008a610", + "0x400d3ba0", + "0x400880dc", "0x0", "0x0", "0x0", @@ -1152,16 +2115,16 @@ "id": 512, "in_irq": false, "size": 2500, - "ts": 0.00211355 + "ts": 0.00221895 }, { - "addr": "0x3ffb86d4", + "addr": "0x3ffb7e9c", "callers": [ - "0x40081fef", - "0x40089414", - "0x4008b30f", - "0x400d6ae0", - "0x40088d94", + "0x40081eff", + "0x40088720", + "0x4008a61b", + "0x400d3ba0", + "0x400880dc", "0x0", "0x0", "0x0", @@ -1173,7 +2136,7 @@ "id": 512, "in_irq": false, "size": 340, - "ts": 0.00214795 + "ts": 0.0022544 }, { "core_id": 0, @@ -1181,9 +2144,9 @@ "id": 8, "in_irq": false, "params": { - "tid": 12289748 + "tid": 12287644 }, - "ts": 0.00217465 + "ts": 0.0022811 }, { "core_id": 0, @@ -1193,9 +2156,21 @@ "params": { "name": "free0", "prio": 5, - "tid": 12289748 + "tid": 12287644 }, - "ts": 0.00218715 + "ts": 0.002293625 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 9, + "in_irq": false, + "params": { + "name": "free0", + "prio": 5, + "tid": 12287644 + }, + "ts": 0.002293625 }, { "core_id": 0, @@ -1203,12 +2178,25 @@ "id": 21, "in_irq": false, "params": { - "base": 1073446096, - "sz": 4294965088, - "tid": 12289748, + "base": 1073443992, + "sz": 4294965096, + "tid": 12287644, "unused": 0 }, - "ts": 0.0021963 + "ts": 0.0023028 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 21, + "in_irq": false, + "params": { + "base": 1073443992, + "sz": 4294965096, + "tid": 12287644, + "unused": 0 + }, + "ts": 0.0023028 }, { "core_id": 0, @@ -1216,9 +2204,19 @@ "id": 6, "in_irq": false, "params": { - "tid": 12289748 + "tid": 12287644 }, - "ts": 0.002207125 + "ts": 0.00231365 + }, + { + "core_id": 1, + "ctx_name": "IDLE1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12287644 + }, + "ts": 0.00231365 }, { "core_id": 1, @@ -1228,7 +2226,7 @@ "params": { "irq_num": 31 }, - "ts": 0.0022225 + "ts": 0.002329 }, { "core_id": 1, @@ -1236,16 +2234,16 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0022354 + "ts": 0.002342325 }, { - "addr": "0x3ffb8838", + "addr": "0x3ffb8000", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -1257,7 +2255,7 @@ "id": 512, "in_irq": false, "size": 1, - "ts": 0.0022518 + "ts": 0.002359325 }, { "core_id": 1, @@ -1265,9 +2263,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12289748 + "tid": 12287644 }, - "ts": 0.0022631 + "ts": 0.00237075 }, { "core_id": 1, @@ -1277,16 +2275,16 @@ "params": { "irq_num": 31 }, - "ts": 0.002293125 + "ts": 0.002400875 }, { - "addr": "0x3ffb8848", + "addr": "0x3ffb8010", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -1298,7 +2296,7 @@ "id": 512, "in_irq": false, "size": 2, - "ts": 0.00230405 + "ts": 0.002412175 }, { "core_id": 1, @@ -1306,7 +2304,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.002315125 + "ts": 0.00242375 }, { "core_id": 0, @@ -1316,10 +2314,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.002327775 + "ts": 0.002436 }, { "core_id": 1, @@ -1327,99 +2325,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.002338225 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12283904, - "xTicksToWait": 0 - }, - "ts": 0.0023724 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (310) example: Task[0x3ffb7aec]: allocated 2 bytes @ 0x3ffb8848\n", - "ts": 0.002611675 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (310) example: Task[0x3ffb7aec]: allocated 2 bytes @ 0x3ffb8848\n", - "ts": 0.002611675 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12287056, - "xTicksToWait": 0 - }, - "ts": 0.00263325 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 6, - "in_irq": false, - "params": { - "tid": 12289748 - }, - "ts": 0.002646375 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.002662575 - }, - { - "core_id": 0, - "ctx_name": "alloc0", - "id": 34, - "in_irq": false, - "params": { - "xTicksToDelay": 30 - }, - "ts": 0.00267345 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.002684225 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.0026984 + "ts": 0.002447 }, { "core_id": 1, @@ -1429,7 +2335,153 @@ "params": { "irq_num": 5 }, - "ts": 0.00270915 + "ts": 0.002462975 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.002476525 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12281672, + "xTicksToWait": 0 + }, + "ts": 0.002487925 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.002499075 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (297) example: Task[0x3ffb72b4]: allocated 2 bytes @ 0x3ffb8010\n", + "ts": 0.00274865 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (297) example: Task[0x3ffb72b4]: allocated 2 bytes @ 0x3ffb8010\n", + "ts": 0.00274865 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.002765925 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 3, + "in_irq": false, + "params": {}, + "ts": 0.0027813 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12284952, + "xTicksToWait": 0 + }, + "ts": 0.00279535 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12287644 + }, + "ts": 0.00280855 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12287644 + }, + "ts": 0.00280855 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.0028248 + }, + { + "core_id": 0, + "ctx_name": "alloc0", + "id": 34, + "in_irq": false, + "params": { + "xTicksToDelay": 30 + }, + "ts": 0.00283575 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.00284645 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.002860225 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 4, + "in_irq": false, + "params": { + "tid": 12287644 + }, + "ts": 0.002870975 }, { "core_id": 0, @@ -1437,35 +2489,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.002720075 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.002731625 - }, - { - "core_id": 0, - "ctx_name": "main", - "id": 4, - "in_irq": false, - "params": { - "tid": 12254080 - }, - "ts": 0.0027421 - }, - { - "core_id": 1, - "ctx_name": "free0", - "id": 4, - "in_irq": false, - "params": { - "tid": 12289748 - }, - "ts": 0.0027596 + "ts": 0.002881775 }, { "core_id": 1, @@ -1475,20 +2499,30 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12287056, + "xQueue": 12284952, "xTicksToWait": 4294967295 }, - "ts": 0.00277655 + "ts": 0.002893725 }, { - "addr": "0x3ffb8858", + "core_id": 0, + "ctx_name": "main", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274964 + }, + "ts": 0.00290445 + }, + { + "addr": "0x3ffb8020", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6bef", - "0x400e693b", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3caf", + "0x400e3898", + "0x400880dc", "0x0", "0x0", "0x0", @@ -1499,7 +2533,7 @@ "id": 512, "in_irq": false, "size": 8, - "ts": 0.00278805 + "ts": 0.00294385 }, { "core_id": 1, @@ -1509,38 +2543,20 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.002824 + "ts": 0.002956 }, { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.002835875 - }, - { - "core_id": 0, - "ctx_name": "main", - "id": 3, - "in_irq": false, - "params": {}, - "ts": 0.00285125 - }, - { - "addr": "0x3ffb8868", + "addr": "0x3ffb8030", "callers": [ - "0x40081fef", - "0x40089414", - "0x4008b304", - "0x400d6c38", - "0x400e693b", - "0x40088d94", + "0x40081eff", + "0x40088720", + "0x4008a610", + "0x400d3cf8", + "0x400e3898", + "0x400880dc", "0x0", "0x0", "0x0", @@ -1551,7 +2567,7 @@ "id": 512, "in_irq": false, "size": 2500, - "ts": 0.002863625 + "ts": 0.00299065 }, { "core_id": 1, @@ -1561,20 +2577,20 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.002878375 + "ts": 0.003010625 }, { - "addr": "0x3ffb926c", + "addr": "0x3ffb8a34", "callers": [ - "0x40081fef", - "0x40089414", - "0x4008b30f", - "0x400d6c38", - "0x400e693b", - "0x40088d94", + "0x40081eff", + "0x40088720", + "0x4008a61b", + "0x400d3cf8", + "0x400e3898", + "0x400880dc", "0x0", "0x0", "0x0", @@ -1585,7 +2601,7 @@ "id": 512, "in_irq": false, "size": 340, - "ts": 0.002905675 + "ts": 0.003033925 }, { "core_id": 0, @@ -1593,9 +2609,9 @@ "id": 8, "in_irq": false, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.002928325 + "ts": 0.00305665 }, { "core_id": 0, @@ -1605,9 +2621,21 @@ "params": { "name": "alloc1", "prio": 5, - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.002941 + "ts": 0.00306935 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 9, + "in_irq": false, + "params": { + "name": "alloc1", + "prio": 5, + "tid": 12290612 + }, + "ts": 0.00306935 }, { "core_id": 0, @@ -1615,12 +2643,25 @@ "id": 21, "in_irq": false, "params": { - "base": 1073449064, - "sz": 4294965096, - "tid": 12292716, + "base": 1073446960, + "sz": 4294965088, + "tid": 12290612, "unused": 0 }, - "ts": 0.00295 + "ts": 0.0030784 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 21, + "in_irq": false, + "params": { + "base": 1073446960, + "sz": 4294965088, + "tid": 12290612, + "unused": 0 + }, + "ts": 0.0030784 }, { "core_id": 0, @@ -1628,9 +2669,19 @@ "id": 6, "in_irq": false, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.0029609 + "ts": 0.0030893 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12290612 + }, + "ts": 0.0030893 }, { "core_id": 0, @@ -1640,7 +2691,7 @@ "params": { "irq_num": 30 }, - "ts": 0.002976625 + "ts": 0.00310495 }, { "core_id": 0, @@ -1648,7 +2699,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.002988 + "ts": 0.0031163 }, { "core_id": 0, @@ -1656,18 +2707,18 @@ "id": 4, "in_irq": false, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.00300485 + "ts": 0.003132675 }, { - "addr": "0x3ffb93d0", + "addr": "0x3ffb8b98", "callers": [ - "0x40081fef", - "0x40089414", - "0x40088679", - "0x400d6aa4", - "0x40088d94", + "0x40081eff", + "0x40088720", + "0x400879c1", + "0x400d3b64", + "0x400880dc", "0x0", "0x0", "0x0", @@ -1679,7 +2730,7 @@ "id": 512, "in_irq": false, "size": 124, - "ts": 0.0030403 + "ts": 0.00316915 }, { "core_id": 0, @@ -1691,16 +2742,16 @@ "uxItemSize": 4, "uxQueueLength": 10 }, - "ts": 0.0030546 + "ts": 0.00318345 }, { - "addr": "0x3ffb9450", + "addr": "0x3ffb8c18", "callers": [ - "0x40081fef", - "0x40089414", - "0x4008b304", - "0x400d6ae0", - "0x40088d94", + "0x40081eff", + "0x40088720", + "0x4008a610", + "0x400d3ba0", + "0x400880dc", "0x0", "0x0", "0x0", @@ -1712,16 +2763,16 @@ "id": 512, "in_irq": false, "size": 2500, - "ts": 0.00309395 + "ts": 0.00322385 }, { - "addr": "0x3ffb9e54", + "addr": "0x3ffb961c", "callers": [ - "0x40081fef", - "0x40089414", - "0x4008b30f", - "0x400d6ae0", - "0x40088d94", + "0x40081eff", + "0x40088720", + "0x4008a61b", + "0x400d3ba0", + "0x400880dc", "0x0", "0x0", "0x0", @@ -1733,7 +2784,7 @@ "id": 512, "in_irq": false, "size": 340, - "ts": 0.00312835 + "ts": 0.0032594 }, { "core_id": 0, @@ -1741,9 +2792,9 @@ "id": 8, "in_irq": false, "params": { - "tid": 12295764 + "tid": 12293660 }, - "ts": 0.0031551 + "ts": 0.003286175 }, { "core_id": 0, @@ -1753,9 +2804,21 @@ "params": { "name": "free1", "prio": 5, - "tid": 12295764 + "tid": 12293660 }, - "ts": 0.0031676 + "ts": 0.003298675 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 9, + "in_irq": false, + "params": { + "name": "free1", + "prio": 5, + "tid": 12293660 + }, + "ts": 0.003298675 }, { "core_id": 0, @@ -1763,12 +2826,25 @@ "id": 21, "in_irq": false, "params": { - "base": 1073452112, - "sz": 4294965088, - "tid": 12295764, + "base": 1073450008, + "sz": 4294965096, + "tid": 12293660, "unused": 0 }, - "ts": 0.003176775 + "ts": 0.003307875 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 21, + "in_irq": false, + "params": { + "base": 1073450008, + "sz": 4294965096, + "tid": 12293660, + "unused": 0 + }, + "ts": 0.003307875 }, { "core_id": 0, @@ -1776,18 +2852,28 @@ "id": 6, "in_irq": false, "params": { - "tid": 12295764 + "tid": 12293660 }, - "ts": 0.003187575 + "ts": 0.0033187 }, { - "addr": "0x3ffb9fb8", + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12293660 + }, + "ts": 0.0033187 + }, + { + "addr": "0x3ffb9780", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -1799,16 +2885,16 @@ "id": 512, "in_irq": false, "size": 2, - "ts": 0.0032237 + "ts": 0.00335585 }, { - "addr": "0x3ffb9fc8", + "addr": "0x3ffb9790", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -1820,7 +2906,7 @@ "id": 512, "in_irq": false, "size": 4, - "ts": 0.0032581 + "ts": 0.003391275 }, { "core_id": 0, @@ -1830,10 +2916,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.003275 + "ts": 0.003408225 }, { "core_id": 0, @@ -1843,10 +2929,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.003296925 + "ts": 0.0034283 }, { "core_id": 1, @@ -1854,8 +2940,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (310) example: Task[0x3ffb86d4]: free memory @ 0x3ffb8848\n", - "ts": 0.00333965 + "msg": "I (298) example: Task[0x3ffb7e9c]: free memory @ 0x3ffb8010\n", + "ts": 0.0034843 }, { "core_id": 1, @@ -1863,8 +2949,26 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (310) example: Task[0x3ffb86d4]: free memory @ 0x3ffb8848\n", - "ts": 0.00333965 + "msg": "I (298) example: Task[0x3ffb7e9c]: free memory @ 0x3ffb8010\n", + "ts": 0.0034843 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0035038 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.003517225 }, { "core_id": 1, @@ -1874,7 +2978,25 @@ "params": { "irq_num": 31 }, - "ts": 0.0033598 + "ts": 0.003529075 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (298) example: Task[0x3ffb8a34]: allocated 4 bytes @ 0x3ffb9790\n", + "ts": 0.0035488 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (298) example: Task[0x3ffb8a34]: allocated 4 bytes @ 0x3ffb9790\n", + "ts": 0.0035488 }, { "core_id": 1, @@ -1882,7 +3004,17 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.00337125 + "ts": 0.003560325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.003571875 }, { "core_id": 1, @@ -1890,47 +3022,34 @@ "id": 4, "in_irq": false, "params": { - "tid": 12289748 + "tid": 12287644 }, - "ts": 0.003388225 + "ts": 0.00358275 }, { "core_id": 0, "ctx_name": "alloc1", - "id": 26, + "id": 18, "in_irq": false, - "lvl": 0, - "msg": "I (311) example: Task[0x3ffb926c]: allocated 4 bytes @ 0x3ffb9fc8\n", - "ts": 0.00340705 + "params": {}, + "ts": 0.003598 }, { "core_id": 0, "ctx_name": "alloc1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (311) example: Task[0x3ffb926c]: allocated 4 bytes @ 0x3ffb9fc8\n", - "ts": 0.00340705 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 53, + "id": 4, "in_irq": false, "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12293072, - "xTicksToWait": 0 + "tid": 12290612 }, - "ts": 0.00342115 + "ts": 0.00361455 }, { - "addr": "0x3ffb8848", + "addr": "0x3ffb8010", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", + "0x4008da24", + "0x400d3c72", + "0x400880dc", "0x0", "0x0", "0x0", @@ -1944,7 +3063,20 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 0.0034343 + "ts": 0.00362625 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12290968, + "xTicksToWait": 0 + }, + "ts": 0.003637375 }, { "core_id": 0, @@ -1954,7 +3086,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.003446125 + "ts": 0.00365135 }, { "core_id": 0, @@ -1964,7 +3096,7 @@ "params": { "irq_num": 30 }, - "ts": 0.0034648 + "ts": 0.0036711 }, { "core_id": 0, @@ -1972,7 +3104,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.00347875 + "ts": 0.003685125 }, { "core_id": 1, @@ -1982,7 +3114,7 @@ "params": { "irq_num": 31 }, - "ts": 0.003492825 + "ts": 0.003699025 }, { "core_id": 0, @@ -1990,9 +3122,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12254080 + "tid": 12274964 }, - "ts": 0.003504725 + "ts": 0.0037109 }, { "core_id": 1, @@ -2000,7 +3132,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0035156 + "ts": 0.003721925 }, { "core_id": 1, @@ -2008,19 +3140,19 @@ "id": 4, "in_irq": false, "params": { - "tid": 12295764 + "tid": 12293660 }, - "ts": 0.00353485 + "ts": 0.00374125 }, { - "addr": "0x3ffb8848", + "addr": "0x3ffb8010", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6bef", - "0x400e693b", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3caf", + "0x400e3898", + "0x400880dc", "0x0", "0x0", "0x0", @@ -2031,7 +3163,7 @@ "id": 512, "in_irq": false, "size": 8, - "ts": 0.003547175 + "ts": 0.00375485 }, { "core_id": 1, @@ -2041,10 +3173,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12293072, + "xQueue": 12290968, "xTicksToWait": 4294967295 }, - "ts": 0.003564225 + "ts": 0.00377185 }, { "core_id": 1, @@ -2054,20 +3186,33 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.0035829 + "ts": 0.00379015 }, { - "addr": "0x3ffb9fd8", + "core_id": 1, + "ctx_name": "free1", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12281672, + "xTicksToWait": 0 + }, + "ts": 0.003809225 + }, + { + "addr": "0x3ffb97a0", "callers": [ - "0x40081fef", - "0x40089414", - "0x4008b304", - "0x400d6c38", - "0x400e693b", - "0x40088d94", + "0x40081eff", + "0x40088720", + "0x4008a610", + "0x400d3cf8", + "0x400e3898", + "0x400880dc", "0x0", "0x0", "0x0", @@ -2078,30 +3223,35 @@ "id": 512, "in_irq": false, "size": 2500, - "ts": 0.003600675 + "ts": 0.003820975 }, { "core_id": 1, "ctx_name": "free1", - "id": 53, + "id": 26, "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12283904, - "xTicksToWait": 0 - }, - "ts": 0.0036134 + "lvl": 0, + "msg": "I (299) example: Task[0x3ffb961c]: free memory @ 0x3ffb9790\n", + "ts": 0.0038621 }, { - "addr": "0x3ffba9dc", + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (299) example: Task[0x3ffb961c]: free memory @ 0x3ffb9790\n", + "ts": 0.0038621 + }, + { + "addr": "0x3ffba1a4", "callers": [ - "0x40081fef", - "0x40089414", - "0x4008b30f", - "0x400d6c38", - "0x400e693b", - "0x40088d94", + "0x40081eff", + "0x40088720", + "0x4008a61b", + "0x400d3cf8", + "0x400e3898", + "0x400880dc", "0x0", "0x0", "0x0", @@ -2112,123 +3262,14 @@ "id": 512, "in_irq": false, "size": 340, - "ts": 0.003639925 + "ts": 0.003874025 }, { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (311) example: Task[0x3ffb9e54]: free memory @ 0x3ffb9fc8\n", - "ts": 0.003663425 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (311) example: Task[0x3ffb9e54]: free memory @ 0x3ffb9fc8\n", - "ts": 0.003663425 - }, - { - "core_id": 0, - "ctx_name": "main", - "id": 8, - "in_irq": false, - "params": { - "tid": 12298716 - }, - "ts": 0.0036748 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.003691 - }, - { - "core_id": 0, - "ctx_name": "main", - "id": 9, - "in_irq": false, - "params": { - "name": "alloc2", - "prio": 5, - "tid": 12298716 - }, - "ts": 0.003703775 - }, - { - "core_id": 0, - "ctx_name": "main", - "id": 21, - "in_irq": false, - "params": { - "base": 1073455064, - "sz": 4294965096, - "tid": 12298716, - "unused": 0 - }, - "ts": 0.00371475 - }, - { - "core_id": 0, - "ctx_name": "main", - "id": 6, - "in_irq": false, - "params": { - "tid": 12298716 - }, - "ts": 0.00372765 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.0037451 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.00375595 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 4, - "in_irq": false, - "params": { - "tid": 12295764 - }, - "ts": 0.003766625 - }, - { - "core_id": 0, - "ctx_name": "main", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.003777475 - }, - { - "addr": "0x3ffb9fc8", + "addr": "0x3ffb9790", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", + "0x4008da24", + "0x400d3c72", + "0x400880dc", "0x0", "0x0", "0x0", @@ -2242,17 +3283,105 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 0.003792825 + "ts": 0.003887625 }, { "core_id": 0, - "ctx_name": "alloc2", - "id": 4, + "ctx_name": "main", + "id": 8, "in_irq": false, "params": { - "tid": 12298716 + "tid": 12296612 }, - "ts": 0.00380445 + "ts": 0.00390345 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 9, + "in_irq": false, + "params": { + "name": "alloc2", + "prio": 5, + "tid": 12296612 + }, + "ts": 0.003918375 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 9, + "in_irq": false, + "params": { + "name": "alloc2", + "prio": 5, + "tid": 12296612 + }, + "ts": 0.003918375 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 21, + "in_irq": false, + "params": { + "base": 1073452960, + "sz": 4294965088, + "tid": 12296612, + "unused": 0 + }, + "ts": 0.00392955 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 21, + "in_irq": false, + "params": { + "base": 1073452960, + "sz": 4294965088, + "tid": 12296612, + "unused": 0 + }, + "ts": 0.00392955 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 6, + "in_irq": false, + "params": { + "tid": 12296612 + }, + "ts": 0.003942575 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12296612 + }, + "ts": 0.003942575 + }, + { + "core_id": 0, + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.00396125 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.00397515 }, { "core_id": 1, @@ -2262,17 +3391,17 @@ "params": { "irq_num": 31 }, - "ts": 0.00382735 + "ts": 0.003989 }, { "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, "params": { - "irq_num": 5 + "tid": 12296612 }, - "ts": 0.003839325 + "ts": 0.003999875 }, { "core_id": 1, @@ -2280,15 +3409,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0038505 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 3, - "in_irq": false, - "params": {}, - "ts": 0.003862175 + "ts": 0.004011 }, { "core_id": 1, @@ -2296,16 +3417,16 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.00387205 + "ts": 0.00403305 }, { - "addr": "0x3ffbab40", + "addr": "0x3ffba308", "callers": [ - "0x40081fef", - "0x40089414", - "0x40088679", - "0x400d6aa4", - "0x40088d94", + "0x40081eff", + "0x40088720", + "0x400879c1", + "0x400d3b64", + "0x400880dc", "0x0", "0x0", "0x0", @@ -2317,7 +3438,7 @@ "id": 512, "in_irq": false, "size": 124, - "ts": 0.0038881 + "ts": 0.004044725 }, { "core_id": 0, @@ -2329,16 +3450,16 @@ "uxItemSize": 4, "uxQueueLength": 10 }, - "ts": 0.003902475 + "ts": 0.00405925 }, { - "addr": "0x3ffbabc0", + "addr": "0x3ffba388", "callers": [ - "0x40081fef", - "0x40089414", - "0x4008b304", - "0x400d6ae0", - "0x40088d94", + "0x40081eff", + "0x40088720", + "0x4008a610", + "0x400d3ba0", + "0x400880dc", "0x0", "0x0", "0x0", @@ -2350,16 +3471,16 @@ "id": 512, "in_irq": false, "size": 2500, - "ts": 0.003941825 + "ts": 0.004099675 }, { - "addr": "0x3ffbb5c4", + "addr": "0x3ffbad8c", "callers": [ - "0x40081fef", - "0x40089414", - "0x4008b30f", - "0x400d6ae0", - "0x40088d94", + "0x40081eff", + "0x40088720", + "0x4008a61b", + "0x400d3ba0", + "0x400880dc", "0x0", "0x0", "0x0", @@ -2371,7 +3492,7 @@ "id": 512, "in_irq": false, "size": 340, - "ts": 0.003976225 + "ts": 0.00413515 }, { "core_id": 0, @@ -2379,9 +3500,9 @@ "id": 8, "in_irq": false, "params": { - "tid": 12301764 + "tid": 12299660 }, - "ts": 0.0040022 + "ts": 0.004157725 }, { "core_id": 0, @@ -2391,9 +3512,21 @@ "params": { "name": "free2", "prio": 5, - "tid": 12301764 + "tid": 12299660 }, - "ts": 0.0040147 + "ts": 0.0041703 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 9, + "in_irq": false, + "params": { + "name": "free2", + "prio": 5, + "tid": 12299660 + }, + "ts": 0.0041703 }, { "core_id": 0, @@ -2401,12 +3534,25 @@ "id": 21, "in_irq": false, "params": { - "base": 1073458112, - "sz": 4294965088, - "tid": 12301764, + "base": 1073456008, + "sz": 4294965096, + "tid": 12299660, "unused": 0 }, - "ts": 0.004023875 + "ts": 0.004183575 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 21, + "in_irq": false, + "params": { + "base": 1073456008, + "sz": 4294965096, + "tid": 12299660, + "unused": 0 + }, + "ts": 0.004183575 }, { "core_id": 0, @@ -2414,9 +3560,19 @@ "id": 6, "in_irq": false, "params": { - "tid": 12301764 + "tid": 12299660 }, - "ts": 0.004034675 + "ts": 0.0041943 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12299660 + }, + "ts": 0.0041943 }, { "core_id": 1, @@ -2426,7 +3582,7 @@ "params": { "irq_num": 31 }, - "ts": 0.004050925 + "ts": 0.0042104 }, { "core_id": 1, @@ -2434,16 +3590,16 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.004063775 + "ts": 0.004223275 }, { - "addr": "0x3ffb9fc8", + "addr": "0x3ffb9790", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -2455,7 +3611,7 @@ "id": 512, "in_irq": false, "size": 3, - "ts": 0.00407545 + "ts": 0.0042355 }, { "core_id": 1, @@ -2463,9 +3619,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12301764 + "tid": 12299660 }, - "ts": 0.0040869 + "ts": 0.004248275 }, { "core_id": 1, @@ -2475,16 +3631,16 @@ "params": { "irq_num": 31 }, - "ts": 0.004113275 + "ts": 0.004274675 }, { - "addr": "0x3ffbb728", + "addr": "0x3ffbaef0", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -2496,7 +3652,7 @@ "id": 512, "in_irq": false, "size": 6, - "ts": 0.004125025 + "ts": 0.004286525 }, { "core_id": 1, @@ -2504,7 +3660,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.00413645 + "ts": 0.0042977 }, { "core_id": 0, @@ -2514,10 +3670,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.004148425 + "ts": 0.004309925 }, { "core_id": 1, @@ -2525,7 +3681,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.0041587 + "ts": 0.0043207 }, { "core_id": 0, @@ -2535,10 +3691,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.0041771 + "ts": 0.0043391 }, { "core_id": 0, @@ -2546,8 +3702,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (312) example: Task[0x3ffba9dc]: allocated 6 bytes @ 0x3ffbb728\n", - "ts": 0.0042294 + "msg": "I (299) example: Task[0x3ffba1a4]: allocated 6 bytes @ 0x3ffbaef0\n", + "ts": 0.00439165 }, { "core_id": 0, @@ -2555,8 +3711,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (312) example: Task[0x3ffba9dc]: allocated 6 bytes @ 0x3ffbb728\n", - "ts": 0.0042294 + "msg": "I (299) example: Task[0x3ffba1a4]: allocated 6 bytes @ 0x3ffbaef0\n", + "ts": 0.00439165 }, { "core_id": 0, @@ -2566,10 +3722,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12299072, + "xQueue": 12296968, "xTicksToWait": 0 }, - "ts": 0.0042464 + "ts": 0.0044051 }, { "core_id": 0, @@ -2577,9 +3733,19 @@ "id": 6, "in_irq": false, "params": { - "tid": 12301764 + "tid": 12299660 }, - "ts": 0.00425955 + "ts": 0.004418325 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12299660 + }, + "ts": 0.004418325 }, { "core_id": 1, @@ -2589,7 +3755,7 @@ "params": { "irq_num": 31 }, - "ts": 0.004275825 + "ts": 0.00443885 }, { "core_id": 0, @@ -2599,7 +3765,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.004286675 + "ts": 0.0044497 }, { "core_id": 1, @@ -2607,7 +3773,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.00429745 + "ts": 0.004460525 }, { "core_id": 0, @@ -2617,17 +3783,17 @@ "params": { "irq_num": 30 }, - "ts": 0.004311325 + "ts": 0.004474625 }, { "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, "params": { - "tid": 12301764 + "irq_num": 5 }, - "ts": 0.004322125 + "ts": 0.00448535 }, { "core_id": 0, @@ -2635,7 +3801,48 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.004332975 + "ts": 0.004496325 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0045078 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 4, + "in_irq": false, + "params": { + "tid": 12274964 + }, + "ts": 0.004518275 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12299660 + }, + "ts": 0.004535 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 49, + "in_irq": false, + "params": { + "pvBuffer": 3233808384, + "xJustPeek": 0, + "xQueue": 12281672, + "xTicksToWait": 10 + }, + "ts": 0.0045472 }, { "core_id": 1, @@ -2645,10 +3852,68 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12299072, + "xQueue": 12296968, "xTicksToWait": 4294967295 }, - "ts": 0.004344875 + "ts": 0.004559125 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.004570475 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12274964 + }, + "ts": 0.004581575 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274964 + }, + "ts": 0.004581575 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 39, + "in_irq": false, + "params": { + "pxMutexHolder": 1073433876 + }, + "ts": 0.004595225 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.0046103 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.004620875 }, { "core_id": 0, @@ -2656,9 +3921,134 @@ "id": 4, "in_irq": false, "params": { - "tid": 12254080 + "tid": 12274964 }, - "ts": 0.00435545 + "ts": 0.00463185 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.004642525 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12281672, + "xTicksToWait": 0 + }, + "ts": 0.0046541 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.004665575 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 42, + "in_irq": false, + "params": { + "pxMutexHolder": 1073433876 + }, + "ts": 0.004680075 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274964 + }, + "ts": 0.004690775 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274964 + }, + "ts": 0.004690775 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 6, + "in_irq": false, + "params": { + "tid": 12299660 + }, + "ts": 0.00470455 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12299660 + }, + "ts": 0.00470455 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.004720275 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.00473175 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (299) example: Wait notify 0\n", + "ts": 0.00474835 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (299) example: Wait notify 0\n", + "ts": 0.00474835 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12299660 + }, + "ts": 0.004759525 }, { "core_id": 1, @@ -2668,23 +4058,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.004367625 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12283904, - "xTicksToWait": 0 - }, - "ts": 0.004394675 + "ts": 0.004776775 }, { "core_id": 0, @@ -2694,17 +4071,20 @@ "params": { "irq_num": 30 }, - "ts": 0.004405525 + "ts": 0.004787675 }, { "core_id": 1, "ctx_name": "free2", - "id": 6, + "id": 53, "in_irq": false, "params": { - "tid": 12254080 + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12281672, + "xTicksToWait": 0 }, - "ts": 0.0044172 + "ts": 0.0048 }, { "core_id": 0, @@ -2712,43 +4092,15 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.00442855 + "ts": 0.00481075 }, { "core_id": 0, "ctx_name": "main", - "id": 4, + "id": 17, "in_irq": false, - "params": { - "tid": 12254080 - }, - "ts": 0.004446675 - }, - { - "core_id": 0, - "ctx_name": "main", - "id": 49, - "in_irq": false, - "params": { - "pvBuffer": 3233808384, - "xJustPeek": 0, - "xQueue": 12283904, - "xTicksToWait": 10 - }, - "ts": 0.004461 - }, - { - "core_id": 0, - "ctx_name": "main", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12283904, - "xTicksToWait": 0 - }, - "ts": 0.004477875 + "params": {}, + "ts": 0.00482835 }, { "core_id": 1, @@ -2756,8 +4108,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (312) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb728\n", - "ts": 0.004496725 + "msg": "I (299) example: Task[0x3ffbad8c]: free memory @ 0x3ffbaef0\n", + "ts": 0.0048496 }, { "core_id": 1, @@ -2765,15 +4117,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (312) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb728\n", - "ts": 0.004496725 + "msg": "I (299) example: Task[0x3ffbad8c]: free memory @ 0x3ffbaef0\n", + "ts": 0.0048496 }, { - "addr": "0x3ffbb728", + "addr": "0x3ffbaef0", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", + "0x4008da24", + "0x400d3c72", + "0x400880dc", "0x0", "0x0", "0x0", @@ -2787,25 +4139,7 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 0.004524 - }, - { - "core_id": 0, - "ctx_name": "main", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (312) example: Wait notify 0\n", - "ts": 0.004538425 - }, - { - "core_id": 0, - "ctx_name": "main", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (312) example: Wait notify 0\n", - "ts": 0.004538425 + "ts": 0.004875275 }, { "core_id": 1, @@ -2815,7 +4149,7 @@ "params": { "irq_num": 31 }, - "ts": 0.004553625 + "ts": 0.004903 }, { "core_id": 1, @@ -2823,17 +4157,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0045677 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.00458165 + "ts": 0.0049144 }, { "core_id": 1, @@ -2841,23 +4165,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.0045921 - }, - { - "core_id": 0, - "ctx_name": "main", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.004603225 - }, - { - "core_id": 0, - "ctx_name": "main", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.004619375 + "ts": 0.004930975 }, { "core_id": 1, @@ -2867,7 +4175,7 @@ "params": { "irq_num": 5 }, - "ts": 0.004666675 + "ts": 0.0054482 }, { "core_id": 1, @@ -2875,7 +4183,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0046801 + "ts": 0.005461725 }, { "core_id": 1, @@ -2883,7 +4191,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.00469525 + "ts": 0.0054773 }, { "core_id": 0, @@ -2893,7 +4201,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0048338 + "ts": 0.00554665 }, { "core_id": 0, @@ -2901,7 +4209,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.004849175 + "ts": 0.00556205 }, { "core_id": 0, @@ -2909,7 +4217,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.00486425 + "ts": 0.005577275 }, { "core_id": 1, @@ -2919,7 +4227,7 @@ "params": { "irq_num": 5 }, - "ts": 0.005666425 + "ts": 0.0064482 }, { "core_id": 1, @@ -2927,7 +4235,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.005680075 + "ts": 0.006461725 }, { "core_id": 1, @@ -2935,7 +4243,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.005695225 + "ts": 0.00647685 }, { "core_id": 0, @@ -2945,7 +4253,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0058338 + "ts": 0.00654665 }, { "core_id": 0, @@ -2953,7 +4261,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0058492 + "ts": 0.006562 }, { "core_id": 0, @@ -2961,7 +4269,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.005864425 + "ts": 0.006577075 }, { "core_id": 1, @@ -2971,7 +4279,7 @@ "params": { "irq_num": 5 }, - "ts": 0.006666425 + "ts": 0.0074482 }, { "core_id": 1, @@ -2979,7 +4287,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.00667995 + "ts": 0.007461725 }, { "core_id": 1, @@ -2987,7 +4295,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.0066951 + "ts": 0.007476975 }, { "core_id": 0, @@ -2997,7 +4305,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0068338 + "ts": 0.00754665 }, { "core_id": 0, @@ -3005,7 +4313,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.006849175 + "ts": 0.007562025 }, { "core_id": 0, @@ -3013,7 +4321,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.00686425 + "ts": 0.007577225 }, { "core_id": 1, @@ -3023,7 +4331,7 @@ "params": { "irq_num": 5 }, - "ts": 0.007666425 + "ts": 0.0084482 }, { "core_id": 1, @@ -3031,7 +4339,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.007680075 + "ts": 0.008461775 }, { "core_id": 1, @@ -3039,7 +4347,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.00769535 + "ts": 0.0084769 }, { "core_id": 0, @@ -3049,7 +4357,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0078338 + "ts": 0.00854665 }, { "core_id": 0, @@ -3057,7 +4365,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.007849175 + "ts": 0.008562 }, { "core_id": 0, @@ -3065,7 +4373,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.00786425 + "ts": 0.008577075 }, { "core_id": 1, @@ -3075,7 +4383,7 @@ "params": { "irq_num": 5 }, - "ts": 0.008666425 + "ts": 0.0094482 }, { "core_id": 1, @@ -3083,7 +4391,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.00868 + "ts": 0.009461725 }, { "core_id": 1, @@ -3091,7 +4399,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.008695125 + "ts": 0.00947685 }, { "core_id": 0, @@ -3101,7 +4409,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0088338 + "ts": 0.00954665 }, { "core_id": 0, @@ -3109,7 +4417,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.008849175 + "ts": 0.00956205 }, { "core_id": 0, @@ -3117,7 +4425,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.008868 + "ts": 0.009577275 }, { "core_id": 1, @@ -3127,7 +4435,7 @@ "params": { "irq_num": 5 }, - "ts": 0.009666425 + "ts": 0.0104482 }, { "core_id": 1, @@ -3135,7 +4443,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.00967995 + "ts": 0.010461725 }, { "core_id": 1, @@ -3143,7 +4451,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.0096951 + "ts": 0.01047685 }, { "core_id": 0, @@ -3153,7 +4461,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0098338 + "ts": 0.01054665 }, { "core_id": 0, @@ -3161,7 +4469,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.009849175 + "ts": 0.010562 }, { "core_id": 0, @@ -3169,7 +4477,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.00986425 + "ts": 0.010577075 }, { "core_id": 1, @@ -3179,7 +4487,7 @@ "params": { "irq_num": 5 }, - "ts": 0.010666425 + "ts": 0.0114482 }, { "core_id": 1, @@ -3187,7 +4495,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.010680075 + "ts": 0.011461725 }, { "core_id": 1, @@ -3195,7 +4503,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.01069535 + "ts": 0.011476975 }, { "core_id": 0, @@ -3205,7 +4513,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0108338 + "ts": 0.01154665 }, { "core_id": 0, @@ -3213,7 +4521,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.010849175 + "ts": 0.011562025 }, { "core_id": 0, @@ -3221,7 +4529,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.01086425 + "ts": 0.011577225 }, { "core_id": 1, @@ -3231,7 +4539,7 @@ "params": { "irq_num": 5 }, - "ts": 0.011666425 + "ts": 0.0124482 }, { "core_id": 1, @@ -3239,7 +4547,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.01168 + "ts": 0.012461725 }, { "core_id": 1, @@ -3247,7 +4555,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.011695125 + "ts": 0.012476975 }, { "core_id": 0, @@ -3257,7 +4565,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0118338 + "ts": 0.01254665 }, { "core_id": 0, @@ -3265,7 +4573,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.011849175 + "ts": 0.012562025 }, { "core_id": 0, @@ -3273,7 +4581,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.01186425 + "ts": 0.012577225 }, { "core_id": 1, @@ -3283,7 +4591,7 @@ "params": { "irq_num": 5 }, - "ts": 0.012666425 + "ts": 0.0134482 }, { "core_id": 1, @@ -3291,7 +4599,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.012680075 + "ts": 0.013461775 }, { "core_id": 1, @@ -3299,7 +4607,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.012695225 + "ts": 0.0134769 }, { "core_id": 0, @@ -3309,7 +4617,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0128338 + "ts": 0.01354665 }, { "core_id": 0, @@ -3317,7 +4625,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0128492 + "ts": 0.013562 }, { "core_id": 0, @@ -3325,7 +4633,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.012864425 + "ts": 0.013577075 }, { "core_id": 1, @@ -3335,7 +4643,7 @@ "params": { "irq_num": 5 }, - "ts": 0.013666425 + "ts": 0.0144482 }, { "core_id": 1, @@ -3343,7 +4651,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.01367995 + "ts": 0.014461725 }, { "core_id": 1, @@ -3351,7 +4659,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.0136951 + "ts": 0.01447685 }, { "core_id": 0, @@ -3361,7 +4669,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0138338 + "ts": 0.01454665 }, { "core_id": 0, @@ -3369,7 +4677,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0138494 + "ts": 0.0145623 }, { "core_id": 0, @@ -3377,7 +4685,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.0138645 + "ts": 0.0145775 }, { "core_id": 1, @@ -3387,7 +4695,7 @@ "params": { "irq_num": 5 }, - "ts": 0.014666425 + "ts": 0.0154482 }, { "core_id": 1, @@ -3395,7 +4703,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.014680075 + "ts": 0.015461725 }, { "core_id": 1, @@ -3403,7 +4711,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.01469535 + "ts": 0.01547685 }, { "core_id": 0, @@ -3413,7 +4721,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0148338 + "ts": 0.01554665 }, { "core_id": 0, @@ -3421,7 +4729,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.014849175 + "ts": 0.015562 }, { "core_id": 0, @@ -3429,7 +4737,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.01486425 + "ts": 0.015577075 }, { "core_id": 1, @@ -3439,7 +4747,7 @@ "params": { "irq_num": 5 }, - "ts": 0.015666425 + "ts": 0.0164482 }, { "core_id": 1, @@ -3447,7 +4755,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.01568 + "ts": 0.016461725 }, { "core_id": 1, @@ -3455,7 +4763,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.015695125 + "ts": 0.016476975 }, { "core_id": 0, @@ -3465,7 +4773,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0158338 + "ts": 0.01654665 }, { "core_id": 0, @@ -3473,7 +4781,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.015849175 + "ts": 0.016562025 }, { "core_id": 0, @@ -3481,7 +4789,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.01586425 + "ts": 0.016577225 }, { "core_id": 1, @@ -3491,7 +4799,7 @@ "params": { "irq_num": 5 }, - "ts": 0.016666425 + "ts": 0.0174482 }, { "core_id": 1, @@ -3499,7 +4807,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.016680075 + "ts": 0.017461775 }, { "core_id": 1, @@ -3507,7 +4815,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.016695225 + "ts": 0.0174769 }, { "core_id": 0, @@ -3517,7 +4825,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0168338 + "ts": 0.01754665 }, { "core_id": 0, @@ -3525,7 +4833,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0168492 + "ts": 0.017562 }, { "core_id": 0, @@ -3533,7 +4841,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.016864425 + "ts": 0.017577075 }, { "core_id": 1, @@ -3543,7 +4851,7 @@ "params": { "irq_num": 5 }, - "ts": 0.017666425 + "ts": 0.0184482 }, { "core_id": 1, @@ -3551,7 +4859,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.01767995 + "ts": 0.018461725 }, { "core_id": 1, @@ -3559,7 +4867,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.0176951 + "ts": 0.01847685 }, { "core_id": 0, @@ -3569,7 +4877,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0178338 + "ts": 0.01854665 }, { "core_id": 0, @@ -3577,7 +4885,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.017849175 + "ts": 0.01856205 }, { "core_id": 0, @@ -3585,7 +4893,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.01786425 + "ts": 0.018577275 }, { "core_id": 1, @@ -3595,7 +4903,7 @@ "params": { "irq_num": 5 }, - "ts": 0.018666425 + "ts": 0.0194482 }, { "core_id": 1, @@ -3603,7 +4911,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.018680075 + "ts": 0.019461725 }, { "core_id": 1, @@ -3611,7 +4919,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.01869535 + "ts": 0.01947685 }, { "core_id": 0, @@ -3621,7 +4929,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0188338 + "ts": 0.01954665 }, { "core_id": 0, @@ -3629,7 +4937,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.018849175 + "ts": 0.019562 }, { "core_id": 0, @@ -3637,7 +4945,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.01886425 + "ts": 0.019577075 }, { "core_id": 1, @@ -3647,7 +4955,7 @@ "params": { "irq_num": 5 }, - "ts": 0.019666425 + "ts": 0.0204482 }, { "core_id": 1, @@ -3655,7 +4963,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.01968 + "ts": 0.020461725 }, { "core_id": 1, @@ -3663,7 +4971,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.019695125 + "ts": 0.020476975 }, { "core_id": 0, @@ -3673,7 +4981,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0198338 + "ts": 0.02054665 }, { "core_id": 0, @@ -3681,7 +4989,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.019849175 + "ts": 0.020562025 }, { "core_id": 0, @@ -3689,7 +4997,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.01986425 + "ts": 0.020577225 }, { "core_id": 1, @@ -3699,7 +5007,7 @@ "params": { "irq_num": 5 }, - "ts": 0.020666425 + "ts": 0.0214482 }, { "core_id": 1, @@ -3707,7 +5015,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.020680075 + "ts": 0.021461775 }, { "core_id": 1, @@ -3715,7 +5023,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.020695225 + "ts": 0.0214769 }, { "core_id": 0, @@ -3725,7 +5033,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0208338 + "ts": 0.02154665 }, { "core_id": 0, @@ -3733,7 +5041,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0208492 + "ts": 0.021562 }, { "core_id": 0, @@ -3741,7 +5049,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.020864425 + "ts": 0.021577075 }, { "core_id": 1, @@ -3751,7 +5059,7 @@ "params": { "irq_num": 5 }, - "ts": 0.021666425 + "ts": 0.0224482 }, { "core_id": 1, @@ -3759,7 +5067,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.021680075 + "ts": 0.022461725 }, { "core_id": 1, @@ -3767,7 +5075,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.02169535 + "ts": 0.02247685 }, { "core_id": 0, @@ -3777,7 +5085,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0218338 + "ts": 0.02254665 }, { "core_id": 0, @@ -3785,7 +5093,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.021849175 + "ts": 0.02256205 }, { "core_id": 0, @@ -3793,7 +5101,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.02186425 + "ts": 0.022577275 }, { "core_id": 1, @@ -3803,7 +5111,7 @@ "params": { "irq_num": 5 }, - "ts": 0.022666425 + "ts": 0.0234482 }, { "core_id": 1, @@ -3811,7 +5119,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.02268 + "ts": 0.023461725 }, { "core_id": 1, @@ -3819,7 +5127,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.022695125 + "ts": 0.02347685 }, { "core_id": 0, @@ -3829,7 +5137,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0228338 + "ts": 0.02354665 }, { "core_id": 0, @@ -3837,7 +5145,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.022849175 + "ts": 0.023562 }, { "core_id": 0, @@ -3845,7 +5153,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.02286425 + "ts": 0.023577075 }, { "core_id": 1, @@ -3855,7 +5163,7 @@ "params": { "irq_num": 5 }, - "ts": 0.023666425 + "ts": 0.0244482 }, { "core_id": 1, @@ -3863,7 +5171,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.023680075 + "ts": 0.024465975 }, { "core_id": 1, @@ -3871,7 +5179,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.023695225 + "ts": 0.024481125 }, { "core_id": 0, @@ -3881,7 +5189,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0238338 + "ts": 0.02454665 }, { "core_id": 0, @@ -3889,7 +5197,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0238492 + "ts": 0.024562 }, { "core_id": 0, @@ -3897,7 +5205,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.023864425 + "ts": 0.024577075 }, { "core_id": 1, @@ -3907,7 +5215,7 @@ "params": { "irq_num": 5 }, - "ts": 0.024666425 + "ts": 0.0254482 }, { "core_id": 1, @@ -3915,7 +5223,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.02467995 + "ts": 0.025461725 }, { "core_id": 1, @@ -3923,7 +5231,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.0246951 + "ts": 0.02547685 }, { "core_id": 0, @@ -3933,7 +5241,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0248338 + "ts": 0.02554665 }, { "core_id": 0, @@ -3941,7 +5249,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.024849175 + "ts": 0.02556205 }, { "core_id": 0, @@ -3949,7 +5257,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.02486425 + "ts": 0.025577275 }, { "core_id": 1, @@ -3959,7 +5267,7 @@ "params": { "irq_num": 5 }, - "ts": 0.025666425 + "ts": 0.0264482 }, { "core_id": 1, @@ -3967,7 +5275,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.025680075 + "ts": 0.026461725 }, { "core_id": 1, @@ -3975,7 +5283,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.02569535 + "ts": 0.02647685 }, { "core_id": 0, @@ -3985,7 +5293,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0258338 + "ts": 0.02654665 }, { "core_id": 0, @@ -3993,7 +5301,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.025849175 + "ts": 0.026562 }, { "core_id": 0, @@ -4001,7 +5309,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.02586425 + "ts": 0.026577075 }, { "core_id": 1, @@ -4011,7 +5319,7 @@ "params": { "irq_num": 5 }, - "ts": 0.026666425 + "ts": 0.0274482 }, { "core_id": 1, @@ -4019,7 +5327,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.02668 + "ts": 0.027461725 }, { "core_id": 1, @@ -4027,7 +5335,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.026695125 + "ts": 0.027476975 }, { "core_id": 0, @@ -4037,7 +5345,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0268338 + "ts": 0.02754665 }, { "core_id": 0, @@ -4045,7 +5353,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.026849175 + "ts": 0.027562025 }, { "core_id": 0, @@ -4053,7 +5361,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.02686425 + "ts": 0.027577225 }, { "core_id": 1, @@ -4063,7 +5371,7 @@ "params": { "irq_num": 5 }, - "ts": 0.027666425 + "ts": 0.0284482 }, { "core_id": 1, @@ -4071,7 +5379,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.027680075 + "ts": 0.028461775 }, { "core_id": 1, @@ -4079,7 +5387,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.027695225 + "ts": 0.0284769 }, { "core_id": 0, @@ -4089,7 +5397,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0278338 + "ts": 0.02854665 }, { "core_id": 0, @@ -4097,7 +5405,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0278492 + "ts": 0.028562 }, { "core_id": 0, @@ -4105,7 +5413,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.027864425 + "ts": 0.028577075 }, { "core_id": 1, @@ -4115,7 +5423,7 @@ "params": { "irq_num": 5 }, - "ts": 0.028666425 + "ts": 0.0294482 }, { "core_id": 1, @@ -4123,7 +5431,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.02867995 + "ts": 0.029461725 }, { "core_id": 1, @@ -4131,7 +5439,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.0286951 + "ts": 0.02947685 }, { "core_id": 0, @@ -4141,7 +5449,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0288338 + "ts": 0.02954665 }, { "core_id": 0, @@ -4149,7 +5457,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.028849175 + "ts": 0.02956205 }, { "core_id": 0, @@ -4157,7 +5465,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.02886425 + "ts": 0.029577275 }, { "core_id": 1, @@ -4167,7 +5475,7 @@ "params": { "irq_num": 5 }, - "ts": 0.029666425 + "ts": 0.0304482 }, { "core_id": 1, @@ -4175,7 +5483,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.029680075 + "ts": 0.030461725 }, { "core_id": 1, @@ -4183,7 +5491,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.02969535 + "ts": 0.03047685 }, { "core_id": 0, @@ -4193,7 +5501,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0298338 + "ts": 0.03054665 }, { "core_id": 0, @@ -4201,7 +5509,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.029849175 + "ts": 0.030562 }, { "core_id": 0, @@ -4209,7 +5517,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.02986425 + "ts": 0.030577075 }, { "core_id": 1, @@ -4219,7 +5527,7 @@ "params": { "irq_num": 5 }, - "ts": 0.030666425 + "ts": 0.0314482 }, { "core_id": 1, @@ -4227,7 +5535,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.03068 + "ts": 0.031461725 }, { "core_id": 1, @@ -4235,7 +5543,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.030695125 + "ts": 0.031476975 }, { "core_id": 0, @@ -4245,7 +5553,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0308338 + "ts": 0.03154665 }, { "core_id": 0, @@ -4253,7 +5561,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.030849175 + "ts": 0.031562025 }, { "core_id": 0, @@ -4261,7 +5569,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.03086425 + "ts": 0.031577225 }, { "core_id": 1, @@ -4271,7 +5579,7 @@ "params": { "irq_num": 5 }, - "ts": 0.031666425 + "ts": 0.0324482 }, { "core_id": 1, @@ -4279,7 +5587,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.031680075 + "ts": 0.032461775 }, { "core_id": 1, @@ -4287,7 +5595,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.031695225 + "ts": 0.0324769 }, { "core_id": 0, @@ -4297,7 +5605,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0318338 + "ts": 0.03254665 }, { "core_id": 0, @@ -4305,9 +5613,19 @@ "id": 6, "in_irq": true, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.031848825 + "ts": 0.032561625 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12284596 + }, + "ts": 0.032561625 }, { "core_id": 0, @@ -4315,7 +5633,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.031861575 + "ts": 0.032574275 }, { "core_id": 0, @@ -4323,18 +5641,18 @@ "id": 4, "in_irq": false, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.03187725 + "ts": 0.03258995 }, { - "addr": "0x3ffbb728", + "addr": "0x3ffbaef0", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -4346,16 +5664,16 @@ "id": 512, "in_irq": false, "size": 2, - "ts": 0.031912575 + "ts": 0.032626375 }, { - "addr": "0x3ffbb738", + "addr": "0x3ffbaf00", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -4367,7 +5685,7 @@ "id": 512, "in_irq": false, "size": 4, - "ts": 0.0319512 + "ts": 0.0326618 }, { "core_id": 0, @@ -4377,10 +5695,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.0319681 + "ts": 0.03268285 }, { "core_id": 0, @@ -4390,10 +5708,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.031984075 + "ts": 0.032698775 }, { "core_id": 0, @@ -4401,8 +5719,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (340) example: Task[0x3ffb7aec]: allocated 4 bytes @ 0x3ffbb738\n", - "ts": 0.03204825 + "msg": "I (328) example: Task[0x3ffb72b4]: allocated 4 bytes @ 0x3ffbaf00\n", + "ts": 0.032751325 }, { "core_id": 0, @@ -4410,8 +5728,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (340) example: Task[0x3ffb7aec]: allocated 4 bytes @ 0x3ffbb738\n", - "ts": 0.03204825 + "msg": "I (328) example: Task[0x3ffb72b4]: allocated 4 bytes @ 0x3ffbaf00\n", + "ts": 0.032751325 }, { "core_id": 0, @@ -4421,10 +5739,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12287056, + "xQueue": 12284952, "xTicksToWait": 0 }, - "ts": 0.032061825 + "ts": 0.032764775 }, { "core_id": 0, @@ -4432,9 +5750,19 @@ "id": 6, "in_irq": false, "params": { - "tid": 12289748 + "tid": 12287644 }, - "ts": 0.03207495 + "ts": 0.032778 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12287644 + }, + "ts": 0.032778 }, { "core_id": 1, @@ -4444,7 +5772,7 @@ "params": { "irq_num": 31 }, - "ts": 0.03209115 + "ts": 0.03279425 }, { "core_id": 0, @@ -4454,7 +5782,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.032102025 + "ts": 0.0328052 }, { "core_id": 1, @@ -4462,7 +5790,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0321128 + "ts": 0.03281595 }, { "core_id": 0, @@ -4472,7 +5800,7 @@ "params": { "irq_num": 30 }, - "ts": 0.0321267 + "ts": 0.0328297 }, { "core_id": 1, @@ -4480,9 +5808,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12289748 + "tid": 12287644 }, - "ts": 0.0321375 + "ts": 0.032840425 }, { "core_id": 0, @@ -4490,7 +5818,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.03214835 + "ts": 0.032851225 }, { "core_id": 1, @@ -4500,10 +5828,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12287056, + "xQueue": 12284952, "xTicksToWait": 4294967295 }, - "ts": 0.032160325 + "ts": 0.032863225 }, { "core_id": 0, @@ -4511,7 +5839,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.03217055 + "ts": 0.03287345 }, { "core_id": 1, @@ -4521,10 +5849,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.032182025 + "ts": 0.0328852 }, { "core_id": 1, @@ -4534,10 +5862,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.0322023 + "ts": 0.032901475 }, { "core_id": 1, @@ -4545,8 +5873,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (340) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb738\n", - "ts": 0.03226585 + "msg": "I (328) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbaf00\n", + "ts": 0.032949375 }, { "core_id": 1, @@ -4554,15 +5882,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (340) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb738\n", - "ts": 0.03226585 + "msg": "I (328) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbaf00\n", + "ts": 0.032949375 }, { - "addr": "0x3ffbb738", + "addr": "0x3ffbaf00", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", + "0x4008da24", + "0x400d3c72", + "0x400880dc", "0x0", "0x0", "0x0", @@ -4576,7 +5904,7 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 0.03228705 + "ts": 0.0329751 }, { "core_id": 1, @@ -4586,7 +5914,7 @@ "params": { "irq_num": 31 }, - "ts": 0.032313925 + "ts": 0.033002525 }, { "core_id": 1, @@ -4594,7 +5922,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.03232535 + "ts": 0.033013925 }, { "core_id": 1, @@ -4602,7 +5930,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.03234205 + "ts": 0.0330305 }, { "core_id": 1, @@ -4612,7 +5940,7 @@ "params": { "irq_num": 5 }, - "ts": 0.032666425 + "ts": 0.0334482 }, { "core_id": 1, @@ -4620,7 +5948,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.03267985 + "ts": 0.033461725 }, { "core_id": 1, @@ -4628,7 +5956,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.03269555 + "ts": 0.0334773 }, { "core_id": 0, @@ -4638,7 +5966,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0328338 + "ts": 0.03354665 }, { "core_id": 0, @@ -4646,9 +5974,39 @@ "id": 6, "in_irq": true, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.0328488 + "ts": 0.033561675 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12290612 + }, + "ts": 0.033561675 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12296612 + }, + "ts": 0.0335735 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12296612 + }, + "ts": 0.0335735 }, { "core_id": 0, @@ -4656,7 +6014,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.032861575 + "ts": 0.033586 }, { "core_id": 0, @@ -4664,18 +6022,18 @@ "id": 4, "in_irq": false, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.032877375 + "ts": 0.033601675 }, { - "addr": "0x3ffbb738", + "addr": "0x3ffbaf00", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -4687,16 +6045,16 @@ "id": 512, "in_irq": false, "size": 4, - "ts": 0.0329126 + "ts": 0.03363795 }, { - "addr": "0x3ffbb748", + "addr": "0x3ffbaf10", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -4708,7 +6066,7 @@ "id": 512, "in_irq": false, "size": 8, - "ts": 0.03294715 + "ts": 0.033673375 }, { "core_id": 0, @@ -4718,10 +6076,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.032964075 + "ts": 0.033690325 }, { "core_id": 0, @@ -4731,10 +6089,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.03298425 + "ts": 0.033706325 }, { "core_id": 0, @@ -4742,8 +6100,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (341) example: Task[0x3ffb926c]: allocated 8 bytes @ 0x3ffbb748\n", - "ts": 0.0330485 + "msg": "I (329) example: Task[0x3ffb8a34]: allocated 8 bytes @ 0x3ffbaf10\n", + "ts": 0.033762425 }, { "core_id": 0, @@ -4751,8 +6109,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (341) example: Task[0x3ffb926c]: allocated 8 bytes @ 0x3ffbb748\n", - "ts": 0.0330485 + "msg": "I (329) example: Task[0x3ffb8a34]: allocated 8 bytes @ 0x3ffbaf10\n", + "ts": 0.033762425 }, { "core_id": 0, @@ -4762,10 +6120,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12293072, + "xQueue": 12290968, "xTicksToWait": 0 }, - "ts": 0.033062225 + "ts": 0.0337759 }, { "core_id": 0, @@ -4773,9 +6131,19 @@ "id": 6, "in_irq": false, "params": { - "tid": 12295764 + "tid": 12293660 }, - "ts": 0.03307545 + "ts": 0.0337891 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12293660 + }, + "ts": 0.0337891 }, { "core_id": 1, @@ -4785,7 +6153,7 @@ "params": { "irq_num": 31 }, - "ts": 0.0330917 + "ts": 0.03380545 }, { "core_id": 0, @@ -4795,7 +6163,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.03310255 + "ts": 0.033816325 }, { "core_id": 1, @@ -4803,7 +6171,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0331133 + "ts": 0.033827125 }, { "core_id": 0, @@ -4813,7 +6181,7 @@ "params": { "irq_num": 30 }, - "ts": 0.033127025 + "ts": 0.033840925 }, { "core_id": 1, @@ -4821,9 +6189,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12295764 + "tid": 12293660 }, - "ts": 0.0331378 + "ts": 0.03385275 }, { "core_id": 0, @@ -4831,7 +6199,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.03314855 + "ts": 0.033864 }, { "core_id": 1, @@ -4841,18 +6209,20 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12293072, + "xQueue": 12290968, "xTicksToWait": 4294967295 }, - "ts": 0.03316055 + "ts": 0.03387595 }, { "core_id": 0, - "ctx_name": "alloc1", - "id": 17, + "ctx_name": "alloc2", + "id": 4, "in_irq": false, - "params": {}, - "ts": 0.033171875 + "params": { + "tid": 12296612 + }, + "ts": 0.033887525 }, { "core_id": 1, @@ -4862,10 +6232,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.0331841 + "ts": 0.03390015 }, { "core_id": 1, @@ -4875,148 +6245,19 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.033200475 + "ts": 0.03391885 }, { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (341) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb748\n", - "ts": 0.033263975 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (341) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb748\n", - "ts": 0.033263975 - }, - { - "addr": "0x3ffbb748", + "addr": "0x3ffbaf20", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.0332885 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.033315625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.03332705 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.033343625 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.033666425 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.03367985 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.03369555 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0338338 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12298716 - }, - "ts": 0.0338488 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.033861575 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12298716 - }, - "ts": 0.03387725 - }, - { - "addr": "0x3ffbb748", - "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -5028,16 +6269,34 @@ "id": 512, "in_irq": false, "size": 6, - "ts": 0.03391265 + "ts": 0.033930825 }, { - "addr": "0x3ffbb758", + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (329) example: Task[0x3ffb961c]: free memory @ 0x3ffbaf10\n", + "ts": 0.033971825 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (329) example: Task[0x3ffb961c]: free memory @ 0x3ffbaf10\n", + "ts": 0.033971825 + }, + { + "addr": "0x3ffbaf30", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -5049,7 +6308,28 @@ "id": 512, "in_irq": false, "size": 12, - "ts": 0.03394705 + "ts": 0.033987775 + }, + { + "addr": "0x3ffbaf10", + "callers": [ + "0x4008da24", + "0x400d3c72", + "0x400880dc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.03400215 }, { "core_id": 0, @@ -5059,10 +6339,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.03396395 + "ts": 0.0340146 }, { "core_id": 0, @@ -5072,51 +6352,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.03398005 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (342) example: Task[0x3ffba9dc]: allocated 12 bytes @ 0x3ffbb758\n", - "ts": 0.034050525 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (342) example: Task[0x3ffba9dc]: allocated 12 bytes @ 0x3ffbb758\n", - "ts": 0.034050525 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12299072, - "xTicksToWait": 0 - }, - "ts": 0.03406835 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12301764 - }, - "ts": 0.034081575 + "ts": 0.0340345 }, { "core_id": 1, @@ -5126,7 +6365,84 @@ "params": { "irq_num": 31 }, - "ts": 0.034097875 + "ts": 0.034045425 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.034056975 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.034074925 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (329) example: Task[0x3ffba1a4]: allocated 12 bytes @ 0x3ffbaf30\n", + "ts": 0.034092925 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (329) example: Task[0x3ffba1a4]: allocated 12 bytes @ 0x3ffbaf30\n", + "ts": 0.034092925 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12296968, + "xTicksToWait": 0 + }, + "ts": 0.034106375 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12299660 + }, + "ts": 0.03412375 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12299660 + }, + "ts": 0.03412375 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.0341401 }, { "core_id": 0, @@ -5136,7 +6452,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.034108725 + "ts": 0.034150975 }, { "core_id": 1, @@ -5144,7 +6460,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0341195 + "ts": 0.034161775 }, { "core_id": 0, @@ -5154,7 +6470,7 @@ "params": { "irq_num": 30 }, - "ts": 0.034133225 + "ts": 0.0341756 }, { "core_id": 1, @@ -5162,9 +6478,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12301764 + "tid": 12299660 }, - "ts": 0.0341441 + "ts": 0.034186525 }, { "core_id": 0, @@ -5172,7 +6488,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.034154925 + "ts": 0.034197375 }, { "core_id": 1, @@ -5182,10 +6498,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12299072, + "xQueue": 12296968, "xTicksToWait": 4294967295 }, - "ts": 0.0341668 + "ts": 0.034209325 }, { "core_id": 0, @@ -5193,7 +6509,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.034178075 + "ts": 0.03422055 }, { "core_id": 1, @@ -5203,10 +6519,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.034189725 + "ts": 0.03423235 }, { "core_id": 1, @@ -5216,10 +6532,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.0342061 + "ts": 0.034248625 }, { "core_id": 1, @@ -5227,8 +6543,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (342) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb758\n", - "ts": 0.03426965 + "msg": "I (329) example: Task[0x3ffbad8c]: free memory @ 0x3ffbaf30\n", + "ts": 0.0342964 }, { "core_id": 1, @@ -5236,15 +6552,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (342) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb758\n", - "ts": 0.03426965 + "msg": "I (329) example: Task[0x3ffbad8c]: free memory @ 0x3ffbaf30\n", + "ts": 0.0342964 }, { - "addr": "0x3ffbb758", + "addr": "0x3ffbaf30", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", + "0x4008da24", + "0x400d3c72", + "0x400880dc", "0x0", "0x0", "0x0", @@ -5258,7 +6574,7 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 0.03429085 + "ts": 0.034317775 }, { "core_id": 1, @@ -5268,7 +6584,7 @@ "params": { "irq_num": 31 }, - "ts": 0.0343219 + "ts": 0.034345175 }, { "core_id": 1, @@ -5276,7 +6592,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.034333375 + "ts": 0.0343566 }, { "core_id": 1, @@ -5284,7 +6600,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.034350075 + "ts": 0.03437315 }, { "core_id": 1, @@ -5294,7 +6610,7 @@ "params": { "irq_num": 5 }, - "ts": 0.034666425 + "ts": 0.0344482 }, { "core_id": 1, @@ -5302,7 +6618,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.034679875 + "ts": 0.034461625 }, { "core_id": 1, @@ -5310,7 +6626,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.03469545 + "ts": 0.0344772 }, { "core_id": 0, @@ -5320,7 +6636,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0348338 + "ts": 0.03454665 }, { "core_id": 0, @@ -5328,7 +6644,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0348492 + "ts": 0.034562 }, { "core_id": 0, @@ -5336,7 +6652,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.034864425 + "ts": 0.034577075 }, { "core_id": 1, @@ -5346,7 +6662,7 @@ "params": { "irq_num": 5 }, - "ts": 0.035666425 + "ts": 0.0354482 }, { "core_id": 1, @@ -5354,7 +6670,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.03567995 + "ts": 0.035461725 }, { "core_id": 1, @@ -5362,7 +6678,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.0356951 + "ts": 0.03547685 }, { "core_id": 0, @@ -5372,7 +6688,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0358338 + "ts": 0.03554665 }, { "core_id": 0, @@ -5380,7 +6696,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.035849175 + "ts": 0.03556205 }, { "core_id": 0, @@ -5388,7 +6704,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.03586425 + "ts": 0.035577275 }, { "core_id": 1, @@ -5398,7 +6714,7 @@ "params": { "irq_num": 5 }, - "ts": 0.036666425 + "ts": 0.0364482 }, { "core_id": 1, @@ -5406,7 +6722,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.036680075 + "ts": 0.036461725 }, { "core_id": 1, @@ -5414,7 +6730,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.03669535 + "ts": 0.03647685 }, { "core_id": 0, @@ -5424,7 +6740,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0368338 + "ts": 0.03654665 }, { "core_id": 0, @@ -5432,7 +6748,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.036849175 + "ts": 0.0365663 }, { "core_id": 0, @@ -5440,7 +6756,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.03686425 + "ts": 0.036581525 }, { "core_id": 1, @@ -5450,7 +6766,7 @@ "params": { "irq_num": 5 }, - "ts": 0.037666425 + "ts": 0.0374482 }, { "core_id": 1, @@ -5458,7 +6774,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.03768 + "ts": 0.037461725 }, { "core_id": 1, @@ -5466,7 +6782,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.037695125 + "ts": 0.03747685 }, { "core_id": 0, @@ -5476,7 +6792,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0378338 + "ts": 0.03754665 }, { "core_id": 0, @@ -5484,7 +6800,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.037849175 + "ts": 0.037562 }, { "core_id": 0, @@ -5492,7 +6808,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.03786425 + "ts": 0.037577075 }, { "core_id": 1, @@ -5502,7 +6818,7 @@ "params": { "irq_num": 5 }, - "ts": 0.038666425 + "ts": 0.0384482 }, { "core_id": 1, @@ -5510,7 +6826,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.038680075 + "ts": 0.038461725 }, { "core_id": 1, @@ -5518,7 +6834,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.038695225 + "ts": 0.038476975 }, { "core_id": 0, @@ -5528,7 +6844,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0388338 + "ts": 0.03854665 }, { "core_id": 0, @@ -5536,7 +6852,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0388492 + "ts": 0.038562025 }, { "core_id": 0, @@ -5544,7 +6860,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.038864425 + "ts": 0.038577225 }, { "core_id": 1, @@ -5554,7 +6870,7 @@ "params": { "irq_num": 5 }, - "ts": 0.039666425 + "ts": 0.0394482 }, { "core_id": 1, @@ -5562,7 +6878,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.03967995 + "ts": 0.039461775 }, { "core_id": 1, @@ -5570,7 +6886,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.0396951 + "ts": 0.0394769 }, { "core_id": 0, @@ -5580,7 +6896,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0398338 + "ts": 0.03954665 }, { "core_id": 0, @@ -5588,7 +6904,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.039849175 + "ts": 0.039562 }, { "core_id": 0, @@ -5596,7 +6912,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.03986425 + "ts": 0.039577075 }, { "core_id": 1, @@ -5606,7 +6922,7 @@ "params": { "irq_num": 5 }, - "ts": 0.040666425 + "ts": 0.0404482 }, { "core_id": 1, @@ -5614,7 +6930,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.040680075 + "ts": 0.040461725 }, { "core_id": 1, @@ -5622,7 +6938,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.04069535 + "ts": 0.04047685 }, { "core_id": 0, @@ -5632,7 +6948,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0408338 + "ts": 0.04054665 }, { "core_id": 0, @@ -5640,7 +6956,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.040849175 + "ts": 0.04056205 }, { "core_id": 0, @@ -5648,7 +6964,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.04086425 + "ts": 0.040577275 }, { "core_id": 1, @@ -5658,7 +6974,7 @@ "params": { "irq_num": 5 }, - "ts": 0.041666425 + "ts": 0.0414482 }, { "core_id": 1, @@ -5666,7 +6982,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.04168 + "ts": 0.041461725 }, { "core_id": 1, @@ -5674,7 +6990,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.041695125 + "ts": 0.04147685 }, { "core_id": 0, @@ -5684,7 +7000,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0418338 + "ts": 0.04154665 }, { "core_id": 0, @@ -5692,7 +7008,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.041849175 + "ts": 0.041562 }, { "core_id": 0, @@ -5700,7 +7016,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.04186425 + "ts": 0.041577075 }, { "core_id": 1, @@ -5710,7 +7026,7 @@ "params": { "irq_num": 5 }, - "ts": 0.042666425 + "ts": 0.0424482 }, { "core_id": 1, @@ -5718,7 +7034,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.042680075 + "ts": 0.042461725 }, { "core_id": 1, @@ -5726,7 +7042,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.042695225 + "ts": 0.042476975 }, { "core_id": 0, @@ -5736,7 +7052,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0428338 + "ts": 0.04254665 }, { "core_id": 0, @@ -5744,7 +7060,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0428492 + "ts": 0.042562025 }, { "core_id": 0, @@ -5752,7 +7068,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.042864425 + "ts": 0.042577225 }, { "core_id": 1, @@ -5762,7 +7078,7 @@ "params": { "irq_num": 5 }, - "ts": 0.043666425 + "ts": 0.0434482 }, { "core_id": 1, @@ -5770,7 +7086,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.04367995 + "ts": 0.043461775 }, { "core_id": 1, @@ -5778,7 +7094,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.0436951 + "ts": 0.0434769 }, { "core_id": 0, @@ -5788,7 +7104,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0438338 + "ts": 0.04354665 }, { "core_id": 0, @@ -5796,7 +7112,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.043849175 + "ts": 0.043562 }, { "core_id": 0, @@ -5804,7 +7120,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.04386425 + "ts": 0.043577075 }, { "core_id": 1, @@ -5814,7 +7130,7 @@ "params": { "irq_num": 5 }, - "ts": 0.044666425 + "ts": 0.0444482 }, { "core_id": 1, @@ -5822,7 +7138,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0446842 + "ts": 0.044461725 }, { "core_id": 1, @@ -5830,7 +7146,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.044699325 + "ts": 0.04447685 }, { "core_id": 0, @@ -5840,7 +7156,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0448338 + "ts": 0.04454665 }, { "core_id": 0, @@ -5848,7 +7164,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.044849175 + "ts": 0.04456205 }, { "core_id": 0, @@ -5856,7 +7172,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.04486425 + "ts": 0.044577275 }, { "core_id": 1, @@ -5866,7 +7182,7 @@ "params": { "irq_num": 5 }, - "ts": 0.045666425 + "ts": 0.0454482 }, { "core_id": 1, @@ -5874,7 +7190,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.045680075 + "ts": 0.045461725 }, { "core_id": 1, @@ -5882,7 +7198,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.045695225 + "ts": 0.04547685 }, { "core_id": 0, @@ -5892,7 +7208,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0458338 + "ts": 0.04554665 }, { "core_id": 0, @@ -5900,7 +7216,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0458492 + "ts": 0.045562 }, { "core_id": 0, @@ -5908,7 +7224,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.045864425 + "ts": 0.045577075 }, { "core_id": 1, @@ -5918,7 +7234,7 @@ "params": { "irq_num": 5 }, - "ts": 0.046666425 + "ts": 0.0464482 }, { "core_id": 1, @@ -5926,7 +7242,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.04667995 + "ts": 0.046461725 }, { "core_id": 1, @@ -5934,7 +7250,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.0466951 + "ts": 0.046476975 }, { "core_id": 0, @@ -5944,7 +7260,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0468338 + "ts": 0.04654665 }, { "core_id": 0, @@ -5952,7 +7268,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.046849175 + "ts": 0.046562025 }, { "core_id": 0, @@ -5960,7 +7276,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.04686425 + "ts": 0.046577225 }, { "core_id": 1, @@ -5970,7 +7286,7 @@ "params": { "irq_num": 5 }, - "ts": 0.047666425 + "ts": 0.0474482 }, { "core_id": 1, @@ -5978,7 +7294,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.047680075 + "ts": 0.047461775 }, { "core_id": 1, @@ -5986,7 +7302,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.04769535 + "ts": 0.0474769 }, { "core_id": 0, @@ -5996,7 +7312,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0478338 + "ts": 0.04754665 }, { "core_id": 0, @@ -6004,7 +7320,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.047849175 + "ts": 0.047562 }, { "core_id": 0, @@ -6012,7 +7328,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.04786425 + "ts": 0.047577075 }, { "core_id": 1, @@ -6022,7 +7338,7 @@ "params": { "irq_num": 5 }, - "ts": 0.048666425 + "ts": 0.0484482 }, { "core_id": 1, @@ -6030,7 +7346,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.04868 + "ts": 0.048461725 }, { "core_id": 1, @@ -6038,7 +7354,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.048695125 + "ts": 0.04847685 }, { "core_id": 0, @@ -6048,7 +7364,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0488338 + "ts": 0.04854665 }, { "core_id": 0, @@ -6056,7 +7372,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.048849175 + "ts": 0.0485663 }, { "core_id": 0, @@ -6064,7 +7380,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.04886425 + "ts": 0.0485815 }, { "core_id": 1, @@ -6074,7 +7390,7 @@ "params": { "irq_num": 5 }, - "ts": 0.049666425 + "ts": 0.0494482 }, { "core_id": 1, @@ -6082,7 +7398,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.049680075 + "ts": 0.049461725 }, { "core_id": 1, @@ -6090,7 +7406,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.049695225 + "ts": 0.04947685 }, { "core_id": 0, @@ -6100,7 +7416,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0498338 + "ts": 0.04954665 }, { "core_id": 0, @@ -6108,7 +7424,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0498492 + "ts": 0.049562 }, { "core_id": 0, @@ -6116,7 +7432,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.049864425 + "ts": 0.049577075 }, { "core_id": 1, @@ -6126,7 +7442,7 @@ "params": { "irq_num": 5 }, - "ts": 0.050666425 + "ts": 0.0504482 }, { "core_id": 1, @@ -6134,7 +7450,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.05067995 + "ts": 0.050461725 }, { "core_id": 1, @@ -6142,7 +7458,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.0506951 + "ts": 0.050476975 }, { "core_id": 0, @@ -6152,7 +7468,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0508338 + "ts": 0.05054665 }, { "core_id": 0, @@ -6160,7 +7476,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.050849175 + "ts": 0.050562025 }, { "core_id": 0, @@ -6168,7 +7484,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.05086425 + "ts": 0.050577225 }, { "core_id": 1, @@ -6178,7 +7494,7 @@ "params": { "irq_num": 5 }, - "ts": 0.051666425 + "ts": 0.0514482 }, { "core_id": 1, @@ -6186,7 +7502,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.051680075 + "ts": 0.051461775 }, { "core_id": 1, @@ -6194,7 +7510,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.05169535 + "ts": 0.0514769 }, { "core_id": 0, @@ -6204,7 +7520,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0518338 + "ts": 0.05154665 }, { "core_id": 0, @@ -6212,7 +7528,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.051849175 + "ts": 0.051562 }, { "core_id": 0, @@ -6220,7 +7536,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.05186425 + "ts": 0.051577075 }, { "core_id": 1, @@ -6230,7 +7546,7 @@ "params": { "irq_num": 5 }, - "ts": 0.052666425 + "ts": 0.0524482 }, { "core_id": 1, @@ -6238,7 +7554,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.05268 + "ts": 0.052461725 }, { "core_id": 1, @@ -6246,7 +7562,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.052695125 + "ts": 0.05247685 }, { "core_id": 0, @@ -6256,7 +7572,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0528338 + "ts": 0.05254665 }, { "core_id": 0, @@ -6264,7 +7580,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.052849175 + "ts": 0.05256205 }, { "core_id": 0, @@ -6272,7 +7588,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.05286425 + "ts": 0.052577275 }, { "core_id": 1, @@ -6282,7 +7598,7 @@ "params": { "irq_num": 5 }, - "ts": 0.053666425 + "ts": 0.0534482 }, { "core_id": 1, @@ -6290,7 +7606,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.053680075 + "ts": 0.053461725 }, { "core_id": 1, @@ -6298,7 +7614,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.053695225 + "ts": 0.05347685 }, { "core_id": 0, @@ -6308,7 +7624,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0538338 + "ts": 0.05354665 }, { "core_id": 0, @@ -6316,7 +7632,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0538492 + "ts": 0.053562 }, { "core_id": 0, @@ -6324,7 +7640,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.053864425 + "ts": 0.053577075 }, { "core_id": 1, @@ -6334,7 +7650,7 @@ "params": { "irq_num": 5 }, - "ts": 0.054666425 + "ts": 0.0544482 }, { "core_id": 1, @@ -6342,7 +7658,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.05467995 + "ts": 0.054461725 }, { "core_id": 1, @@ -6350,7 +7666,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.0546951 + "ts": 0.054476975 }, { "core_id": 0, @@ -6360,7 +7676,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0548338 + "ts": 0.05454665 }, { "core_id": 0, @@ -6368,7 +7684,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.054849175 + "ts": 0.054562025 }, { "core_id": 0, @@ -6376,7 +7692,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.05486425 + "ts": 0.054577225 }, { "core_id": 1, @@ -6386,7 +7702,7 @@ "params": { "irq_num": 5 }, - "ts": 0.055666425 + "ts": 0.0554482 }, { "core_id": 1, @@ -6394,7 +7710,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.055680075 + "ts": 0.055461775 }, { "core_id": 1, @@ -6402,7 +7718,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.05569535 + "ts": 0.0554769 }, { "core_id": 0, @@ -6412,7 +7728,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0558338 + "ts": 0.05554665 }, { "core_id": 0, @@ -6420,7 +7736,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.055849175 + "ts": 0.055562 }, { "core_id": 0, @@ -6428,7 +7744,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.05586425 + "ts": 0.055577075 }, { "core_id": 1, @@ -6438,7 +7754,7 @@ "params": { "irq_num": 5 }, - "ts": 0.056666425 + "ts": 0.0564482 }, { "core_id": 1, @@ -6446,7 +7762,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.056684225 + "ts": 0.056461725 }, { "core_id": 1, @@ -6454,7 +7770,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.056699375 + "ts": 0.05647685 }, { "core_id": 0, @@ -6464,7 +7780,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0568338 + "ts": 0.05654665 }, { "core_id": 0, @@ -6472,7 +7788,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.056849175 + "ts": 0.05656205 }, { "core_id": 0, @@ -6480,7 +7796,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.05686425 + "ts": 0.056577275 }, { "core_id": 1, @@ -6490,7 +7806,7 @@ "params": { "irq_num": 5 }, - "ts": 0.057666425 + "ts": 0.0574482 }, { "core_id": 1, @@ -6498,7 +7814,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.057680075 + "ts": 0.057461725 }, { "core_id": 1, @@ -6506,7 +7822,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.057695225 + "ts": 0.05747685 }, { "core_id": 0, @@ -6516,7 +7832,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0578338 + "ts": 0.05754665 }, { "core_id": 0, @@ -6524,7 +7840,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0578492 + "ts": 0.057562 }, { "core_id": 0, @@ -6532,7 +7848,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.057864425 + "ts": 0.057577075 }, { "core_id": 1, @@ -6542,7 +7858,7 @@ "params": { "irq_num": 5 }, - "ts": 0.058666425 + "ts": 0.0584482 }, { "core_id": 1, @@ -6550,7 +7866,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.05867995 + "ts": 0.058461725 }, { "core_id": 1, @@ -6558,7 +7874,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.0586951 + "ts": 0.058476975 }, { "core_id": 0, @@ -6568,7 +7884,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0588338 + "ts": 0.05854665 }, { "core_id": 0, @@ -6576,7 +7892,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.058849175 + "ts": 0.058562025 }, { "core_id": 0, @@ -6584,7 +7900,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.05886425 + "ts": 0.058577225 }, { "core_id": 1, @@ -6594,7 +7910,7 @@ "params": { "irq_num": 5 }, - "ts": 0.059666425 + "ts": 0.0594482 }, { "core_id": 1, @@ -6602,7 +7918,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.059680075 + "ts": 0.059461775 }, { "core_id": 1, @@ -6610,7 +7926,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.05969535 + "ts": 0.0594769 }, { "core_id": 0, @@ -6620,7 +7936,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0598338 + "ts": 0.05954665 }, { "core_id": 0, @@ -6628,7 +7944,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.059849175 + "ts": 0.059562 }, { "core_id": 0, @@ -6636,7 +7952,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.05986425 + "ts": 0.059577075 }, { "core_id": 1, @@ -6646,7 +7962,7 @@ "params": { "irq_num": 5 }, - "ts": 0.060666425 + "ts": 0.0604482 }, { "core_id": 1, @@ -6654,7 +7970,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.06068 + "ts": 0.060461725 }, { "core_id": 1, @@ -6662,7 +7978,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.060695125 + "ts": 0.06047685 }, { "core_id": 0, @@ -6672,7 +7988,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0608338 + "ts": 0.06054665 }, { "core_id": 0, @@ -6680,7 +7996,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.060849175 + "ts": 0.0605663 }, { "core_id": 0, @@ -6688,7 +8004,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.06086425 + "ts": 0.0605815 }, { "core_id": 1, @@ -6698,7 +8014,7 @@ "params": { "irq_num": 5 }, - "ts": 0.061666425 + "ts": 0.0614482 }, { "core_id": 1, @@ -6706,7 +8022,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.061680075 + "ts": 0.061461725 }, { "core_id": 1, @@ -6714,7 +8030,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.061695225 + "ts": 0.06147685 }, { "core_id": 0, @@ -6724,7 +8040,59 @@ "params": { "irq_num": 5 }, - "ts": 0.0618338 + "ts": 0.06154665 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.061562 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.061577075 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0624482 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.062461725 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.062476975 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.06254665 }, { "core_id": 0, @@ -6732,9 +8100,19 @@ "id": 6, "in_irq": true, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.061848825 + "ts": 0.062561625 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12284596 + }, + "ts": 0.062561625 }, { "core_id": 0, @@ -6742,7 +8120,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.061861575 + "ts": 0.062574225 }, { "core_id": 0, @@ -6750,18 +8128,18 @@ "id": 4, "in_irq": false, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.06187725 + "ts": 0.062589875 }, { - "addr": "0x3ffbb758", + "addr": "0x3ffbaf10", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -6773,16 +8151,16 @@ "id": 512, "in_irq": false, "size": 3, - "ts": 0.061912575 + "ts": 0.0626249 }, { - "addr": "0x3ffbb768", + "addr": "0x3ffbaf30", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -6794,7 +8172,7 @@ "id": 512, "in_irq": false, "size": 6, - "ts": 0.061947 + "ts": 0.062660375 }, { "core_id": 0, @@ -6804,10 +8182,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.061964025 + "ts": 0.0626773 }, { "core_id": 0, @@ -6817,10 +8195,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.061980025 + "ts": 0.06269325 }, { "core_id": 0, @@ -6828,8 +8206,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (370) example: Task[0x3ffb7aec]: allocated 6 bytes @ 0x3ffbb768\n", - "ts": 0.062044275 + "msg": "I (358) example: Task[0x3ffb72b4]: allocated 6 bytes @ 0x3ffbaf30\n", + "ts": 0.062745775 }, { "core_id": 0, @@ -6837,8 +8215,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (370) example: Task[0x3ffb7aec]: allocated 6 bytes @ 0x3ffbb768\n", - "ts": 0.062044275 + "msg": "I (358) example: Task[0x3ffb72b4]: allocated 6 bytes @ 0x3ffbaf30\n", + "ts": 0.062745775 }, { "core_id": 0, @@ -6848,10 +8226,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12287056, + "xQueue": 12284952, "xTicksToWait": 0 }, - "ts": 0.062062075 + "ts": 0.06275925 }, { "core_id": 0, @@ -6859,9 +8237,19 @@ "id": 6, "in_irq": false, "params": { - "tid": 12289748 + "tid": 12287644 }, - "ts": 0.0620752 + "ts": 0.06277245 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12287644 + }, + "ts": 0.06277245 }, { "core_id": 1, @@ -6871,7 +8259,7 @@ "params": { "irq_num": 31 }, - "ts": 0.06209135 + "ts": 0.0627929 }, { "core_id": 0, @@ -6881,7 +8269,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.0621024 + "ts": 0.06280385 }, { "core_id": 1, @@ -6889,7 +8277,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.06211315 + "ts": 0.0628146 }, { "core_id": 0, @@ -6899,7 +8287,7 @@ "params": { "irq_num": 30 }, - "ts": 0.06212715 + "ts": 0.0628285 }, { "core_id": 1, @@ -6907,9 +8295,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12289748 + "tid": 12287644 }, - "ts": 0.062138 + "ts": 0.0628393 }, { "core_id": 0, @@ -6917,7 +8305,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.062148875 + "ts": 0.062850025 }, { "core_id": 1, @@ -6927,10 +8315,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12287056, + "xQueue": 12284952, "xTicksToWait": 4294967295 }, - "ts": 0.062160875 + "ts": 0.06286215 }, { "core_id": 0, @@ -6938,7 +8326,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.0621712 + "ts": 0.06287235 }, { "core_id": 1, @@ -6948,10 +8336,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.062183675 + "ts": 0.0628841 }, { "core_id": 1, @@ -6961,10 +8349,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.06219985 + "ts": 0.06290045 }, { "core_id": 1, @@ -6972,8 +8360,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (370) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb768\n", - "ts": 0.0622634 + "msg": "I (358) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbaf30\n", + "ts": 0.062948325 }, { "core_id": 1, @@ -6981,15 +8369,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (370) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb768\n", - "ts": 0.0622634 + "msg": "I (358) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbaf30\n", + "ts": 0.062948325 }, { - "addr": "0x3ffbb768", + "addr": "0x3ffbaf30", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", + "0x4008da24", + "0x400d3c72", + "0x400880dc", "0x0", "0x0", "0x0", @@ -7003,7 +8391,7 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 0.0622844 + "ts": 0.062969525 }, { "core_id": 1, @@ -7013,7 +8401,7 @@ "params": { "irq_num": 31 }, - "ts": 0.062314725 + "ts": 0.0629968 }, { "core_id": 1, @@ -7021,7 +8409,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0623262 + "ts": 0.06300825 }, { "core_id": 1, @@ -7029,7 +8417,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.0623429 + "ts": 0.06302495 }, { "core_id": 1, @@ -7039,7 +8427,7 @@ "params": { "irq_num": 5 }, - "ts": 0.062666425 + "ts": 0.0634482 }, { "core_id": 1, @@ -7047,7 +8435,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.062679875 + "ts": 0.063461725 }, { "core_id": 1, @@ -7055,7 +8443,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.06269545 + "ts": 0.0634773 }, { "core_id": 0, @@ -7065,7 +8453,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0628338 + "ts": 0.06354665 }, { "core_id": 0, @@ -7073,9 +8461,39 @@ "id": 6, "in_irq": true, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.062848825 + "ts": 0.063561625 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12290612 + }, + "ts": 0.063561625 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12296612 + }, + "ts": 0.0635735 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12296612 + }, + "ts": 0.0635735 }, { "core_id": 0, @@ -7083,7 +8501,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.062861575 + "ts": 0.063585975 }, { "core_id": 0, @@ -7091,18 +8509,18 @@ "id": 4, "in_irq": false, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.06287725 + "ts": 0.063601625 }, { - "addr": "0x3ffbb768", + "addr": "0x3ffbaf30", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -7114,16 +8532,16 @@ "id": 512, "in_irq": false, "size": 6, - "ts": 0.062912575 + "ts": 0.063638 }, { - "addr": "0x3ffbb778", + "addr": "0x3ffbaf40", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -7135,7 +8553,7 @@ "id": 512, "in_irq": false, "size": 12, - "ts": 0.062947 + "ts": 0.06367755 }, { "core_id": 0, @@ -7145,10 +8563,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.062964025 + "ts": 0.0636945 }, { "core_id": 0, @@ -7158,10 +8576,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.062980025 + "ts": 0.0637105 }, { "core_id": 0, @@ -7169,8 +8587,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (371) example: Task[0x3ffb926c]: allocated 12 bytes @ 0x3ffbb778\n", - "ts": 0.0630465 + "msg": "I (359) example: Task[0x3ffb8a34]: allocated 12 bytes @ 0x3ffbaf40\n", + "ts": 0.063765225 }, { "core_id": 0, @@ -7178,8 +8596,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (371) example: Task[0x3ffb926c]: allocated 12 bytes @ 0x3ffbb778\n", - "ts": 0.0630465 + "msg": "I (359) example: Task[0x3ffb8a34]: allocated 12 bytes @ 0x3ffbaf40\n", + "ts": 0.063765225 }, { "core_id": 0, @@ -7189,10 +8607,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12293072, + "xQueue": 12290968, "xTicksToWait": 0 }, - "ts": 0.06306005 + "ts": 0.063778675 }, { "core_id": 0, @@ -7200,9 +8618,19 @@ "id": 6, "in_irq": false, "params": { - "tid": 12295764 + "tid": 12293660 }, - "ts": 0.06307745 + "ts": 0.063791925 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12293660 + }, + "ts": 0.063791925 }, { "core_id": 1, @@ -7212,7 +8640,7 @@ "params": { "irq_num": 31 }, - "ts": 0.063093775 + "ts": 0.063808275 }, { "core_id": 0, @@ -7222,7 +8650,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.063104625 + "ts": 0.063819125 }, { "core_id": 1, @@ -7230,7 +8658,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.063115375 + "ts": 0.0638301 }, { "core_id": 0, @@ -7240,7 +8668,7 @@ "params": { "irq_num": 30 }, - "ts": 0.0631291 + "ts": 0.0638441 }, { "core_id": 1, @@ -7248,9 +8676,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12295764 + "tid": 12293660 }, - "ts": 0.06313995 + "ts": 0.0638558 }, { "core_id": 0, @@ -7258,7 +8686,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.063150775 + "ts": 0.0638672 }, { "core_id": 1, @@ -7268,18 +8696,20 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12293072, + "xQueue": 12290968, "xTicksToWait": 4294967295 }, - "ts": 0.063162625 + "ts": 0.063879175 }, { "core_id": 0, - "ctx_name": "alloc1", - "id": 17, + "ctx_name": "alloc2", + "id": 4, "in_irq": false, - "params": {}, - "ts": 0.0631729 + "params": { + "tid": 12296612 + }, + "ts": 0.063890875 }, { "core_id": 1, @@ -7289,10 +8719,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.063184375 + "ts": 0.063903475 }, { "core_id": 1, @@ -7302,148 +8732,19 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.063200675 + "ts": 0.063925875 }, { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (371) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb778\n", - "ts": 0.063264125 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (371) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb778\n", - "ts": 0.063264125 - }, - { - "addr": "0x3ffbb778", + "addr": "0x3ffbaf50", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.063285275 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.0633124 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.063323825 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.0633404 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.063666425 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.06367985 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.06369555 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0638338 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12298716 - }, - "ts": 0.0638488 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.063861575 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12298716 - }, - "ts": 0.06387725 - }, - { - "addr": "0x3ffbb778", - "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -7455,16 +8756,34 @@ "id": 512, "in_irq": false, "size": 9, - "ts": 0.06391265 + "ts": 0.063937325 }, { - "addr": "0x3ffbb788", + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (359) example: Task[0x3ffb961c]: free memory @ 0x3ffbaf40\n", + "ts": 0.063978425 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (359) example: Task[0x3ffb961c]: free memory @ 0x3ffbaf40\n", + "ts": 0.063978425 + }, + { + "addr": "0x3ffbaf60", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -7476,7 +8795,28 @@ "id": 512, "in_irq": false, "size": 18, - "ts": 0.0639513 + "ts": 0.0639896 + }, + { + "addr": "0x3ffbaf40", + "callers": [ + "0x4008da24", + "0x400d3c72", + "0x400880dc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.0640039 }, { "core_id": 0, @@ -7486,64 +8826,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.0639682 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12283904, - "xTicksToWait": 0 - }, - "ts": 0.063984175 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (372) example: Task[0x3ffba9dc]: allocated 18 bytes @ 0x3ffbb788\n", - "ts": 0.064054525 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (372) example: Task[0x3ffba9dc]: allocated 18 bytes @ 0x3ffbb788\n", - "ts": 0.064054525 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12299072, - "xTicksToWait": 0 - }, - "ts": 0.064068125 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12301764 - }, - "ts": 0.06408135 + "ts": 0.064017 }, { "core_id": 1, @@ -7553,7 +8839,97 @@ "params": { "irq_num": 31 }, - "ts": 0.06409765 + "ts": 0.0640355 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12281672, + "xTicksToWait": 0 + }, + "ts": 0.064046775 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.064057575 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.064075725 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (359) example: Task[0x3ffba1a4]: allocated 18 bytes @ 0x3ffbaf60\n", + "ts": 0.0641035 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (359) example: Task[0x3ffba1a4]: allocated 18 bytes @ 0x3ffbaf60\n", + "ts": 0.0641035 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12296968, + "xTicksToWait": 0 + }, + "ts": 0.0641211 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12299660 + }, + "ts": 0.06413435 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12299660 + }, + "ts": 0.06413435 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.0641507 }, { "core_id": 0, @@ -7563,7 +8939,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.0641085 + "ts": 0.06416155 }, { "core_id": 1, @@ -7571,7 +8947,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.064119275 + "ts": 0.064172375 }, { "core_id": 0, @@ -7581,7 +8957,7 @@ "params": { "irq_num": 30 }, - "ts": 0.064133 + "ts": 0.0641862 }, { "core_id": 1, @@ -7589,9 +8965,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12301764 + "tid": 12299660 }, - "ts": 0.064143875 + "ts": 0.06419695 }, { "core_id": 0, @@ -7599,7 +8975,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0641547 + "ts": 0.0642077 }, { "core_id": 1, @@ -7609,10 +8985,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12299072, + "xQueue": 12296968, "xTicksToWait": 4294967295 }, - "ts": 0.064166575 + "ts": 0.0642198 }, { "core_id": 0, @@ -7620,7 +8996,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.06417785 + "ts": 0.064231025 }, { "core_id": 1, @@ -7630,10 +9006,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.0641895 + "ts": 0.06424335 }, { "core_id": 1, @@ -7643,10 +9019,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.06420995 + "ts": 0.0642596 }, { "core_id": 1, @@ -7654,8 +9030,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (372) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb788\n", - "ts": 0.0642735 + "msg": "I (359) example: Task[0x3ffbad8c]: free memory @ 0x3ffbaf60\n", + "ts": 0.064307475 }, { "core_id": 1, @@ -7663,15 +9039,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (372) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb788\n", - "ts": 0.0642735 + "msg": "I (359) example: Task[0x3ffbad8c]: free memory @ 0x3ffbaf60\n", + "ts": 0.064307475 }, { - "addr": "0x3ffbb788", + "addr": "0x3ffbaf60", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", + "0x4008da24", + "0x400d3c72", + "0x400880dc", "0x0", "0x0", "0x0", @@ -7685,7 +9061,7 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 0.0642947 + "ts": 0.064328875 }, { "core_id": 1, @@ -7695,7 +9071,7 @@ "params": { "irq_num": 31 }, - "ts": 0.064321575 + "ts": 0.06435975 }, { "core_id": 1, @@ -7703,7 +9079,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.064333 + "ts": 0.064371325 }, { "core_id": 1, @@ -7711,7 +9087,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.064349575 + "ts": 0.064388025 }, { "core_id": 1, @@ -7721,7 +9097,7 @@ "params": { "irq_num": 5 }, - "ts": 0.064666425 + "ts": 0.0644482 }, { "core_id": 1, @@ -7729,7 +9105,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.06467985 + "ts": 0.064461625 }, { "core_id": 1, @@ -7737,7 +9113,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.06469555 + "ts": 0.0644772 }, { "core_id": 0, @@ -7747,7 +9123,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0648338 + "ts": 0.06454665 }, { "core_id": 0, @@ -7755,7 +9131,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.064849175 + "ts": 0.06456205 }, { "core_id": 0, @@ -7763,7 +9139,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.06486425 + "ts": 0.064577275 }, { "core_id": 1, @@ -7773,7 +9149,7 @@ "params": { "irq_num": 5 }, - "ts": 0.065666425 + "ts": 0.0654482 }, { "core_id": 1, @@ -7781,7 +9157,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.065680075 + "ts": 0.065461725 }, { "core_id": 1, @@ -7789,7 +9165,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.06569535 + "ts": 0.06547685 }, { "core_id": 0, @@ -7799,7 +9175,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0658338 + "ts": 0.06554665 }, { "core_id": 0, @@ -7807,7 +9183,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.065849175 + "ts": 0.065562 }, { "core_id": 0, @@ -7815,7 +9191,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.06586425 + "ts": 0.065577075 }, { "core_id": 1, @@ -7825,7 +9201,7 @@ "params": { "irq_num": 5 }, - "ts": 0.066666425 + "ts": 0.0664482 }, { "core_id": 1, @@ -7833,7 +9209,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.06668 + "ts": 0.066461725 }, { "core_id": 1, @@ -7841,7 +9217,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.066695125 + "ts": 0.066476975 }, { "core_id": 0, @@ -7851,7 +9227,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0668338 + "ts": 0.06654665 }, { "core_id": 0, @@ -7859,7 +9235,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.066849175 + "ts": 0.066562025 }, { "core_id": 0, @@ -7867,7 +9243,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.06686425 + "ts": 0.066577225 }, { "core_id": 1, @@ -7877,7 +9253,7 @@ "params": { "irq_num": 5 }, - "ts": 0.067666425 + "ts": 0.0674482 }, { "core_id": 1, @@ -7885,7 +9261,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.067680075 + "ts": 0.067461775 }, { "core_id": 1, @@ -7893,7 +9269,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.067695225 + "ts": 0.0674769 }, { "core_id": 0, @@ -7903,7 +9279,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0678338 + "ts": 0.06754665 }, { "core_id": 0, @@ -7911,7 +9287,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0678492 + "ts": 0.067562 }, { "core_id": 0, @@ -7919,7 +9295,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.067864425 + "ts": 0.067577075 }, { "core_id": 1, @@ -7929,7 +9305,7 @@ "params": { "irq_num": 5 }, - "ts": 0.068666425 + "ts": 0.0684482 }, { "core_id": 1, @@ -7937,7 +9313,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.06867995 + "ts": 0.068461725 }, { "core_id": 1, @@ -7945,7 +9321,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.0686951 + "ts": 0.06847685 }, { "core_id": 0, @@ -7955,7 +9331,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0688338 + "ts": 0.06854665 }, { "core_id": 0, @@ -7963,7 +9339,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.068849175 + "ts": 0.06856205 }, { "core_id": 0, @@ -7971,7 +9347,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.06886425 + "ts": 0.068577275 }, { "core_id": 1, @@ -7981,7 +9357,7 @@ "params": { "irq_num": 5 }, - "ts": 0.069666425 + "ts": 0.0694482 }, { "core_id": 1, @@ -7989,7 +9365,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.069680075 + "ts": 0.069461725 }, { "core_id": 1, @@ -7997,7 +9373,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.06969535 + "ts": 0.06947685 }, { "core_id": 0, @@ -8007,7 +9383,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0698338 + "ts": 0.06954665 }, { "core_id": 0, @@ -8015,7 +9391,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.069849175 + "ts": 0.069562 }, { "core_id": 0, @@ -8023,7 +9399,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.069868575 + "ts": 0.069577075 }, { "core_id": 1, @@ -8033,7 +9409,7 @@ "params": { "irq_num": 5 }, - "ts": 0.070666425 + "ts": 0.0704482 }, { "core_id": 1, @@ -8041,7 +9417,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.07067995 + "ts": 0.070461725 }, { "core_id": 1, @@ -8049,7 +9425,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.0706951 + "ts": 0.070476975 }, { "core_id": 0, @@ -8059,7 +9435,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0708338 + "ts": 0.07054665 }, { "core_id": 0, @@ -8067,7 +9443,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.070849175 + "ts": 0.070562025 }, { "core_id": 0, @@ -8075,7 +9451,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.07086425 + "ts": 0.070577225 }, { "core_id": 1, @@ -8085,7 +9461,7 @@ "params": { "irq_num": 5 }, - "ts": 0.071666425 + "ts": 0.0714482 }, { "core_id": 1, @@ -8093,7 +9469,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.071680075 + "ts": 0.071461775 }, { "core_id": 1, @@ -8101,7 +9477,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.07169535 + "ts": 0.0714769 }, { "core_id": 0, @@ -8111,7 +9487,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0718338 + "ts": 0.07154665 }, { "core_id": 0, @@ -8119,7 +9495,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.071849175 + "ts": 0.071562 }, { "core_id": 0, @@ -8127,7 +9503,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.07186425 + "ts": 0.071577075 }, { "core_id": 1, @@ -8137,7 +9513,7 @@ "params": { "irq_num": 5 }, - "ts": 0.072666425 + "ts": 0.0724482 }, { "core_id": 1, @@ -8145,7 +9521,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.07268 + "ts": 0.072461725 }, { "core_id": 1, @@ -8153,7 +9529,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.072695125 + "ts": 0.07247685 }, { "core_id": 0, @@ -8163,7 +9539,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0728338 + "ts": 0.07254665 }, { "core_id": 0, @@ -8171,7 +9547,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.072849175 + "ts": 0.07256205 }, { "core_id": 0, @@ -8179,7 +9555,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.07286425 + "ts": 0.072577275 }, { "core_id": 1, @@ -8189,7 +9565,7 @@ "params": { "irq_num": 5 }, - "ts": 0.073666425 + "ts": 0.0734482 }, { "core_id": 1, @@ -8197,7 +9573,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.073680075 + "ts": 0.073461725 }, { "core_id": 1, @@ -8205,7 +9581,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.073695225 + "ts": 0.07347685 }, { "core_id": 0, @@ -8215,7 +9591,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0738338 + "ts": 0.07354665 }, { "core_id": 0, @@ -8223,7 +9599,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0738492 + "ts": 0.073562 }, { "core_id": 0, @@ -8231,7 +9607,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.073864425 + "ts": 0.073577075 }, { "core_id": 1, @@ -8241,7 +9617,7 @@ "params": { "irq_num": 5 }, - "ts": 0.074666425 + "ts": 0.0744482 }, { "core_id": 1, @@ -8249,7 +9625,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.07467995 + "ts": 0.074465975 }, { "core_id": 1, @@ -8257,7 +9633,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.0746951 + "ts": 0.074481225 }, { "core_id": 0, @@ -8267,7 +9643,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0748338 + "ts": 0.07454665 }, { "core_id": 0, @@ -8275,7 +9651,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.074849175 + "ts": 0.074562 }, { "core_id": 0, @@ -8283,7 +9659,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.07486425 + "ts": 0.074577075 }, { "core_id": 1, @@ -8293,7 +9669,7 @@ "params": { "irq_num": 5 }, - "ts": 0.075666425 + "ts": 0.0754482 }, { "core_id": 1, @@ -8301,7 +9677,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.075680075 + "ts": 0.075461725 }, { "core_id": 1, @@ -8309,7 +9685,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.07569535 + "ts": 0.07547685 }, { "core_id": 0, @@ -8319,7 +9695,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0758338 + "ts": 0.07554665 }, { "core_id": 0, @@ -8327,7 +9703,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.075849175 + "ts": 0.07556205 }, { "core_id": 0, @@ -8335,7 +9711,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.07586425 + "ts": 0.075577275 }, { "core_id": 1, @@ -8345,7 +9721,7 @@ "params": { "irq_num": 5 }, - "ts": 0.076666425 + "ts": 0.0764482 }, { "core_id": 1, @@ -8353,7 +9729,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.07668 + "ts": 0.076461725 }, { "core_id": 1, @@ -8361,7 +9737,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.076695125 + "ts": 0.07647685 }, { "core_id": 0, @@ -8371,7 +9747,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0768338 + "ts": 0.07654665 }, { "core_id": 0, @@ -8379,7 +9755,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.076849175 + "ts": 0.076562 }, { "core_id": 0, @@ -8387,7 +9763,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.07686425 + "ts": 0.076577075 }, { "core_id": 1, @@ -8397,7 +9773,7 @@ "params": { "irq_num": 5 }, - "ts": 0.077666425 + "ts": 0.0774482 }, { "core_id": 1, @@ -8405,7 +9781,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.077680075 + "ts": 0.077461725 }, { "core_id": 1, @@ -8413,7 +9789,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.077695225 + "ts": 0.077476975 }, { "core_id": 0, @@ -8423,7 +9799,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0778338 + "ts": 0.07754665 }, { "core_id": 0, @@ -8431,7 +9807,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0778492 + "ts": 0.077562025 }, { "core_id": 0, @@ -8439,7 +9815,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.077864425 + "ts": 0.077577225 }, { "core_id": 1, @@ -8449,7 +9825,7 @@ "params": { "irq_num": 5 }, - "ts": 0.078666425 + "ts": 0.0784482 }, { "core_id": 1, @@ -8457,7 +9833,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.07867995 + "ts": 0.078461775 }, { "core_id": 1, @@ -8465,7 +9841,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.0786951 + "ts": 0.0784769 }, { "core_id": 0, @@ -8475,7 +9851,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0788338 + "ts": 0.07854665 }, { "core_id": 0, @@ -8483,7 +9859,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.078849175 + "ts": 0.078562 }, { "core_id": 0, @@ -8491,7 +9867,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.07886425 + "ts": 0.078577075 }, { "core_id": 1, @@ -8501,7 +9877,7 @@ "params": { "irq_num": 5 }, - "ts": 0.079666425 + "ts": 0.0794482 }, { "core_id": 1, @@ -8509,7 +9885,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.079680075 + "ts": 0.079461725 }, { "core_id": 1, @@ -8517,7 +9893,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.07969535 + "ts": 0.07947685 }, { "core_id": 0, @@ -8527,7 +9903,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0798338 + "ts": 0.07954665 }, { "core_id": 0, @@ -8535,7 +9911,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.079849175 + "ts": 0.07956205 }, { "core_id": 0, @@ -8543,7 +9919,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.07986425 + "ts": 0.079577275 }, { "core_id": 1, @@ -8553,7 +9929,7 @@ "params": { "irq_num": 5 }, - "ts": 0.080666425 + "ts": 0.0804482 }, { "core_id": 1, @@ -8561,7 +9937,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.08068 + "ts": 0.080461725 }, { "core_id": 1, @@ -8569,7 +9945,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.080695125 + "ts": 0.08047685 }, { "core_id": 0, @@ -8579,7 +9955,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0808338 + "ts": 0.08054665 }, { "core_id": 0, @@ -8587,7 +9963,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.080849175 + "ts": 0.080562 }, { "core_id": 0, @@ -8595,7 +9971,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.08086425 + "ts": 0.080577075 }, { "core_id": 1, @@ -8605,7 +9981,7 @@ "params": { "irq_num": 5 }, - "ts": 0.081666425 + "ts": 0.0814482 }, { "core_id": 1, @@ -8613,7 +9989,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.081680075 + "ts": 0.081461725 }, { "core_id": 1, @@ -8621,7 +9997,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.081695225 + "ts": 0.081476975 }, { "core_id": 0, @@ -8631,7 +10007,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0818338 + "ts": 0.08154665 }, { "core_id": 0, @@ -8639,7 +10015,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0818492 + "ts": 0.081562025 }, { "core_id": 0, @@ -8647,7 +10023,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.081864425 + "ts": 0.081577225 }, { "core_id": 1, @@ -8657,7 +10033,7 @@ "params": { "irq_num": 5 }, - "ts": 0.082666425 + "ts": 0.0824482 }, { "core_id": 1, @@ -8665,7 +10041,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.082680075 + "ts": 0.082461775 }, { "core_id": 1, @@ -8673,7 +10049,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.08269535 + "ts": 0.0824769 }, { "core_id": 0, @@ -8683,7 +10059,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0828338 + "ts": 0.08254665 }, { "core_id": 0, @@ -8691,7 +10067,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.082849175 + "ts": 0.082562 }, { "core_id": 0, @@ -8699,7 +10075,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.08286425 + "ts": 0.082577075 }, { "core_id": 1, @@ -8709,7 +10085,7 @@ "params": { "irq_num": 5 }, - "ts": 0.083666425 + "ts": 0.0834482 }, { "core_id": 1, @@ -8717,7 +10093,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.08368 + "ts": 0.083461725 }, { "core_id": 1, @@ -8725,7 +10101,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.083695125 + "ts": 0.08347685 }, { "core_id": 0, @@ -8735,7 +10111,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0838338 + "ts": 0.08354665 }, { "core_id": 0, @@ -8743,7 +10119,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.083849175 + "ts": 0.08356205 }, { "core_id": 0, @@ -8751,7 +10127,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.08386425 + "ts": 0.083577275 }, { "core_id": 1, @@ -8761,7 +10137,7 @@ "params": { "irq_num": 5 }, - "ts": 0.084666425 + "ts": 0.0844482 }, { "core_id": 1, @@ -8769,7 +10145,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.084680075 + "ts": 0.084461725 }, { "core_id": 1, @@ -8777,7 +10153,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.084695225 + "ts": 0.08447685 }, { "core_id": 0, @@ -8787,7 +10163,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0848338 + "ts": 0.08454665 }, { "core_id": 0, @@ -8795,7 +10171,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0848492 + "ts": 0.084562 }, { "core_id": 0, @@ -8803,7 +10179,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.084864425 + "ts": 0.084577075 }, { "core_id": 1, @@ -8813,7 +10189,7 @@ "params": { "irq_num": 5 }, - "ts": 0.085666425 + "ts": 0.0854482 }, { "core_id": 1, @@ -8821,7 +10197,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.08567995 + "ts": 0.085461725 }, { "core_id": 1, @@ -8829,7 +10205,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.0856951 + "ts": 0.085476975 }, { "core_id": 0, @@ -8839,7 +10215,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0858338 + "ts": 0.08554665 }, { "core_id": 0, @@ -8847,7 +10223,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.085849175 + "ts": 0.085562025 }, { "core_id": 0, @@ -8855,7 +10231,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.08586425 + "ts": 0.085577225 }, { "core_id": 1, @@ -8865,7 +10241,7 @@ "params": { "irq_num": 5 }, - "ts": 0.086666425 + "ts": 0.0864482 }, { "core_id": 1, @@ -8873,7 +10249,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.086680075 + "ts": 0.0864653 }, { "core_id": 1, @@ -8881,7 +10257,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.08669535 + "ts": 0.08648045 }, { "core_id": 0, @@ -8891,7 +10267,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0868338 + "ts": 0.08654665 }, { "core_id": 0, @@ -8899,7 +10275,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.086849175 + "ts": 0.086562 }, { "core_id": 0, @@ -8907,7 +10283,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.08686425 + "ts": 0.086577075 }, { "core_id": 1, @@ -8917,7 +10293,7 @@ "params": { "irq_num": 5 }, - "ts": 0.087666425 + "ts": 0.0874482 }, { "core_id": 1, @@ -8925,7 +10301,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.08768 + "ts": 0.087461725 }, { "core_id": 1, @@ -8933,7 +10309,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.087695125 + "ts": 0.08747685 }, { "core_id": 0, @@ -8943,7 +10319,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0878338 + "ts": 0.08754665 }, { "core_id": 0, @@ -8951,7 +10327,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.087849175 + "ts": 0.08756205 }, { "core_id": 0, @@ -8959,7 +10335,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.08786425 + "ts": 0.087577275 }, { "core_id": 1, @@ -8969,7 +10345,7 @@ "params": { "irq_num": 5 }, - "ts": 0.088666425 + "ts": 0.0884482 }, { "core_id": 1, @@ -8977,7 +10353,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.088680075 + "ts": 0.088461725 }, { "core_id": 1, @@ -8985,7 +10361,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.088695225 + "ts": 0.08847685 }, { "core_id": 0, @@ -8995,7 +10371,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0888338 + "ts": 0.08854665 }, { "core_id": 0, @@ -9003,7 +10379,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0888492 + "ts": 0.088562 }, { "core_id": 0, @@ -9011,7 +10387,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.088864425 + "ts": 0.088577075 }, { "core_id": 1, @@ -9021,7 +10397,7 @@ "params": { "irq_num": 5 }, - "ts": 0.089666425 + "ts": 0.0894482 }, { "core_id": 1, @@ -9029,7 +10405,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.08967995 + "ts": 0.089461725 }, { "core_id": 1, @@ -9037,7 +10413,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.0896951 + "ts": 0.089476975 }, { "core_id": 0, @@ -9047,7 +10423,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0898338 + "ts": 0.08954665 }, { "core_id": 0, @@ -9055,7 +10431,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.089849175 + "ts": 0.089562025 }, { "core_id": 0, @@ -9063,7 +10439,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.08986425 + "ts": 0.089577225 }, { "core_id": 1, @@ -9073,7 +10449,7 @@ "params": { "irq_num": 5 }, - "ts": 0.090666425 + "ts": 0.0904482 }, { "core_id": 1, @@ -9081,7 +10457,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.090680075 + "ts": 0.090461775 }, { "core_id": 1, @@ -9089,7 +10465,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.09069535 + "ts": 0.0904769 }, { "core_id": 0, @@ -9099,7 +10475,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0908338 + "ts": 0.09054665 }, { "core_id": 0, @@ -9107,7 +10483,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.090849175 + "ts": 0.090562 }, { "core_id": 0, @@ -9115,7 +10491,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.09086425 + "ts": 0.090577075 }, { "core_id": 1, @@ -9125,7 +10501,7 @@ "params": { "irq_num": 5 }, - "ts": 0.091666425 + "ts": 0.0914482 }, { "core_id": 1, @@ -9133,7 +10509,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.09168 + "ts": 0.091461725 }, { "core_id": 1, @@ -9141,7 +10517,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.091695125 + "ts": 0.09147685 }, { "core_id": 0, @@ -9151,7 +10527,59 @@ "params": { "irq_num": 5 }, - "ts": 0.0918338 + "ts": 0.09154665 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.09156205 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.091577275 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.0924482 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.092461725 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.09247685 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.09254665 }, { "core_id": 0, @@ -9159,9 +10587,19 @@ "id": 6, "in_irq": true, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.0918488 + "ts": 0.092561625 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12284596 + }, + "ts": 0.092561625 }, { "core_id": 0, @@ -9169,7 +10607,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.091861575 + "ts": 0.092574275 }, { "core_id": 0, @@ -9177,18 +10615,18 @@ "id": 4, "in_irq": false, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.09187725 + "ts": 0.092590075 }, { - "addr": "0x3ffbb788", + "addr": "0x3ffbaf40", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -9200,16 +10638,16 @@ "id": 512, "in_irq": false, "size": 4, - "ts": 0.091912475 + "ts": 0.092625125 }, { - "addr": "0x3ffbb798", + "addr": "0x3ffbaf60", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -9221,7 +10659,7 @@ "id": 512, "in_irq": false, "size": 8, - "ts": 0.0919503 + "ts": 0.0926607 }, { "core_id": 0, @@ -9231,10 +10669,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.0919672 + "ts": 0.092677675 }, { "core_id": 0, @@ -9244,10 +10682,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.0919832 + "ts": 0.092693775 }, { "core_id": 0, @@ -9255,8 +10693,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (400) example: Task[0x3ffb7aec]: allocated 8 bytes @ 0x3ffbb798\n", - "ts": 0.09204735 + "msg": "I (388) example: Task[0x3ffb72b4]: allocated 8 bytes @ 0x3ffbaf60\n", + "ts": 0.09275055 }, { "core_id": 0, @@ -9264,8 +10702,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (400) example: Task[0x3ffb7aec]: allocated 8 bytes @ 0x3ffbb798\n", - "ts": 0.09204735 + "msg": "I (388) example: Task[0x3ffb72b4]: allocated 8 bytes @ 0x3ffbaf60\n", + "ts": 0.09275055 }, { "core_id": 0, @@ -9275,10 +10713,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12287056, + "xQueue": 12284952, "xTicksToWait": 0 }, - "ts": 0.092060925 + "ts": 0.092764 }, { "core_id": 0, @@ -9286,9 +10724,19 @@ "id": 6, "in_irq": false, "params": { - "tid": 12289748 + "tid": 12287644 }, - "ts": 0.092074075 + "ts": 0.092777225 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12287644 + }, + "ts": 0.092777225 }, { "core_id": 1, @@ -9298,7 +10746,7 @@ "params": { "irq_num": 31 }, - "ts": 0.092090275 + "ts": 0.092793475 }, { "core_id": 0, @@ -9308,7 +10756,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.092101125 + "ts": 0.092804425 }, { "core_id": 1, @@ -9316,7 +10764,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.092111925 + "ts": 0.092815175 }, { "core_id": 0, @@ -9326,7 +10774,7 @@ "params": { "irq_num": 30 }, - "ts": 0.0921258 + "ts": 0.092828925 }, { "core_id": 1, @@ -9334,9 +10782,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12289748 + "tid": 12287644 }, - "ts": 0.092136625 + "ts": 0.09283965 }, { "core_id": 0, @@ -9344,7 +10792,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.092147475 + "ts": 0.09285045 }, { "core_id": 1, @@ -9354,10 +10802,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12287056, + "xQueue": 12284952, "xTicksToWait": 4294967295 }, - "ts": 0.09215935 + "ts": 0.09286245 }, { "core_id": 0, @@ -9365,7 +10813,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.092169575 + "ts": 0.092872675 }, { "core_id": 1, @@ -9375,10 +10823,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.09218105 + "ts": 0.092884425 }, { "core_id": 1, @@ -9388,10 +10836,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.0922013 + "ts": 0.0929007 }, { "core_id": 1, @@ -9399,8 +10847,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (400) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb798\n", - "ts": 0.09226485 + "msg": "I (388) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbaf60\n", + "ts": 0.092948475 }, { "core_id": 1, @@ -9408,15 +10856,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (400) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb798\n", - "ts": 0.09226485 + "msg": "I (388) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbaf60\n", + "ts": 0.092948475 }, { - "addr": "0x3ffbb798", + "addr": "0x3ffbaf60", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", + "0x4008da24", + "0x400d3c72", + "0x400880dc", "0x0", "0x0", "0x0", @@ -9430,7 +10878,7 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 0.09228605 + "ts": 0.09296985 }, { "core_id": 1, @@ -9440,7 +10888,7 @@ "params": { "irq_num": 31 }, - "ts": 0.09231295 + "ts": 0.0930013 }, { "core_id": 1, @@ -9448,7 +10896,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0923245 + "ts": 0.09301275 }, { "core_id": 1, @@ -9456,7 +10904,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.092341075 + "ts": 0.09302945 }, { "core_id": 1, @@ -9466,7 +10914,7 @@ "params": { "irq_num": 5 }, - "ts": 0.092666425 + "ts": 0.0934482 }, { "core_id": 1, @@ -9474,7 +10922,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.09267985 + "ts": 0.093461725 }, { "core_id": 1, @@ -9482,7 +10930,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.09269555 + "ts": 0.0934773 }, { "core_id": 0, @@ -9492,7 +10940,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0928338 + "ts": 0.09354665 }, { "core_id": 0, @@ -9500,9 +10948,39 @@ "id": 6, "in_irq": true, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.0928488 + "ts": 0.093561625 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12290612 + }, + "ts": 0.093561625 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12296612 + }, + "ts": 0.0935735 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12296612 + }, + "ts": 0.0935735 }, { "core_id": 0, @@ -9510,7 +10988,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.092861575 + "ts": 0.093585975 }, { "core_id": 0, @@ -9518,18 +10996,18 @@ "id": 4, "in_irq": false, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.092877375 + "ts": 0.093601625 }, { - "addr": "0x3ffbb798", + "addr": "0x3ffbaf60", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -9541,16 +11019,16 @@ "id": 512, "in_irq": false, "size": 8, - "ts": 0.092912775 + "ts": 0.093638 }, { - "addr": "0x3ffbb7a8", + "addr": "0x3ffbaf70", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -9562,7 +11040,7 @@ "id": 512, "in_irq": false, "size": 16, - "ts": 0.0929473 + "ts": 0.09367345 }, { "core_id": 0, @@ -9572,10 +11050,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.09296425 + "ts": 0.0936905 }, { "core_id": 0, @@ -9585,10 +11063,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.092984425 + "ts": 0.093706525 }, { "core_id": 0, @@ -9596,8 +11074,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (401) example: Task[0x3ffb926c]: allocated 16 bytes @ 0x3ffbb7a8\n", - "ts": 0.0930509 + "msg": "I (389) example: Task[0x3ffb8a34]: allocated 16 bytes @ 0x3ffbaf70\n", + "ts": 0.09376135 }, { "core_id": 0, @@ -9605,8 +11083,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (401) example: Task[0x3ffb926c]: allocated 16 bytes @ 0x3ffbb7a8\n", - "ts": 0.0930509 + "msg": "I (389) example: Task[0x3ffb8a34]: allocated 16 bytes @ 0x3ffbaf70\n", + "ts": 0.09376135 }, { "core_id": 0, @@ -9616,10 +11094,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12293072, + "xQueue": 12290968, "xTicksToWait": 0 }, - "ts": 0.09306455 + "ts": 0.093778125 }, { "core_id": 0, @@ -9627,9 +11105,19 @@ "id": 6, "in_irq": false, "params": { - "tid": 12295764 + "tid": 12293660 }, - "ts": 0.09307785 + "ts": 0.0937915 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12293660 + }, + "ts": 0.0937915 }, { "core_id": 1, @@ -9639,7 +11127,7 @@ "params": { "irq_num": 31 }, - "ts": 0.093094175 + "ts": 0.09380785 }, { "core_id": 0, @@ -9649,7 +11137,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.093105025 + "ts": 0.0938187 }, { "core_id": 1, @@ -9657,7 +11145,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.093115775 + "ts": 0.093829525 }, { "core_id": 0, @@ -9667,7 +11155,7 @@ "params": { "irq_num": 30 }, - "ts": 0.0931295 + "ts": 0.0938433 }, { "core_id": 1, @@ -9675,9 +11163,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12295764 + "tid": 12293660 }, - "ts": 0.09314035 + "ts": 0.09385525 }, { "core_id": 0, @@ -9685,7 +11173,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.093151175 + "ts": 0.0938664 }, { "core_id": 1, @@ -9695,18 +11183,20 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12293072, + "xQueue": 12290968, "xTicksToWait": 4294967295 }, - "ts": 0.093163025 + "ts": 0.09387835 }, { "core_id": 0, - "ctx_name": "alloc1", - "id": 17, + "ctx_name": "alloc2", + "id": 4, "in_irq": false, - "params": {}, - "ts": 0.0931733 + "params": { + "tid": 12296612 + }, + "ts": 0.09389 }, { "core_id": 1, @@ -9716,10 +11206,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.093184775 + "ts": 0.0939017 }, { "core_id": 1, @@ -9729,148 +11219,19 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.093201075 + "ts": 0.0939203 }, { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (401) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb7a8\n", - "ts": 0.093264525 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (401) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb7a8\n", - "ts": 0.093264525 - }, - { - "addr": "0x3ffbb7a8", + "addr": "0x3ffbaf84", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.09328955 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.09331655 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.093327975 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.09334455 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.093666425 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.09367985 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.09369555 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.0938338 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12298716 - }, - "ts": 0.0938488 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.093861575 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12298716 - }, - "ts": 0.09387725 - }, - { - "addr": "0x3ffbb7a8", - "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -9882,16 +11243,34 @@ "id": 512, "in_irq": false, "size": 12, - "ts": 0.09391265 + "ts": 0.0939334 }, { - "addr": "0x3ffbb7b8", + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (389) example: Task[0x3ffb961c]: free memory @ 0x3ffbaf70\n", + "ts": 0.09397395 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (389) example: Task[0x3ffb961c]: free memory @ 0x3ffbaf70\n", + "ts": 0.09397395 + }, + { + "addr": "0x3ffbaf94", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -9903,7 +11282,28 @@ "id": 512, "in_irq": false, "size": 24, - "ts": 0.09394705 + "ts": 0.093989825 + }, + { + "addr": "0x3ffbaf70", + "callers": [ + "0x4008da24", + "0x400d3c72", + "0x400880dc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.094004125 }, { "core_id": 0, @@ -9913,10 +11313,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.09396395 + "ts": 0.09401655 }, { "core_id": 0, @@ -9926,51 +11326,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.09398005 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (402) example: Task[0x3ffba9dc]: allocated 24 bytes @ 0x3ffbb7b8\n", - "ts": 0.094050525 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (402) example: Task[0x3ffba9dc]: allocated 24 bytes @ 0x3ffbb7b8\n", - "ts": 0.094050525 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12299072, - "xTicksToWait": 0 - }, - "ts": 0.09406835 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12301764 - }, - "ts": 0.094081575 + "ts": 0.0940366 }, { "core_id": 1, @@ -9980,7 +11339,84 @@ "params": { "irq_num": 31 }, - "ts": 0.094097875 + "ts": 0.094047525 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.09405905 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.094077025 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (389) example: Task[0x3ffba1a4]: allocated 24 bytes @ 0x3ffbaf94\n", + "ts": 0.094095025 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (389) example: Task[0x3ffba1a4]: allocated 24 bytes @ 0x3ffbaf94\n", + "ts": 0.094095025 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12296968, + "xTicksToWait": 0 + }, + "ts": 0.09410845 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12299660 + }, + "ts": 0.094125225 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12299660 + }, + "ts": 0.094125225 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.094141575 }, { "core_id": 0, @@ -9990,7 +11426,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.094108725 + "ts": 0.094152425 }, { "core_id": 1, @@ -9998,7 +11434,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0941195 + "ts": 0.09416325 }, { "core_id": 0, @@ -10008,7 +11444,7 @@ "params": { "irq_num": 30 }, - "ts": 0.094133225 + "ts": 0.09417705 }, { "core_id": 1, @@ -10016,9 +11452,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12301764 + "tid": 12299660 }, - "ts": 0.0941441 + "ts": 0.0941878 }, { "core_id": 0, @@ -10026,7 +11462,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.094154925 + "ts": 0.0941986 }, { "core_id": 1, @@ -10036,10 +11472,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12299072, + "xQueue": 12296968, "xTicksToWait": 4294967295 }, - "ts": 0.0941668 + "ts": 0.09421055 }, { "core_id": 0, @@ -10047,7 +11483,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.094178075 + "ts": 0.094221775 }, { "core_id": 1, @@ -10057,10 +11493,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.094189725 + "ts": 0.0942336 }, { "core_id": 1, @@ -10070,10 +11506,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.0942061 + "ts": 0.09424985 }, { "core_id": 1, @@ -10081,8 +11517,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (402) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb7b8\n", - "ts": 0.09426965 + "msg": "I (389) example: Task[0x3ffbad8c]: free memory @ 0x3ffbaf94\n", + "ts": 0.094297625 }, { "core_id": 1, @@ -10090,15 +11526,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (402) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb7b8\n", - "ts": 0.09426965 + "msg": "I (389) example: Task[0x3ffbad8c]: free memory @ 0x3ffbaf94\n", + "ts": 0.094297625 }, { - "addr": "0x3ffbb7b8", + "addr": "0x3ffbaf94", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", + "0x4008da24", + "0x400d3c72", + "0x400880dc", "0x0", "0x0", "0x0", @@ -10112,7 +11548,7 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 0.09429085 + "ts": 0.094319 }, { "core_id": 1, @@ -10122,7 +11558,7 @@ "params": { "irq_num": 31 }, - "ts": 0.094321875 + "ts": 0.094346425 }, { "core_id": 1, @@ -10130,7 +11566,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.09433335 + "ts": 0.094357825 }, { "core_id": 1, @@ -10138,7 +11574,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.09435005 + "ts": 0.0943744 }, { "core_id": 1, @@ -10148,7 +11584,7 @@ "params": { "irq_num": 5 }, - "ts": 0.094666425 + "ts": 0.0944482 }, { "core_id": 1, @@ -10156,7 +11592,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.094679875 + "ts": 0.094461625 }, { "core_id": 1, @@ -10164,7 +11600,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.09469545 + "ts": 0.0944772 }, { "core_id": 0, @@ -10174,7 +11610,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0948338 + "ts": 0.09454665 }, { "core_id": 0, @@ -10182,7 +11618,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0948492 + "ts": 0.094562 }, { "core_id": 0, @@ -10190,7 +11626,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.094864425 + "ts": 0.094577075 }, { "core_id": 1, @@ -10200,7 +11636,7 @@ "params": { "irq_num": 5 }, - "ts": 0.095666425 + "ts": 0.0954482 }, { "core_id": 1, @@ -10208,7 +11644,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.09567995 + "ts": 0.095461725 }, { "core_id": 1, @@ -10216,7 +11652,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.0956951 + "ts": 0.09547685 }, { "core_id": 0, @@ -10226,7 +11662,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0958338 + "ts": 0.09554665 }, { "core_id": 0, @@ -10234,7 +11670,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.095849175 + "ts": 0.09556205 }, { "core_id": 0, @@ -10242,7 +11678,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.09586425 + "ts": 0.095577275 }, { "core_id": 1, @@ -10252,7 +11688,7 @@ "params": { "irq_num": 5 }, - "ts": 0.096666425 + "ts": 0.0964482 }, { "core_id": 1, @@ -10260,7 +11696,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.096680075 + "ts": 0.096461725 }, { "core_id": 1, @@ -10268,7 +11704,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.09669535 + "ts": 0.09647685 }, { "core_id": 0, @@ -10278,7 +11714,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0968338 + "ts": 0.09654665 }, { "core_id": 0, @@ -10286,7 +11722,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.096849175 + "ts": 0.096565625 }, { "core_id": 0, @@ -10294,7 +11730,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.09686425 + "ts": 0.09658085 }, { "core_id": 1, @@ -10304,7 +11740,7 @@ "params": { "irq_num": 5 }, - "ts": 0.097666425 + "ts": 0.0974482 }, { "core_id": 1, @@ -10312,7 +11748,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.09768 + "ts": 0.097461725 }, { "core_id": 1, @@ -10320,7 +11756,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.097695125 + "ts": 0.09747685 }, { "core_id": 0, @@ -10330,7 +11766,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0978338 + "ts": 0.09754665 }, { "core_id": 0, @@ -10338,7 +11774,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.097849175 + "ts": 0.097562 }, { "core_id": 0, @@ -10346,7 +11782,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.09786425 + "ts": 0.097577075 }, { "core_id": 1, @@ -10356,7 +11792,7 @@ "params": { "irq_num": 5 }, - "ts": 0.098666425 + "ts": 0.0984482 }, { "core_id": 1, @@ -10364,7 +11800,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.098680075 + "ts": 0.098461725 }, { "core_id": 1, @@ -10372,7 +11808,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.098695225 + "ts": 0.098476975 }, { "core_id": 0, @@ -10382,7 +11818,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0988338 + "ts": 0.09854665 }, { "core_id": 0, @@ -10390,7 +11826,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.0988492 + "ts": 0.098562025 }, { "core_id": 0, @@ -10398,7 +11834,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.098864425 + "ts": 0.098577225 }, { "core_id": 1, @@ -10408,7 +11844,7 @@ "params": { "irq_num": 5 }, - "ts": 0.099666425 + "ts": 0.0994482 }, { "core_id": 1, @@ -10416,7 +11852,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.09967995 + "ts": 0.099461775 }, { "core_id": 1, @@ -10424,7 +11860,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.0996951 + "ts": 0.0994769 }, { "core_id": 0, @@ -10434,7 +11870,7 @@ "params": { "irq_num": 5 }, - "ts": 0.0998338 + "ts": 0.09954665 }, { "core_id": 0, @@ -10442,7 +11878,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.099849175 + "ts": 0.099562 }, { "core_id": 0, @@ -10450,7 +11886,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.09986425 + "ts": 0.099577075 }, { "core_id": 1, @@ -10460,7 +11896,7 @@ "params": { "irq_num": 5 }, - "ts": 0.100666425 + "ts": 0.1004482 }, { "core_id": 1, @@ -10468,7 +11904,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.100680075 + "ts": 0.100461725 }, { "core_id": 1, @@ -10476,7 +11912,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.10069535 + "ts": 0.10047685 }, { "core_id": 0, @@ -10486,7 +11922,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1008338 + "ts": 0.10054665 }, { "core_id": 0, @@ -10494,7 +11930,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.100849175 + "ts": 0.10056205 }, { "core_id": 0, @@ -10502,7 +11938,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.10086425 + "ts": 0.100577275 }, { "core_id": 1, @@ -10512,7 +11948,7 @@ "params": { "irq_num": 5 }, - "ts": 0.101666425 + "ts": 0.1014482 }, { "core_id": 1, @@ -10520,7 +11956,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.10168 + "ts": 0.101461725 }, { "core_id": 1, @@ -10528,7 +11964,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.101695125 + "ts": 0.10147685 }, { "core_id": 0, @@ -10538,7 +11974,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1018338 + "ts": 0.10154665 }, { "core_id": 0, @@ -10546,7 +11982,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.101849175 + "ts": 0.101562 }, { "core_id": 0, @@ -10554,7 +11990,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.10186425 + "ts": 0.101577075 }, { "core_id": 1, @@ -10564,7 +12000,7 @@ "params": { "irq_num": 5 }, - "ts": 0.102666425 + "ts": 0.1024482 }, { "core_id": 1, @@ -10572,7 +12008,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.102680075 + "ts": 0.102461725 }, { "core_id": 1, @@ -10580,7 +12016,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.102695225 + "ts": 0.102476975 }, { "core_id": 0, @@ -10590,7 +12026,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1028338 + "ts": 0.10254665 }, { "core_id": 0, @@ -10598,7 +12034,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1028492 + "ts": 0.102562025 }, { "core_id": 0, @@ -10606,7 +12042,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.102864425 + "ts": 0.102577225 }, { "core_id": 1, @@ -10616,7 +12052,7 @@ "params": { "irq_num": 5 }, - "ts": 0.103666425 + "ts": 0.1034482 }, { "core_id": 1, @@ -10624,7 +12060,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.10367995 + "ts": 0.103461775 }, { "core_id": 1, @@ -10632,7 +12068,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.1036951 + "ts": 0.1034769 }, { "core_id": 0, @@ -10642,7 +12078,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1038338 + "ts": 0.10354665 }, { "core_id": 0, @@ -10650,7 +12086,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.103849175 + "ts": 0.103562 }, { "core_id": 0, @@ -10658,7 +12094,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.10386425 + "ts": 0.103577075 }, { "core_id": 1, @@ -10668,7 +12104,7 @@ "params": { "irq_num": 5 }, - "ts": 0.104666425 + "ts": 0.1044482 }, { "core_id": 1, @@ -10676,7 +12112,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.104683575 + "ts": 0.104461725 }, { "core_id": 1, @@ -10684,7 +12120,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.104698725 + "ts": 0.10447685 }, { "core_id": 0, @@ -10694,7 +12130,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1048338 + "ts": 0.10454665 }, { "core_id": 0, @@ -10702,7 +12138,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.104849175 + "ts": 0.10456205 }, { "core_id": 0, @@ -10710,7 +12146,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.10486425 + "ts": 0.104577275 }, { "core_id": 1, @@ -10720,7 +12156,7 @@ "params": { "irq_num": 5 }, - "ts": 0.105666425 + "ts": 0.1054482 }, { "core_id": 1, @@ -10728,7 +12164,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.105680075 + "ts": 0.105461725 }, { "core_id": 1, @@ -10736,7 +12172,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.105695225 + "ts": 0.10547685 }, { "core_id": 0, @@ -10746,7 +12182,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1058338 + "ts": 0.10554665 }, { "core_id": 0, @@ -10754,7 +12190,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1058492 + "ts": 0.105562 }, { "core_id": 0, @@ -10762,7 +12198,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.105864425 + "ts": 0.105577075 }, { "core_id": 1, @@ -10772,7 +12208,7 @@ "params": { "irq_num": 5 }, - "ts": 0.106666425 + "ts": 0.1064482 }, { "core_id": 1, @@ -10780,7 +12216,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.10667995 + "ts": 0.106461725 }, { "core_id": 1, @@ -10788,7 +12224,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.1066951 + "ts": 0.106476975 }, { "core_id": 0, @@ -10798,7 +12234,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1068338 + "ts": 0.10654665 }, { "core_id": 0, @@ -10806,7 +12242,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.106849175 + "ts": 0.106562025 }, { "core_id": 0, @@ -10814,7 +12250,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.10686425 + "ts": 0.106577225 }, { "core_id": 1, @@ -10824,7 +12260,7 @@ "params": { "irq_num": 5 }, - "ts": 0.107666425 + "ts": 0.1074482 }, { "core_id": 1, @@ -10832,7 +12268,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.107680075 + "ts": 0.107461775 }, { "core_id": 1, @@ -10840,7 +12276,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.10769535 + "ts": 0.1074769 }, { "core_id": 0, @@ -10850,7 +12286,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1078338 + "ts": 0.10754665 }, { "core_id": 0, @@ -10858,7 +12294,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.107849175 + "ts": 0.107562 }, { "core_id": 0, @@ -10866,7 +12302,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.10786425 + "ts": 0.107577075 }, { "core_id": 1, @@ -10876,7 +12312,7 @@ "params": { "irq_num": 5 }, - "ts": 0.108666425 + "ts": 0.1084482 }, { "core_id": 1, @@ -10884,7 +12320,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.10868 + "ts": 0.108461725 }, { "core_id": 1, @@ -10892,7 +12328,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.108695125 + "ts": 0.10847685 }, { "core_id": 0, @@ -10902,7 +12338,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1088338 + "ts": 0.10854665 }, { "core_id": 0, @@ -10910,7 +12346,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.108849175 + "ts": 0.1085663 }, { "core_id": 0, @@ -10918,7 +12354,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.10886425 + "ts": 0.1085815 }, { "core_id": 1, @@ -10928,7 +12364,7 @@ "params": { "irq_num": 5 }, - "ts": 0.109666425 + "ts": 0.1094482 }, { "core_id": 1, @@ -10936,7 +12372,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.109680075 + "ts": 0.109461725 }, { "core_id": 1, @@ -10944,7 +12380,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.109695225 + "ts": 0.10947685 }, { "core_id": 0, @@ -10954,7 +12390,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1098338 + "ts": 0.10954665 }, { "core_id": 0, @@ -10962,7 +12398,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1098492 + "ts": 0.109562 }, { "core_id": 0, @@ -10970,7 +12406,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.109864425 + "ts": 0.109577075 }, { "core_id": 1, @@ -10980,7 +12416,7 @@ "params": { "irq_num": 5 }, - "ts": 0.110666425 + "ts": 0.1104482 }, { "core_id": 1, @@ -10988,7 +12424,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.11067995 + "ts": 0.110461725 }, { "core_id": 1, @@ -10996,7 +12432,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.1106951 + "ts": 0.110476975 }, { "core_id": 0, @@ -11006,7 +12442,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1108338 + "ts": 0.11054665 }, { "core_id": 0, @@ -11014,7 +12450,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.110849175 + "ts": 0.110562025 }, { "core_id": 0, @@ -11022,7 +12458,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.11086425 + "ts": 0.110577225 }, { "core_id": 1, @@ -11032,7 +12468,7 @@ "params": { "irq_num": 5 }, - "ts": 0.111666425 + "ts": 0.1114482 }, { "core_id": 1, @@ -11040,7 +12476,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.111680075 + "ts": 0.111461775 }, { "core_id": 1, @@ -11048,7 +12484,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.11169535 + "ts": 0.1114769 }, { "core_id": 0, @@ -11058,7 +12494,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1118338 + "ts": 0.11154665 }, { "core_id": 0, @@ -11066,7 +12502,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.111849175 + "ts": 0.111562 }, { "core_id": 0, @@ -11074,7 +12510,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.11186425 + "ts": 0.111577075 }, { "core_id": 1, @@ -11084,7 +12520,7 @@ "params": { "irq_num": 5 }, - "ts": 0.112666425 + "ts": 0.1124482 }, { "core_id": 1, @@ -11092,7 +12528,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.11268 + "ts": 0.112461725 }, { "core_id": 1, @@ -11100,7 +12536,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.112695125 + "ts": 0.11247685 }, { "core_id": 0, @@ -11110,7 +12546,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1128338 + "ts": 0.11254665 }, { "core_id": 0, @@ -11118,7 +12554,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.112849175 + "ts": 0.11256205 }, { "core_id": 0, @@ -11126,7 +12562,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.11286425 + "ts": 0.112577275 }, { "core_id": 1, @@ -11136,7 +12572,7 @@ "params": { "irq_num": 5 }, - "ts": 0.113666425 + "ts": 0.1134482 }, { "core_id": 1, @@ -11144,7 +12580,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.113680075 + "ts": 0.113461725 }, { "core_id": 1, @@ -11152,7 +12588,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.113695225 + "ts": 0.11347685 }, { "core_id": 0, @@ -11162,7 +12598,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1138338 + "ts": 0.11354665 }, { "core_id": 0, @@ -11170,7 +12606,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1138492 + "ts": 0.113562 }, { "core_id": 0, @@ -11178,7 +12614,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.113864425 + "ts": 0.113577075 }, { "core_id": 1, @@ -11188,7 +12624,7 @@ "params": { "irq_num": 5 }, - "ts": 0.114666425 + "ts": 0.1144482 }, { "core_id": 1, @@ -11196,7 +12632,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.11467995 + "ts": 0.114461725 }, { "core_id": 1, @@ -11204,7 +12640,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.1146951 + "ts": 0.114476975 }, { "core_id": 0, @@ -11214,7 +12650,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1148338 + "ts": 0.11454665 }, { "core_id": 0, @@ -11222,7 +12658,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.114849175 + "ts": 0.114562025 }, { "core_id": 0, @@ -11230,7 +12666,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.11486425 + "ts": 0.114577225 }, { "core_id": 1, @@ -11240,7 +12676,7 @@ "params": { "irq_num": 5 }, - "ts": 0.115666425 + "ts": 0.1154482 }, { "core_id": 1, @@ -11248,7 +12684,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.115680075 + "ts": 0.115461775 }, { "core_id": 1, @@ -11256,7 +12692,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.11569535 + "ts": 0.1154769 }, { "core_id": 0, @@ -11266,7 +12702,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1158338 + "ts": 0.11554665 }, { "core_id": 0, @@ -11274,7 +12710,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.115849175 + "ts": 0.115562 }, { "core_id": 0, @@ -11282,7 +12718,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.11586425 + "ts": 0.115577075 }, { "core_id": 1, @@ -11292,7 +12728,7 @@ "params": { "irq_num": 5 }, - "ts": 0.116666425 + "ts": 0.1164482 }, { "core_id": 1, @@ -11300,7 +12736,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.116684225 + "ts": 0.116461725 }, { "core_id": 1, @@ -11308,7 +12744,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.116699375 + "ts": 0.11647685 }, { "core_id": 0, @@ -11318,7 +12754,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1168338 + "ts": 0.11654665 }, { "core_id": 0, @@ -11326,7 +12762,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.116849175 + "ts": 0.11656205 }, { "core_id": 0, @@ -11334,7 +12770,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.11686425 + "ts": 0.116577275 }, { "core_id": 1, @@ -11344,7 +12780,7 @@ "params": { "irq_num": 5 }, - "ts": 0.117666425 + "ts": 0.1174482 }, { "core_id": 1, @@ -11352,7 +12788,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.117680075 + "ts": 0.117461725 }, { "core_id": 1, @@ -11360,7 +12796,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.117695225 + "ts": 0.11747685 }, { "core_id": 0, @@ -11370,7 +12806,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1178338 + "ts": 0.11754665 }, { "core_id": 0, @@ -11378,7 +12814,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1178492 + "ts": 0.117562 }, { "core_id": 0, @@ -11386,7 +12822,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.117864425 + "ts": 0.117577075 }, { "core_id": 1, @@ -11396,7 +12832,7 @@ "params": { "irq_num": 5 }, - "ts": 0.118666425 + "ts": 0.1184482 }, { "core_id": 1, @@ -11404,7 +12840,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.11867995 + "ts": 0.118461725 }, { "core_id": 1, @@ -11412,7 +12848,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.1186951 + "ts": 0.118476975 }, { "core_id": 0, @@ -11422,7 +12858,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1188338 + "ts": 0.11854665 }, { "core_id": 0, @@ -11430,7 +12866,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.118849175 + "ts": 0.118562025 }, { "core_id": 0, @@ -11438,7 +12874,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.11886425 + "ts": 0.118577225 }, { "core_id": 1, @@ -11448,7 +12884,7 @@ "params": { "irq_num": 5 }, - "ts": 0.119666425 + "ts": 0.1194482 }, { "core_id": 1, @@ -11456,7 +12892,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.119680075 + "ts": 0.119461775 }, { "core_id": 1, @@ -11464,7 +12900,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.11969535 + "ts": 0.1194769 }, { "core_id": 0, @@ -11474,7 +12910,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1198338 + "ts": 0.11954665 }, { "core_id": 0, @@ -11482,7 +12918,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.119849175 + "ts": 0.119562 }, { "core_id": 0, @@ -11490,7 +12926,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.11986425 + "ts": 0.119577075 }, { "core_id": 1, @@ -11500,7 +12936,7 @@ "params": { "irq_num": 5 }, - "ts": 0.120666425 + "ts": 0.1204482 }, { "core_id": 1, @@ -11508,7 +12944,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.12068 + "ts": 0.120461725 }, { "core_id": 1, @@ -11516,7 +12952,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.120695125 + "ts": 0.12047685 }, { "core_id": 0, @@ -11526,7 +12962,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1208338 + "ts": 0.12054665 }, { "core_id": 0, @@ -11534,7 +12970,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.120849175 + "ts": 0.1205663 }, { "core_id": 0, @@ -11542,7 +12978,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.12086425 + "ts": 0.1205815 }, { "core_id": 1, @@ -11552,7 +12988,7 @@ "params": { "irq_num": 5 }, - "ts": 0.121666425 + "ts": 0.1214482 }, { "core_id": 1, @@ -11560,7 +12996,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.121680075 + "ts": 0.121461725 }, { "core_id": 1, @@ -11568,7 +13004,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.121695225 + "ts": 0.12147685 }, { "core_id": 0, @@ -11578,7 +13014,59 @@ "params": { "irq_num": 5 }, - "ts": 0.1218338 + "ts": 0.12154665 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.121562 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.121577075 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1224482 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.122461725 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.122476975 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.12254665 }, { "core_id": 0, @@ -11586,9 +13074,19 @@ "id": 6, "in_irq": true, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.121848825 + "ts": 0.122561625 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12284596 + }, + "ts": 0.122561625 }, { "core_id": 0, @@ -11596,7 +13094,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.121861575 + "ts": 0.122574225 }, { "core_id": 0, @@ -11604,18 +13102,18 @@ "id": 4, "in_irq": false, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.12187725 + "ts": 0.122589875 }, { - "addr": "0x3ffbb7b8", + "addr": "0x3ffbaf70", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -11627,16 +13125,16 @@ "id": 512, "in_irq": false, "size": 5, - "ts": 0.121912575 + "ts": 0.1226249 }, { - "addr": "0x3ffbb7c8", + "addr": "0x3ffbaf94", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -11648,7 +13146,7 @@ "id": 512, "in_irq": false, "size": 10, - "ts": 0.121947 + "ts": 0.122660375 }, { "core_id": 0, @@ -11658,10 +13156,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.121964025 + "ts": 0.1226773 }, { "core_id": 0, @@ -11671,10 +13169,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.121980025 + "ts": 0.12269325 }, { "core_id": 0, @@ -11682,8 +13180,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (430) example: Task[0x3ffb7aec]: allocated 10 bytes @ 0x3ffbb7c8\n", - "ts": 0.12205045 + "msg": "I (418) example: Task[0x3ffb72b4]: allocated 10 bytes @ 0x3ffbaf94\n", + "ts": 0.122748025 }, { "core_id": 0, @@ -11691,8 +13189,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (430) example: Task[0x3ffb7aec]: allocated 10 bytes @ 0x3ffbb7c8\n", - "ts": 0.12205045 + "msg": "I (418) example: Task[0x3ffb72b4]: allocated 10 bytes @ 0x3ffbaf94\n", + "ts": 0.122748025 }, { "core_id": 0, @@ -11702,10 +13200,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12287056, + "xQueue": 12284952, "xTicksToWait": 0 }, - "ts": 0.122068175 + "ts": 0.1227615 }, { "core_id": 0, @@ -11713,9 +13211,19 @@ "id": 6, "in_irq": false, "params": { - "tid": 12289748 + "tid": 12287644 }, - "ts": 0.1220814 + "ts": 0.12277885 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12287644 + }, + "ts": 0.12277885 }, { "core_id": 1, @@ -11725,7 +13233,7 @@ "params": { "irq_num": 31 }, - "ts": 0.12209765 + "ts": 0.1227951 }, { "core_id": 0, @@ -11735,7 +13243,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.1221085 + "ts": 0.12280605 }, { "core_id": 1, @@ -11743,7 +13251,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.122119275 + "ts": 0.122816825 }, { "core_id": 0, @@ -11753,7 +13261,7 @@ "params": { "irq_num": 30 }, - "ts": 0.1221331 + "ts": 0.12283055 }, { "core_id": 1, @@ -11761,9 +13269,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12289748 + "tid": 12287644 }, - "ts": 0.122144 + "ts": 0.1228413 }, { "core_id": 0, @@ -11771,7 +13279,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.122154825 + "ts": 0.1228521 }, { "core_id": 1, @@ -11781,10 +13289,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12287056, + "xQueue": 12284952, "xTicksToWait": 4294967295 }, - "ts": 0.122166775 + "ts": 0.122864075 }, { "core_id": 0, @@ -11792,7 +13300,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.122177025 + "ts": 0.122874325 }, { "core_id": 1, @@ -11802,10 +13310,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.12218845 + "ts": 0.122886075 }, { "core_id": 1, @@ -11815,10 +13323,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.1222048 + "ts": 0.12290235 }, { "core_id": 1, @@ -11826,8 +13334,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (430) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb7c8\n", - "ts": 0.12226835 + "msg": "I (418) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbaf94\n", + "ts": 0.122950125 }, { "core_id": 1, @@ -11835,15 +13343,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (430) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb7c8\n", - "ts": 0.12226835 + "msg": "I (418) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbaf94\n", + "ts": 0.122950125 }, { - "addr": "0x3ffbb7c8", + "addr": "0x3ffbaf94", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", + "0x4008da24", + "0x400d3c72", + "0x400880dc", "0x0", "0x0", "0x0", @@ -11857,7 +13365,7 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 0.12228955 + "ts": 0.1229715 }, { "core_id": 1, @@ -11867,7 +13375,7 @@ "params": { "irq_num": 31 }, - "ts": 0.122320575 + "ts": 0.1229989 }, { "core_id": 1, @@ -11875,7 +13383,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.122332175 + "ts": 0.123010325 }, { "core_id": 1, @@ -11883,7 +13391,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.122348875 + "ts": 0.123026875 }, { "core_id": 1, @@ -11893,7 +13401,7 @@ "params": { "irq_num": 5 }, - "ts": 0.122666425 + "ts": 0.1234482 }, { "core_id": 1, @@ -11901,7 +13409,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.122679875 + "ts": 0.123461725 }, { "core_id": 1, @@ -11909,7 +13417,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.12269545 + "ts": 0.1234773 }, { "core_id": 0, @@ -11919,7 +13427,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1228338 + "ts": 0.12354665 }, { "core_id": 0, @@ -11927,9 +13435,39 @@ "id": 6, "in_irq": true, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.122848825 + "ts": 0.123561675 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12290612 + }, + "ts": 0.123561675 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12296612 + }, + "ts": 0.1235735 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12296612 + }, + "ts": 0.1235735 }, { "core_id": 0, @@ -11937,7 +13475,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.122861575 + "ts": 0.123586 }, { "core_id": 0, @@ -11945,18 +13483,18 @@ "id": 4, "in_irq": false, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.12287725 + "ts": 0.123601675 }, { - "addr": "0x3ffbb7c8", + "addr": "0x3ffbaf94", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -11968,16 +13506,16 @@ "id": 512, "in_irq": false, "size": 10, - "ts": 0.122912575 + "ts": 0.123638125 }, { - "addr": "0x3ffbb7d8", + "addr": "0x3ffbafa4", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -11989,7 +13527,7 @@ "id": 512, "in_irq": false, "size": 20, - "ts": 0.122947 + "ts": 0.1236777 }, { "core_id": 0, @@ -11999,10 +13537,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.122964025 + "ts": 0.12369465 }, { "core_id": 0, @@ -12012,10 +13550,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.122980025 + "ts": 0.123710775 }, { "core_id": 0, @@ -12023,8 +13561,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (431) example: Task[0x3ffb926c]: allocated 20 bytes @ 0x3ffbb7d8\n", - "ts": 0.12305045 + "msg": "I (419) example: Task[0x3ffb8a34]: allocated 20 bytes @ 0x3ffbafa4\n", + "ts": 0.1237655 }, { "core_id": 0, @@ -12032,8 +13570,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (431) example: Task[0x3ffb926c]: allocated 20 bytes @ 0x3ffbb7d8\n", - "ts": 0.12305045 + "msg": "I (419) example: Task[0x3ffb8a34]: allocated 20 bytes @ 0x3ffbafa4\n", + "ts": 0.1237655 }, { "core_id": 0, @@ -12043,10 +13581,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12293072, + "xQueue": 12290968, "xTicksToWait": 0 }, - "ts": 0.123064 + "ts": 0.12377895 }, { "core_id": 0, @@ -12054,9 +13592,19 @@ "id": 6, "in_irq": false, "params": { - "tid": 12295764 + "tid": 12293660 }, - "ts": 0.123081425 + "ts": 0.123792325 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12293660 + }, + "ts": 0.123792325 }, { "core_id": 1, @@ -12066,7 +13614,7 @@ "params": { "irq_num": 31 }, - "ts": 0.123097725 + "ts": 0.123808675 }, { "core_id": 0, @@ -12076,7 +13624,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.123108575 + "ts": 0.123819525 }, { "core_id": 1, @@ -12084,7 +13632,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.123119325 + "ts": 0.12383035 }, { "core_id": 0, @@ -12094,7 +13642,7 @@ "params": { "irq_num": 30 }, - "ts": 0.12313305 + "ts": 0.123844125 }, { "core_id": 1, @@ -12102,9 +13650,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12295764 + "tid": 12293660 }, - "ts": 0.1231439 + "ts": 0.123856075 }, { "core_id": 0, @@ -12112,7 +13660,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.123154725 + "ts": 0.123867225 }, { "core_id": 1, @@ -12122,18 +13670,20 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12293072, + "xQueue": 12290968, "xTicksToWait": 4294967295 }, - "ts": 0.1231666 + "ts": 0.123879175 }, { "core_id": 0, - "ctx_name": "alloc1", - "id": 17, + "ctx_name": "alloc2", + "id": 4, "in_irq": false, - "params": {}, - "ts": 0.12317685 + "params": { + "tid": 12296612 + }, + "ts": 0.123890825 }, { "core_id": 1, @@ -12143,10 +13693,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.123188325 + "ts": 0.123902525 }, { "core_id": 1, @@ -12156,148 +13706,19 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.123204625 + "ts": 0.12392435 }, { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (431) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb7d8\n", - "ts": 0.123268075 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (431) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb7d8\n", - "ts": 0.123268075 - }, - { - "addr": "0x3ffbb7d8", + "addr": "0x3ffbafbc", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.12328925 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.12331625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.123327675 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.12334425 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.123666425 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.12367985 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.12369555 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1238338 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12298716 - }, - "ts": 0.1238488 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.123861575 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12298716 - }, - "ts": 0.12387725 - }, - { - "addr": "0x3ffbb7d8", - "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -12309,16 +13730,34 @@ "id": 512, "in_irq": false, "size": 15, - "ts": 0.12391265 + "ts": 0.123936825 }, { - "addr": "0x3ffbb7ec", + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (419) example: Task[0x3ffb961c]: free memory @ 0x3ffbafa4\n", + "ts": 0.1239779 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (419) example: Task[0x3ffb961c]: free memory @ 0x3ffbafa4\n", + "ts": 0.1239779 + }, + { + "addr": "0x3ffbafd0", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -12330,7 +13769,28 @@ "id": 512, "in_irq": false, "size": 30, - "ts": 0.123951325 + "ts": 0.12398945 + }, + { + "addr": "0x3ffbafa4", + "callers": [ + "0x4008da24", + "0x400d3c72", + "0x400880dc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.1240037 }, { "core_id": 0, @@ -12340,64 +13800,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.123968225 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12283904, - "xTicksToWait": 0 - }, - "ts": 0.1239842 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (432) example: Task[0x3ffba9dc]: allocated 30 bytes @ 0x3ffbb7ec\n", - "ts": 0.12405455 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (432) example: Task[0x3ffba9dc]: allocated 30 bytes @ 0x3ffbb7ec\n", - "ts": 0.12405455 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12299072, - "xTicksToWait": 0 - }, - "ts": 0.12406815 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12301764 - }, - "ts": 0.124081375 + "ts": 0.124016225 }, { "core_id": 1, @@ -12407,7 +13813,97 @@ "params": { "irq_num": 31 }, - "ts": 0.124097675 + "ts": 0.124035575 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12281672, + "xTicksToWait": 0 + }, + "ts": 0.124046775 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.12405755 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.1240757 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (419) example: Task[0x3ffba1a4]: allocated 30 bytes @ 0x3ffbafd0\n", + "ts": 0.124103475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (419) example: Task[0x3ffba1a4]: allocated 30 bytes @ 0x3ffbafd0\n", + "ts": 0.124103475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12296968, + "xTicksToWait": 0 + }, + "ts": 0.124121075 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12299660 + }, + "ts": 0.124134325 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12299660 + }, + "ts": 0.124134325 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.124150675 }, { "core_id": 0, @@ -12417,7 +13913,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.124108525 + "ts": 0.124161525 }, { "core_id": 1, @@ -12425,7 +13921,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1241193 + "ts": 0.12417235 }, { "core_id": 0, @@ -12435,7 +13931,7 @@ "params": { "irq_num": 30 }, - "ts": 0.124133175 + "ts": 0.124186175 }, { "core_id": 1, @@ -12443,9 +13939,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12301764 + "tid": 12299660 }, - "ts": 0.12414405 + "ts": 0.124196925 }, { "core_id": 0, @@ -12453,7 +13949,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.124154875 + "ts": 0.124207675 }, { "core_id": 1, @@ -12463,10 +13959,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12299072, + "xQueue": 12296968, "xTicksToWait": 4294967295 }, - "ts": 0.12416675 + "ts": 0.124219775 }, { "core_id": 0, @@ -12474,7 +13970,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.124178025 + "ts": 0.124231 }, { "core_id": 1, @@ -12484,10 +13980,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.124189675 + "ts": 0.124243325 }, { "core_id": 1, @@ -12497,10 +13993,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.124209375 + "ts": 0.124259575 }, { "core_id": 1, @@ -12508,8 +14004,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (432) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb7ec\n", - "ts": 0.124272925 + "msg": "I (419) example: Task[0x3ffbad8c]: free memory @ 0x3ffbafd0\n", + "ts": 0.12430745 }, { "core_id": 1, @@ -12517,15 +14013,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (432) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb7ec\n", - "ts": 0.124272925 + "msg": "I (419) example: Task[0x3ffbad8c]: free memory @ 0x3ffbafd0\n", + "ts": 0.12430745 }, { - "addr": "0x3ffbb7ec", + "addr": "0x3ffbafd0", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", + "0x4008da24", + "0x400d3c72", + "0x400880dc", "0x0", "0x0", "0x0", @@ -12539,7 +14035,7 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 0.124294125 + "ts": 0.12432885 }, { "core_id": 1, @@ -12549,7 +14045,7 @@ "params": { "irq_num": 31 }, - "ts": 0.124321025 + "ts": 0.1243602 }, { "core_id": 1, @@ -12557,7 +14053,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.124332575 + "ts": 0.12437165 }, { "core_id": 1, @@ -12565,7 +14061,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.12434915 + "ts": 0.12438835 }, { "core_id": 1, @@ -12575,7 +14071,7 @@ "params": { "irq_num": 5 }, - "ts": 0.124666425 + "ts": 0.1244482 }, { "core_id": 1, @@ -12583,7 +14079,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.12467985 + "ts": 0.124461625 }, { "core_id": 1, @@ -12591,7 +14087,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.12469555 + "ts": 0.1244772 }, { "core_id": 0, @@ -12601,7 +14097,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1248338 + "ts": 0.12454665 }, { "core_id": 0, @@ -12609,7 +14105,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.124849175 + "ts": 0.12456205 }, { "core_id": 0, @@ -12617,7 +14113,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.12486425 + "ts": 0.124577275 }, { "core_id": 1, @@ -12627,7 +14123,7 @@ "params": { "irq_num": 5 }, - "ts": 0.125666425 + "ts": 0.1254482 }, { "core_id": 1, @@ -12635,7 +14131,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.125680075 + "ts": 0.125461725 }, { "core_id": 1, @@ -12643,7 +14139,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.12569535 + "ts": 0.12547685 }, { "core_id": 0, @@ -12653,7 +14149,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1258338 + "ts": 0.12554665 }, { "core_id": 0, @@ -12661,7 +14157,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.125849175 + "ts": 0.125562 }, { "core_id": 0, @@ -12669,7 +14165,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.12586425 + "ts": 0.125577075 }, { "core_id": 1, @@ -12679,7 +14175,7 @@ "params": { "irq_num": 5 }, - "ts": 0.126666425 + "ts": 0.1264482 }, { "core_id": 1, @@ -12687,7 +14183,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.12668 + "ts": 0.126461725 }, { "core_id": 1, @@ -12695,7 +14191,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.126695125 + "ts": 0.126476975 }, { "core_id": 0, @@ -12705,7 +14201,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1268338 + "ts": 0.12654665 }, { "core_id": 0, @@ -12713,7 +14209,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.126849175 + "ts": 0.126562025 }, { "core_id": 0, @@ -12721,7 +14217,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.12686425 + "ts": 0.126577225 }, { "core_id": 1, @@ -12731,7 +14227,7 @@ "params": { "irq_num": 5 }, - "ts": 0.127666425 + "ts": 0.1274482 }, { "core_id": 1, @@ -12739,7 +14235,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.127680075 + "ts": 0.127461775 }, { "core_id": 1, @@ -12747,7 +14243,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.127695225 + "ts": 0.1274769 }, { "core_id": 0, @@ -12757,7 +14253,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1278338 + "ts": 0.12754665 }, { "core_id": 0, @@ -12765,7 +14261,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1278492 + "ts": 0.127562 }, { "core_id": 0, @@ -12773,7 +14269,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.127864425 + "ts": 0.127577075 }, { "core_id": 1, @@ -12783,7 +14279,7 @@ "params": { "irq_num": 5 }, - "ts": 0.128666425 + "ts": 0.1284482 }, { "core_id": 1, @@ -12791,7 +14287,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.12867995 + "ts": 0.128461725 }, { "core_id": 1, @@ -12799,7 +14295,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.1286951 + "ts": 0.12847685 }, { "core_id": 0, @@ -12809,7 +14305,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1288338 + "ts": 0.12854665 }, { "core_id": 0, @@ -12817,7 +14313,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.128849175 + "ts": 0.12856205 }, { "core_id": 0, @@ -12825,7 +14321,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.12886425 + "ts": 0.128577275 }, { "core_id": 1, @@ -12835,7 +14331,7 @@ "params": { "irq_num": 5 }, - "ts": 0.129666425 + "ts": 0.1294482 }, { "core_id": 1, @@ -12843,7 +14339,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.129680075 + "ts": 0.129461725 }, { "core_id": 1, @@ -12851,7 +14347,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.12969535 + "ts": 0.12947685 }, { "core_id": 0, @@ -12861,7 +14357,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1298338 + "ts": 0.12954665 }, { "core_id": 0, @@ -12869,7 +14365,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.129849175 + "ts": 0.129562 }, { "core_id": 0, @@ -12877,7 +14373,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.129868575 + "ts": 0.129577075 }, { "core_id": 1, @@ -12887,7 +14383,7 @@ "params": { "irq_num": 5 }, - "ts": 0.130666425 + "ts": 0.1304482 }, { "core_id": 1, @@ -12895,7 +14391,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.13067995 + "ts": 0.130461725 }, { "core_id": 1, @@ -12903,7 +14399,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.1306951 + "ts": 0.130476975 }, { "core_id": 0, @@ -12913,7 +14409,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1308338 + "ts": 0.13054665 }, { "core_id": 0, @@ -12921,7 +14417,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.130849175 + "ts": 0.130562025 }, { "core_id": 0, @@ -12929,7 +14425,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.13086425 + "ts": 0.130577225 }, { "core_id": 1, @@ -12939,7 +14435,7 @@ "params": { "irq_num": 5 }, - "ts": 0.131666425 + "ts": 0.1314482 }, { "core_id": 1, @@ -12947,7 +14443,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.131680075 + "ts": 0.131461775 }, { "core_id": 1, @@ -12955,7 +14451,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.13169535 + "ts": 0.1314769 }, { "core_id": 0, @@ -12965,7 +14461,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1318338 + "ts": 0.13154665 }, { "core_id": 0, @@ -12973,7 +14469,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.131849175 + "ts": 0.131562 }, { "core_id": 0, @@ -12981,7 +14477,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.13186425 + "ts": 0.131577075 }, { "core_id": 1, @@ -12991,7 +14487,7 @@ "params": { "irq_num": 5 }, - "ts": 0.132666425 + "ts": 0.1324482 }, { "core_id": 1, @@ -12999,7 +14495,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.13268 + "ts": 0.132461725 }, { "core_id": 1, @@ -13007,7 +14503,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.132695125 + "ts": 0.13247685 }, { "core_id": 0, @@ -13017,7 +14513,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1328338 + "ts": 0.13254665 }, { "core_id": 0, @@ -13025,7 +14521,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.132849175 + "ts": 0.13256205 }, { "core_id": 0, @@ -13033,7 +14529,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.13286425 + "ts": 0.132577275 }, { "core_id": 1, @@ -13043,7 +14539,7 @@ "params": { "irq_num": 5 }, - "ts": 0.133666425 + "ts": 0.1334482 }, { "core_id": 1, @@ -13051,7 +14547,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.133680075 + "ts": 0.133461725 }, { "core_id": 1, @@ -13059,7 +14555,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.133695225 + "ts": 0.13347685 }, { "core_id": 0, @@ -13069,7 +14565,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1338338 + "ts": 0.13354665 }, { "core_id": 0, @@ -13077,7 +14573,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1338492 + "ts": 0.133562 }, { "core_id": 0, @@ -13085,7 +14581,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.133864425 + "ts": 0.133577075 }, { "core_id": 1, @@ -13095,7 +14591,7 @@ "params": { "irq_num": 5 }, - "ts": 0.134666425 + "ts": 0.1344482 }, { "core_id": 1, @@ -13103,7 +14599,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.13467995 + "ts": 0.13446595 }, { "core_id": 1, @@ -13111,7 +14607,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.1346951 + "ts": 0.1344811 }, { "core_id": 0, @@ -13121,7 +14617,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1348338 + "ts": 0.13454665 }, { "core_id": 0, @@ -13129,7 +14625,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.134849175 + "ts": 0.134562 }, { "core_id": 0, @@ -13137,7 +14633,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.13486425 + "ts": 0.134577075 }, { "core_id": 1, @@ -13147,7 +14643,7 @@ "params": { "irq_num": 5 }, - "ts": 0.135666425 + "ts": 0.1354482 }, { "core_id": 1, @@ -13155,7 +14651,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.135680075 + "ts": 0.135461725 }, { "core_id": 1, @@ -13163,7 +14659,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.13569535 + "ts": 0.13547685 }, { "core_id": 0, @@ -13173,7 +14669,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1358338 + "ts": 0.13554665 }, { "core_id": 0, @@ -13181,7 +14677,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.135849175 + "ts": 0.13556205 }, { "core_id": 0, @@ -13189,7 +14685,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.13586425 + "ts": 0.135577275 }, { "core_id": 1, @@ -13199,7 +14695,7 @@ "params": { "irq_num": 5 }, - "ts": 0.136666425 + "ts": 0.1364482 }, { "core_id": 1, @@ -13207,7 +14703,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.13668 + "ts": 0.136461725 }, { "core_id": 1, @@ -13215,7 +14711,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.136695125 + "ts": 0.13647685 }, { "core_id": 0, @@ -13225,7 +14721,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1368338 + "ts": 0.13654665 }, { "core_id": 0, @@ -13233,7 +14729,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.136849175 + "ts": 0.136562 }, { "core_id": 0, @@ -13241,7 +14737,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.13686425 + "ts": 0.136577075 }, { "core_id": 1, @@ -13251,7 +14747,7 @@ "params": { "irq_num": 5 }, - "ts": 0.137666425 + "ts": 0.1374482 }, { "core_id": 1, @@ -13259,7 +14755,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.137680075 + "ts": 0.137461725 }, { "core_id": 1, @@ -13267,7 +14763,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.137695225 + "ts": 0.137476975 }, { "core_id": 0, @@ -13277,7 +14773,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1378338 + "ts": 0.13754665 }, { "core_id": 0, @@ -13285,7 +14781,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1378492 + "ts": 0.137562025 }, { "core_id": 0, @@ -13293,7 +14789,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.137864425 + "ts": 0.137577225 }, { "core_id": 1, @@ -13303,7 +14799,7 @@ "params": { "irq_num": 5 }, - "ts": 0.138666425 + "ts": 0.1384482 }, { "core_id": 1, @@ -13311,7 +14807,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.13867995 + "ts": 0.138461775 }, { "core_id": 1, @@ -13319,7 +14815,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.1386951 + "ts": 0.1384769 }, { "core_id": 0, @@ -13329,7 +14825,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1388338 + "ts": 0.13854665 }, { "core_id": 0, @@ -13337,7 +14833,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.138849175 + "ts": 0.138562 }, { "core_id": 0, @@ -13345,7 +14841,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.13886425 + "ts": 0.138577075 }, { "core_id": 1, @@ -13355,7 +14851,7 @@ "params": { "irq_num": 5 }, - "ts": 0.139666425 + "ts": 0.1394482 }, { "core_id": 1, @@ -13363,7 +14859,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.139680075 + "ts": 0.139461725 }, { "core_id": 1, @@ -13371,7 +14867,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.13969535 + "ts": 0.13947685 }, { "core_id": 0, @@ -13381,7 +14877,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1398338 + "ts": 0.13954665 }, { "core_id": 0, @@ -13389,7 +14885,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.139849175 + "ts": 0.13956205 }, { "core_id": 0, @@ -13397,7 +14893,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.13986425 + "ts": 0.139577275 }, { "core_id": 1, @@ -13407,7 +14903,7 @@ "params": { "irq_num": 5 }, - "ts": 0.140666425 + "ts": 0.1404482 }, { "core_id": 1, @@ -13415,7 +14911,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.14068 + "ts": 0.140461725 }, { "core_id": 1, @@ -13423,7 +14919,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.140695125 + "ts": 0.14047685 }, { "core_id": 0, @@ -13433,7 +14929,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1408338 + "ts": 0.14054665 }, { "core_id": 0, @@ -13441,7 +14937,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.140849175 + "ts": 0.140562 }, { "core_id": 0, @@ -13449,7 +14945,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.14086425 + "ts": 0.140577075 }, { "core_id": 1, @@ -13459,7 +14955,7 @@ "params": { "irq_num": 5 }, - "ts": 0.141666425 + "ts": 0.1414482 }, { "core_id": 1, @@ -13467,7 +14963,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.141680075 + "ts": 0.141461725 }, { "core_id": 1, @@ -13475,7 +14971,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.141695225 + "ts": 0.141476975 }, { "core_id": 0, @@ -13485,7 +14981,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1418338 + "ts": 0.14154665 }, { "core_id": 0, @@ -13493,7 +14989,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1418492 + "ts": 0.141562025 }, { "core_id": 0, @@ -13501,7 +14997,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.141864425 + "ts": 0.141577225 }, { "core_id": 1, @@ -13511,7 +15007,7 @@ "params": { "irq_num": 5 }, - "ts": 0.142666425 + "ts": 0.1424482 }, { "core_id": 1, @@ -13519,7 +15015,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.142680075 + "ts": 0.142461775 }, { "core_id": 1, @@ -13527,7 +15023,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.14269535 + "ts": 0.1424769 }, { "core_id": 0, @@ -13537,7 +15033,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1428338 + "ts": 0.14254665 }, { "core_id": 0, @@ -13545,7 +15041,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.142849175 + "ts": 0.142562 }, { "core_id": 0, @@ -13553,7 +15049,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.14286425 + "ts": 0.142577075 }, { "core_id": 1, @@ -13563,7 +15059,7 @@ "params": { "irq_num": 5 }, - "ts": 0.143666425 + "ts": 0.1434482 }, { "core_id": 1, @@ -13571,7 +15067,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.14368 + "ts": 0.143461725 }, { "core_id": 1, @@ -13579,7 +15075,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.143695125 + "ts": 0.14347685 }, { "core_id": 0, @@ -13589,7 +15085,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1438338 + "ts": 0.14354665 }, { "core_id": 0, @@ -13597,7 +15093,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.143849175 + "ts": 0.14356205 }, { "core_id": 0, @@ -13605,7 +15101,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.14386425 + "ts": 0.143577275 }, { "core_id": 1, @@ -13615,7 +15111,7 @@ "params": { "irq_num": 5 }, - "ts": 0.144666425 + "ts": 0.1444482 }, { "core_id": 1, @@ -13623,7 +15119,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.144680075 + "ts": 0.144461725 }, { "core_id": 1, @@ -13631,7 +15127,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.144695225 + "ts": 0.14447685 }, { "core_id": 0, @@ -13641,7 +15137,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1448338 + "ts": 0.14454665 }, { "core_id": 0, @@ -13649,7 +15145,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1448492 + "ts": 0.144562 }, { "core_id": 0, @@ -13657,7 +15153,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.144864425 + "ts": 0.144577075 }, { "core_id": 1, @@ -13667,7 +15163,7 @@ "params": { "irq_num": 5 }, - "ts": 0.145666425 + "ts": 0.1454482 }, { "core_id": 1, @@ -13675,7 +15171,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.14567995 + "ts": 0.145461725 }, { "core_id": 1, @@ -13683,7 +15179,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.1456951 + "ts": 0.145476975 }, { "core_id": 0, @@ -13693,7 +15189,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1458338 + "ts": 0.14554665 }, { "core_id": 0, @@ -13701,7 +15197,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.145849175 + "ts": 0.145562025 }, { "core_id": 0, @@ -13709,7 +15205,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.14586425 + "ts": 0.145577225 }, { "core_id": 1, @@ -13719,7 +15215,7 @@ "params": { "irq_num": 5 }, - "ts": 0.146666425 + "ts": 0.1464482 }, { "core_id": 1, @@ -13727,7 +15223,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.146680075 + "ts": 0.146466 }, { "core_id": 1, @@ -13735,7 +15231,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.14669535 + "ts": 0.146481125 }, { "core_id": 0, @@ -13745,7 +15241,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1468338 + "ts": 0.14654665 }, { "core_id": 0, @@ -13753,7 +15249,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.146849175 + "ts": 0.146562 }, { "core_id": 0, @@ -13761,7 +15257,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.14686425 + "ts": 0.146577075 }, { "core_id": 1, @@ -13771,7 +15267,7 @@ "params": { "irq_num": 5 }, - "ts": 0.147666425 + "ts": 0.1474482 }, { "core_id": 1, @@ -13779,7 +15275,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.14768 + "ts": 0.147461725 }, { "core_id": 1, @@ -13787,7 +15283,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.147695125 + "ts": 0.14747685 }, { "core_id": 0, @@ -13797,7 +15293,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1478338 + "ts": 0.14754665 }, { "core_id": 0, @@ -13805,7 +15301,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.147849175 + "ts": 0.14756205 }, { "core_id": 0, @@ -13813,7 +15309,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.14786425 + "ts": 0.147577275 }, { "core_id": 1, @@ -13823,7 +15319,7 @@ "params": { "irq_num": 5 }, - "ts": 0.148666425 + "ts": 0.1484482 }, { "core_id": 1, @@ -13831,7 +15327,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.148680075 + "ts": 0.148461725 }, { "core_id": 1, @@ -13839,7 +15335,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.148695225 + "ts": 0.14847685 }, { "core_id": 0, @@ -13849,7 +15345,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1488338 + "ts": 0.14854665 }, { "core_id": 0, @@ -13857,7 +15353,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1488492 + "ts": 0.148562 }, { "core_id": 0, @@ -13865,7 +15361,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.148864425 + "ts": 0.148577075 }, { "core_id": 1, @@ -13875,7 +15371,7 @@ "params": { "irq_num": 5 }, - "ts": 0.149666425 + "ts": 0.1494482 }, { "core_id": 1, @@ -13883,7 +15379,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.14967995 + "ts": 0.149461725 }, { "core_id": 1, @@ -13891,7 +15387,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.1496951 + "ts": 0.149476975 }, { "core_id": 0, @@ -13901,7 +15397,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1498338 + "ts": 0.14954665 }, { "core_id": 0, @@ -13909,7 +15405,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.149849175 + "ts": 0.149562025 }, { "core_id": 0, @@ -13917,7 +15413,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.14986425 + "ts": 0.149577225 }, { "core_id": 1, @@ -13927,7 +15423,7 @@ "params": { "irq_num": 5 }, - "ts": 0.150666425 + "ts": 0.1504482 }, { "core_id": 1, @@ -13935,7 +15431,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.150680075 + "ts": 0.150461775 }, { "core_id": 1, @@ -13943,7 +15439,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.15069535 + "ts": 0.1504769 }, { "core_id": 0, @@ -13953,7 +15449,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1508338 + "ts": 0.15054665 }, { "core_id": 0, @@ -13961,7 +15457,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.150849175 + "ts": 0.150562 }, { "core_id": 0, @@ -13969,7 +15465,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.15086425 + "ts": 0.150577075 }, { "core_id": 1, @@ -13979,7 +15475,7 @@ "params": { "irq_num": 5 }, - "ts": 0.151666425 + "ts": 0.1514482 }, { "core_id": 1, @@ -13987,7 +15483,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.15168 + "ts": 0.151461725 }, { "core_id": 1, @@ -13995,7 +15491,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.151695125 + "ts": 0.15147685 }, { "core_id": 0, @@ -14005,7 +15501,59 @@ "params": { "irq_num": 5 }, - "ts": 0.1518338 + "ts": 0.15154665 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.15156205 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.151577275 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1524482 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.152461725 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.15247685 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.15254665 }, { "core_id": 0, @@ -14013,9 +15561,19 @@ "id": 6, "in_irq": true, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.1518488 + "ts": 0.152561625 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12284596 + }, + "ts": 0.152561625 }, { "core_id": 0, @@ -14023,7 +15581,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.151861575 + "ts": 0.152574275 }, { "core_id": 0, @@ -14031,18 +15589,18 @@ "id": 4, "in_irq": false, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.15187725 + "ts": 0.152590075 }, { - "addr": "0x3ffbb7ec", + "addr": "0x3ffbafa4", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -14054,16 +15612,16 @@ "id": 512, "in_irq": false, "size": 6, - "ts": 0.15191265 + "ts": 0.152625125 }, { - "addr": "0x3ffbb7fc", + "addr": "0x3ffbafd0", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -14075,7 +15633,7 @@ "id": 512, "in_irq": false, "size": 12, - "ts": 0.15195125 + "ts": 0.1526607 }, { "core_id": 0, @@ -14085,10 +15643,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.15196815 + "ts": 0.152677675 }, { "core_id": 0, @@ -14098,10 +15656,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.15198415 + "ts": 0.152693775 }, { "core_id": 0, @@ -14109,8 +15667,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (460) example: Task[0x3ffb7aec]: allocated 12 bytes @ 0x3ffbb7fc\n", - "ts": 0.152054475 + "msg": "I (448) example: Task[0x3ffb72b4]: allocated 12 bytes @ 0x3ffbafd0\n", + "ts": 0.1527528 }, { "core_id": 0, @@ -14118,8 +15676,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (460) example: Task[0x3ffb7aec]: allocated 12 bytes @ 0x3ffbb7fc\n", - "ts": 0.152054475 + "msg": "I (448) example: Task[0x3ffb72b4]: allocated 12 bytes @ 0x3ffbafd0\n", + "ts": 0.1527528 }, { "core_id": 0, @@ -14129,10 +15687,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12287056, + "xQueue": 12284952, "xTicksToWait": 0 }, - "ts": 0.152068075 + "ts": 0.152766275 }, { "core_id": 0, @@ -14140,9 +15698,19 @@ "id": 6, "in_irq": false, "params": { - "tid": 12289748 + "tid": 12287644 }, - "ts": 0.1520813 + "ts": 0.15277945 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12287644 + }, + "ts": 0.15277945 }, { "core_id": 1, @@ -14152,7 +15720,7 @@ "params": { "irq_num": 31 }, - "ts": 0.152097675 + "ts": 0.15279565 }, { "core_id": 0, @@ -14162,7 +15730,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.152108525 + "ts": 0.1528066 }, { "core_id": 1, @@ -14170,7 +15738,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1521193 + "ts": 0.152817375 }, { "core_id": 0, @@ -14180,7 +15748,7 @@ "params": { "irq_num": 30 }, - "ts": 0.152133125 + "ts": 0.152831275 }, { "core_id": 1, @@ -14188,9 +15756,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12289748 + "tid": 12287644 }, - "ts": 0.152144025 + "ts": 0.152842075 }, { "core_id": 0, @@ -14198,7 +15766,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.15215485 + "ts": 0.1528528 }, { "core_id": 1, @@ -14208,10 +15776,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12287056, + "xQueue": 12284952, "xTicksToWait": 4294967295 }, - "ts": 0.1521668 + "ts": 0.152864925 }, { "core_id": 0, @@ -14219,7 +15787,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.15217705 + "ts": 0.1528751 }, { "core_id": 1, @@ -14229,10 +15797,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.152188475 + "ts": 0.152886875 }, { "core_id": 1, @@ -14242,10 +15810,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.15220885 + "ts": 0.1529032 }, { "core_id": 1, @@ -14253,8 +15821,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (460) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb7fc\n", - "ts": 0.1522724 + "msg": "I (448) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbafd0\n", + "ts": 0.152951075 }, { "core_id": 1, @@ -14262,15 +15830,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (460) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb7fc\n", - "ts": 0.1522724 + "msg": "I (448) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbafd0\n", + "ts": 0.152951075 }, { - "addr": "0x3ffbb7fc", + "addr": "0x3ffbafd0", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", + "0x4008da24", + "0x400d3c72", + "0x400880dc", "0x0", "0x0", "0x0", @@ -14284,7 +15852,7 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 0.1522936 + "ts": 0.1529723 }, { "core_id": 1, @@ -14294,7 +15862,7 @@ "params": { "irq_num": 31 }, - "ts": 0.152320475 + "ts": 0.15300375 }, { "core_id": 1, @@ -14302,7 +15870,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1523319 + "ts": 0.153015325 }, { "core_id": 1, @@ -14310,7 +15878,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.152348475 + "ts": 0.153032025 }, { "core_id": 1, @@ -14320,7 +15888,7 @@ "params": { "irq_num": 5 }, - "ts": 0.152666425 + "ts": 0.1534482 }, { "core_id": 1, @@ -14328,7 +15896,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.15267985 + "ts": 0.153461725 }, { "core_id": 1, @@ -14336,7 +15904,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.15269555 + "ts": 0.1534773 }, { "core_id": 0, @@ -14346,7 +15914,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1528338 + "ts": 0.15354665 }, { "core_id": 0, @@ -14354,9 +15922,39 @@ "id": 6, "in_irq": true, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.1528488 + "ts": 0.153561625 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12290612 + }, + "ts": 0.153561625 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12296612 + }, + "ts": 0.1535735 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12296612 + }, + "ts": 0.1535735 }, { "core_id": 0, @@ -14364,7 +15962,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.152861575 + "ts": 0.153585975 }, { "core_id": 0, @@ -14372,18 +15970,18 @@ "id": 4, "in_irq": false, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.152877375 + "ts": 0.153601625 }, { - "addr": "0x3ffbb7fc", + "addr": "0x3ffbafd0", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -14395,16 +15993,16 @@ "id": 512, "in_irq": false, "size": 12, - "ts": 0.152912775 + "ts": 0.153638 }, { - "addr": "0x3ffbb80c", + "addr": "0x3ffbafe0", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -14416,7 +16014,7 @@ "id": 512, "in_irq": false, "size": 24, - "ts": 0.1529473 + "ts": 0.15367345 }, { "core_id": 0, @@ -14426,10 +16024,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.15296425 + "ts": 0.1536905 }, { "core_id": 0, @@ -14439,10 +16037,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.152984425 + "ts": 0.153706525 }, { "core_id": 0, @@ -14450,8 +16048,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (461) example: Task[0x3ffb926c]: allocated 24 bytes @ 0x3ffbb80c\n", - "ts": 0.15305485 + "msg": "I (449) example: Task[0x3ffb8a34]: allocated 24 bytes @ 0x3ffbafe0\n", + "ts": 0.15376135 }, { "core_id": 0, @@ -14459,8 +16057,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (461) example: Task[0x3ffb926c]: allocated 24 bytes @ 0x3ffbb80c\n", - "ts": 0.15305485 + "msg": "I (449) example: Task[0x3ffb8a34]: allocated 24 bytes @ 0x3ffbafe0\n", + "ts": 0.15376135 }, { "core_id": 0, @@ -14470,10 +16068,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12293072, + "xQueue": 12290968, "xTicksToWait": 0 }, - "ts": 0.1530685 + "ts": 0.153778125 }, { "core_id": 0, @@ -14481,9 +16079,19 @@ "id": 6, "in_irq": false, "params": { - "tid": 12295764 + "tid": 12293660 }, - "ts": 0.153081675 + "ts": 0.1537915 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12293660 + }, + "ts": 0.1537915 }, { "core_id": 1, @@ -14493,7 +16101,7 @@ "params": { "irq_num": 31 }, - "ts": 0.153097875 + "ts": 0.15380785 }, { "core_id": 0, @@ -14503,7 +16111,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.153108925 + "ts": 0.1538187 }, { "core_id": 1, @@ -14511,7 +16119,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.153119675 + "ts": 0.153829525 }, { "core_id": 0, @@ -14521,7 +16129,7 @@ "params": { "irq_num": 30 }, - "ts": 0.1531334 + "ts": 0.1538433 }, { "core_id": 1, @@ -14529,9 +16137,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12295764 + "tid": 12293660 }, - "ts": 0.15314435 + "ts": 0.15385525 }, { "core_id": 0, @@ -14539,7 +16147,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.15315515 + "ts": 0.1538664 }, { "core_id": 1, @@ -14549,18 +16157,20 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12293072, + "xQueue": 12290968, "xTicksToWait": 4294967295 }, - "ts": 0.153167 + "ts": 0.15387835 }, { "core_id": 0, - "ctx_name": "alloc1", - "id": 17, + "ctx_name": "alloc2", + "id": 4, "in_irq": false, - "params": {}, - "ts": 0.153177275 + "params": { + "tid": 12296612 + }, + "ts": 0.15389 }, { "core_id": 1, @@ -14570,10 +16180,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.15318875 + "ts": 0.1539017 }, { "core_id": 1, @@ -14583,148 +16193,19 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.15320505 + "ts": 0.1539203 }, { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (461) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb80c\n", - "ts": 0.1532685 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (461) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb80c\n", - "ts": 0.1532685 - }, - { - "addr": "0x3ffbb80c", + "addr": "0x3ffbaffc", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.153293525 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.153320525 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.15333195 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.153348525 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.153666425 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.15367985 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.15369555 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1538338 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12298716 - }, - "ts": 0.1538488 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.153861575 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12298716 - }, - "ts": 0.15387725 - }, - { - "addr": "0x3ffbb80c", - "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -14736,16 +16217,34 @@ "id": 512, "in_irq": false, "size": 18, - "ts": 0.15391265 + "ts": 0.1539334 }, { - "addr": "0x3ffbb824", + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (449) example: Task[0x3ffb961c]: free memory @ 0x3ffbafe0\n", + "ts": 0.153973975 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (449) example: Task[0x3ffb961c]: free memory @ 0x3ffbafe0\n", + "ts": 0.153973975 + }, + { + "addr": "0x3ffbb014", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -14757,7 +16256,28 @@ "id": 512, "in_irq": false, "size": 36, - "ts": 0.1539472 + "ts": 0.15398995 + }, + { + "addr": "0x3ffbafe0", + "callers": [ + "0x4008da24", + "0x400d3c72", + "0x400880dc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.154004325 }, { "core_id": 0, @@ -14767,64 +16287,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.15396435 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12283904, - "xTicksToWait": 0 - }, - "ts": 0.15398035 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (462) example: Task[0x3ffba9dc]: allocated 36 bytes @ 0x3ffbb824\n", - "ts": 0.154050675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (462) example: Task[0x3ffba9dc]: allocated 36 bytes @ 0x3ffbb824\n", - "ts": 0.154050675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12299072, - "xTicksToWait": 0 - }, - "ts": 0.1540685 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12301764 - }, - "ts": 0.15408185 + "ts": 0.154016775 }, { "core_id": 1, @@ -14834,7 +16300,97 @@ "params": { "irq_num": 31 }, - "ts": 0.154098175 + "ts": 0.15403615 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12281672, + "xTicksToWait": 0 + }, + "ts": 0.1540474 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.1540582 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.1540764 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (449) example: Task[0x3ffba1a4]: allocated 36 bytes @ 0x3ffbb014\n", + "ts": 0.154104125 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (449) example: Task[0x3ffba1a4]: allocated 36 bytes @ 0x3ffbb014\n", + "ts": 0.154104125 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12296968, + "xTicksToWait": 0 + }, + "ts": 0.154117575 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12299660 + }, + "ts": 0.154134325 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12299660 + }, + "ts": 0.154134325 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.154150675 }, { "core_id": 0, @@ -14844,7 +16400,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.154109025 + "ts": 0.15416155 }, { "core_id": 1, @@ -14852,7 +16408,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.154119775 + "ts": 0.1541724 }, { "core_id": 0, @@ -14862,7 +16418,7 @@ "params": { "irq_num": 30 }, - "ts": 0.1541335 + "ts": 0.154186075 }, { "core_id": 1, @@ -14870,9 +16426,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12301764 + "tid": 12299660 }, - "ts": 0.1541444 + "ts": 0.154196825 }, { "core_id": 0, @@ -14880,7 +16436,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.154155225 + "ts": 0.154207625 }, { "core_id": 1, @@ -14890,10 +16446,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12299072, + "xQueue": 12296968, "xTicksToWait": 4294967295 }, - "ts": 0.154167075 + "ts": 0.154219575 }, { "core_id": 0, @@ -14901,7 +16457,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.154178375 + "ts": 0.1542308 }, { "core_id": 1, @@ -14911,10 +16467,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.15419 + "ts": 0.154242625 }, { "core_id": 1, @@ -14924,10 +16480,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.1542064 + "ts": 0.154258875 }, { "core_id": 1, @@ -14935,8 +16491,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (462) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb824\n", - "ts": 0.15426995 + "msg": "I (449) example: Task[0x3ffbad8c]: free memory @ 0x3ffbb014\n", + "ts": 0.15430665 }, { "core_id": 1, @@ -14944,15 +16500,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (462) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb824\n", - "ts": 0.15426995 + "msg": "I (449) example: Task[0x3ffbad8c]: free memory @ 0x3ffbb014\n", + "ts": 0.15430665 }, { - "addr": "0x3ffbb824", + "addr": "0x3ffbb014", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", + "0x4008da24", + "0x400d3c72", + "0x400880dc", "0x0", "0x0", "0x0", @@ -14966,7 +16522,7 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 0.15429115 + "ts": 0.154328025 }, { "core_id": 1, @@ -14976,7 +16532,7 @@ "params": { "irq_num": 31 }, - "ts": 0.15432215 + "ts": 0.15435545 }, { "core_id": 1, @@ -14984,7 +16540,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.154333625 + "ts": 0.15436685 }, { "core_id": 1, @@ -14992,7 +16548,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.154350325 + "ts": 0.154383425 }, { "core_id": 1, @@ -15002,7 +16558,7 @@ "params": { "irq_num": 5 }, - "ts": 0.154666425 + "ts": 0.1544482 }, { "core_id": 1, @@ -15010,7 +16566,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.154679875 + "ts": 0.154461625 }, { "core_id": 1, @@ -15018,7 +16574,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.15469545 + "ts": 0.1544772 }, { "core_id": 0, @@ -15028,7 +16584,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1548338 + "ts": 0.15454665 }, { "core_id": 0, @@ -15036,7 +16592,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1548492 + "ts": 0.154562 }, { "core_id": 0, @@ -15044,7 +16600,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.154864425 + "ts": 0.154577075 }, { "core_id": 1, @@ -15054,7 +16610,7 @@ "params": { "irq_num": 5 }, - "ts": 0.155666425 + "ts": 0.1554482 }, { "core_id": 1, @@ -15062,7 +16618,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.15567995 + "ts": 0.155461725 }, { "core_id": 1, @@ -15070,7 +16626,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.1556951 + "ts": 0.15547685 }, { "core_id": 0, @@ -15080,7 +16636,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1558338 + "ts": 0.15554665 }, { "core_id": 0, @@ -15088,7 +16644,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.155849175 + "ts": 0.15556205 }, { "core_id": 0, @@ -15096,7 +16652,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.15586425 + "ts": 0.155577275 }, { "core_id": 1, @@ -15106,7 +16662,7 @@ "params": { "irq_num": 5 }, - "ts": 0.156666425 + "ts": 0.1564482 }, { "core_id": 1, @@ -15114,7 +16670,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.156680075 + "ts": 0.156461725 }, { "core_id": 1, @@ -15122,7 +16678,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.15669535 + "ts": 0.15647685 }, { "core_id": 0, @@ -15132,7 +16688,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1568338 + "ts": 0.15654665 }, { "core_id": 0, @@ -15140,7 +16696,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.156849175 + "ts": 0.156565625 }, { "core_id": 0, @@ -15148,7 +16704,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.15686425 + "ts": 0.15658085 }, { "core_id": 1, @@ -15158,7 +16714,7 @@ "params": { "irq_num": 5 }, - "ts": 0.157666425 + "ts": 0.1574482 }, { "core_id": 1, @@ -15166,7 +16722,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.15768 + "ts": 0.157461725 }, { "core_id": 1, @@ -15174,7 +16730,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.157695125 + "ts": 0.15747685 }, { "core_id": 0, @@ -15184,7 +16740,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1578338 + "ts": 0.15754665 }, { "core_id": 0, @@ -15192,7 +16748,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.157849175 + "ts": 0.157562 }, { "core_id": 0, @@ -15200,7 +16756,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.15786425 + "ts": 0.157577075 }, { "core_id": 1, @@ -15210,7 +16766,7 @@ "params": { "irq_num": 5 }, - "ts": 0.158666425 + "ts": 0.1584482 }, { "core_id": 1, @@ -15218,7 +16774,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.158680075 + "ts": 0.158461725 }, { "core_id": 1, @@ -15226,7 +16782,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.158695225 + "ts": 0.158476975 }, { "core_id": 0, @@ -15236,7 +16792,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1588338 + "ts": 0.15854665 }, { "core_id": 0, @@ -15244,7 +16800,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1588492 + "ts": 0.158562025 }, { "core_id": 0, @@ -15252,7 +16808,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.158864425 + "ts": 0.158577225 }, { "core_id": 1, @@ -15262,7 +16818,7 @@ "params": { "irq_num": 5 }, - "ts": 0.159666425 + "ts": 0.1594482 }, { "core_id": 1, @@ -15270,7 +16826,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.15967995 + "ts": 0.159461775 }, { "core_id": 1, @@ -15278,7 +16834,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.1596951 + "ts": 0.1594769 }, { "core_id": 0, @@ -15288,7 +16844,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1598338 + "ts": 0.15954665 }, { "core_id": 0, @@ -15296,7 +16852,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.159849175 + "ts": 0.159562 }, { "core_id": 0, @@ -15304,7 +16860,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.15986425 + "ts": 0.159577075 }, { "core_id": 1, @@ -15314,7 +16870,7 @@ "params": { "irq_num": 5 }, - "ts": 0.160666425 + "ts": 0.1604482 }, { "core_id": 1, @@ -15322,7 +16878,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.160680075 + "ts": 0.160461725 }, { "core_id": 1, @@ -15330,7 +16886,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.16069535 + "ts": 0.16047685 }, { "core_id": 0, @@ -15340,7 +16896,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1608338 + "ts": 0.16054665 }, { "core_id": 0, @@ -15348,7 +16904,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.160849175 + "ts": 0.16056205 }, { "core_id": 0, @@ -15356,7 +16912,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.16086425 + "ts": 0.160577275 }, { "core_id": 1, @@ -15366,7 +16922,7 @@ "params": { "irq_num": 5 }, - "ts": 0.161666425 + "ts": 0.1614482 }, { "core_id": 1, @@ -15374,7 +16930,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.16168 + "ts": 0.161461725 }, { "core_id": 1, @@ -15382,7 +16938,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.161695125 + "ts": 0.16147685 }, { "core_id": 0, @@ -15392,7 +16948,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1618338 + "ts": 0.16154665 }, { "core_id": 0, @@ -15400,7 +16956,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.161849175 + "ts": 0.161562 }, { "core_id": 0, @@ -15408,7 +16964,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.16186425 + "ts": 0.161577075 }, { "core_id": 1, @@ -15418,7 +16974,7 @@ "params": { "irq_num": 5 }, - "ts": 0.162666425 + "ts": 0.1624482 }, { "core_id": 1, @@ -15426,7 +16982,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.162680075 + "ts": 0.162461725 }, { "core_id": 1, @@ -15434,7 +16990,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.162695225 + "ts": 0.162476975 }, { "core_id": 0, @@ -15444,7 +17000,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1628338 + "ts": 0.16254665 }, { "core_id": 0, @@ -15452,7 +17008,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1628492 + "ts": 0.162562025 }, { "core_id": 0, @@ -15460,7 +17016,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.162864425 + "ts": 0.162577225 }, { "core_id": 1, @@ -15470,7 +17026,7 @@ "params": { "irq_num": 5 }, - "ts": 0.163666425 + "ts": 0.1634482 }, { "core_id": 1, @@ -15478,7 +17034,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.16367995 + "ts": 0.163461775 }, { "core_id": 1, @@ -15486,7 +17042,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.1636951 + "ts": 0.1634769 }, { "core_id": 0, @@ -15496,7 +17052,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1638338 + "ts": 0.16354665 }, { "core_id": 0, @@ -15504,7 +17060,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.163849175 + "ts": 0.163562 }, { "core_id": 0, @@ -15512,7 +17068,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.16386425 + "ts": 0.163577075 }, { "core_id": 1, @@ -15522,7 +17078,7 @@ "params": { "irq_num": 5 }, - "ts": 0.164666425 + "ts": 0.1644482 }, { "core_id": 1, @@ -15530,7 +17086,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.164683575 + "ts": 0.164461725 }, { "core_id": 1, @@ -15538,7 +17094,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.164698725 + "ts": 0.16447685 }, { "core_id": 0, @@ -15548,7 +17104,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1648338 + "ts": 0.16454665 }, { "core_id": 0, @@ -15556,7 +17112,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.164849175 + "ts": 0.16456205 }, { "core_id": 0, @@ -15564,7 +17120,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.16486425 + "ts": 0.164577275 }, { "core_id": 1, @@ -15574,7 +17130,7 @@ "params": { "irq_num": 5 }, - "ts": 0.165666425 + "ts": 0.1654482 }, { "core_id": 1, @@ -15582,7 +17138,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.165680075 + "ts": 0.165461725 }, { "core_id": 1, @@ -15590,7 +17146,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.165695225 + "ts": 0.16547685 }, { "core_id": 0, @@ -15600,7 +17156,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1658338 + "ts": 0.16554665 }, { "core_id": 0, @@ -15608,7 +17164,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1658492 + "ts": 0.165562 }, { "core_id": 0, @@ -15616,7 +17172,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.165864425 + "ts": 0.165577075 }, { "core_id": 1, @@ -15626,7 +17182,7 @@ "params": { "irq_num": 5 }, - "ts": 0.166666425 + "ts": 0.1664482 }, { "core_id": 1, @@ -15634,7 +17190,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.16667995 + "ts": 0.166461725 }, { "core_id": 1, @@ -15642,7 +17198,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.1666951 + "ts": 0.166476975 }, { "core_id": 0, @@ -15652,7 +17208,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1668338 + "ts": 0.16654665 }, { "core_id": 0, @@ -15660,7 +17216,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.166849175 + "ts": 0.166562025 }, { "core_id": 0, @@ -15668,7 +17224,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.16686425 + "ts": 0.166577225 }, { "core_id": 1, @@ -15678,7 +17234,7 @@ "params": { "irq_num": 5 }, - "ts": 0.167666425 + "ts": 0.1674482 }, { "core_id": 1, @@ -15686,7 +17242,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.167680075 + "ts": 0.167461775 }, { "core_id": 1, @@ -15694,7 +17250,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.16769535 + "ts": 0.1674769 }, { "core_id": 0, @@ -15704,7 +17260,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1678338 + "ts": 0.16754665 }, { "core_id": 0, @@ -15712,7 +17268,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.167849175 + "ts": 0.167562 }, { "core_id": 0, @@ -15720,7 +17276,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.16786425 + "ts": 0.167577075 }, { "core_id": 1, @@ -15730,7 +17286,7 @@ "params": { "irq_num": 5 }, - "ts": 0.168666425 + "ts": 0.1684482 }, { "core_id": 1, @@ -15738,7 +17294,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.16868 + "ts": 0.168461725 }, { "core_id": 1, @@ -15746,7 +17302,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.168695125 + "ts": 0.16847685 }, { "core_id": 0, @@ -15756,7 +17312,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1688338 + "ts": 0.16854665 }, { "core_id": 0, @@ -15764,7 +17320,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.168849175 + "ts": 0.1685663 }, { "core_id": 0, @@ -15772,7 +17328,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.16886425 + "ts": 0.1685815 }, { "core_id": 1, @@ -15782,7 +17338,7 @@ "params": { "irq_num": 5 }, - "ts": 0.169666425 + "ts": 0.1694482 }, { "core_id": 1, @@ -15790,7 +17346,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.169680075 + "ts": 0.169461725 }, { "core_id": 1, @@ -15798,7 +17354,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.169695225 + "ts": 0.16947685 }, { "core_id": 0, @@ -15808,7 +17364,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1698338 + "ts": 0.16954665 }, { "core_id": 0, @@ -15816,7 +17372,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1698492 + "ts": 0.169562 }, { "core_id": 0, @@ -15824,7 +17380,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.169864425 + "ts": 0.169577075 }, { "core_id": 1, @@ -15834,7 +17390,7 @@ "params": { "irq_num": 5 }, - "ts": 0.170666425 + "ts": 0.1704482 }, { "core_id": 1, @@ -15842,7 +17398,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.17067995 + "ts": 0.170461725 }, { "core_id": 1, @@ -15850,7 +17406,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.1706951 + "ts": 0.170476975 }, { "core_id": 0, @@ -15860,7 +17416,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1708338 + "ts": 0.17054665 }, { "core_id": 0, @@ -15868,7 +17424,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.170849175 + "ts": 0.170562025 }, { "core_id": 0, @@ -15876,7 +17432,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.17086425 + "ts": 0.170577225 }, { "core_id": 1, @@ -15886,7 +17442,7 @@ "params": { "irq_num": 5 }, - "ts": 0.171666425 + "ts": 0.1714482 }, { "core_id": 1, @@ -15894,7 +17450,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.171680075 + "ts": 0.171461775 }, { "core_id": 1, @@ -15902,7 +17458,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.17169535 + "ts": 0.1714769 }, { "core_id": 0, @@ -15912,7 +17468,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1718338 + "ts": 0.17154665 }, { "core_id": 0, @@ -15920,7 +17476,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.171849175 + "ts": 0.171562 }, { "core_id": 0, @@ -15928,7 +17484,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.17186425 + "ts": 0.171577075 }, { "core_id": 1, @@ -15938,7 +17494,7 @@ "params": { "irq_num": 5 }, - "ts": 0.172666425 + "ts": 0.1724482 }, { "core_id": 1, @@ -15946,7 +17502,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.17268 + "ts": 0.172461725 }, { "core_id": 1, @@ -15954,7 +17510,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.172695125 + "ts": 0.17247685 }, { "core_id": 0, @@ -15964,7 +17520,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1728338 + "ts": 0.17254665 }, { "core_id": 0, @@ -15972,7 +17528,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.172849175 + "ts": 0.17256205 }, { "core_id": 0, @@ -15980,7 +17536,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.17286425 + "ts": 0.172577275 }, { "core_id": 1, @@ -15990,7 +17546,7 @@ "params": { "irq_num": 5 }, - "ts": 0.173666425 + "ts": 0.1734482 }, { "core_id": 1, @@ -15998,7 +17554,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.173680075 + "ts": 0.173461725 }, { "core_id": 1, @@ -16006,7 +17562,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.173695225 + "ts": 0.17347685 }, { "core_id": 0, @@ -16016,7 +17572,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1738338 + "ts": 0.17354665 }, { "core_id": 0, @@ -16024,7 +17580,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1738492 + "ts": 0.173562 }, { "core_id": 0, @@ -16032,7 +17588,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.173864425 + "ts": 0.173577075 }, { "core_id": 1, @@ -16042,7 +17598,7 @@ "params": { "irq_num": 5 }, - "ts": 0.174666425 + "ts": 0.1744482 }, { "core_id": 1, @@ -16050,7 +17606,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.17467995 + "ts": 0.174461725 }, { "core_id": 1, @@ -16058,7 +17614,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.1746951 + "ts": 0.174476975 }, { "core_id": 0, @@ -16068,7 +17624,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1748338 + "ts": 0.17454665 }, { "core_id": 0, @@ -16076,7 +17632,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.174849175 + "ts": 0.174562025 }, { "core_id": 0, @@ -16084,7 +17640,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.17486425 + "ts": 0.174577225 }, { "core_id": 1, @@ -16094,7 +17650,7 @@ "params": { "irq_num": 5 }, - "ts": 0.175666425 + "ts": 0.1754482 }, { "core_id": 1, @@ -16102,7 +17658,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.175680075 + "ts": 0.175461775 }, { "core_id": 1, @@ -16110,7 +17666,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.17569535 + "ts": 0.1754769 }, { "core_id": 0, @@ -16120,7 +17676,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1758338 + "ts": 0.17554665 }, { "core_id": 0, @@ -16128,7 +17684,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.175849175 + "ts": 0.175562 }, { "core_id": 0, @@ -16136,7 +17692,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.17586425 + "ts": 0.175577075 }, { "core_id": 1, @@ -16146,7 +17702,7 @@ "params": { "irq_num": 5 }, - "ts": 0.176666425 + "ts": 0.1764482 }, { "core_id": 1, @@ -16154,7 +17710,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.176684225 + "ts": 0.176461725 }, { "core_id": 1, @@ -16162,7 +17718,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.176699375 + "ts": 0.17647685 }, { "core_id": 0, @@ -16172,7 +17728,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1768338 + "ts": 0.17654665 }, { "core_id": 0, @@ -16180,7 +17736,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.176849175 + "ts": 0.17656205 }, { "core_id": 0, @@ -16188,7 +17744,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.17686425 + "ts": 0.176577275 }, { "core_id": 1, @@ -16198,7 +17754,7 @@ "params": { "irq_num": 5 }, - "ts": 0.177666425 + "ts": 0.1774482 }, { "core_id": 1, @@ -16206,7 +17762,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.177680075 + "ts": 0.177461725 }, { "core_id": 1, @@ -16214,7 +17770,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.177695225 + "ts": 0.17747685 }, { "core_id": 0, @@ -16224,7 +17780,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1778338 + "ts": 0.17754665 }, { "core_id": 0, @@ -16232,7 +17788,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1778492 + "ts": 0.177562 }, { "core_id": 0, @@ -16240,7 +17796,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.177864425 + "ts": 0.177577075 }, { "core_id": 1, @@ -16250,7 +17806,7 @@ "params": { "irq_num": 5 }, - "ts": 0.178666425 + "ts": 0.1784482 }, { "core_id": 1, @@ -16258,7 +17814,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.17867995 + "ts": 0.178461725 }, { "core_id": 1, @@ -16266,7 +17822,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.1786951 + "ts": 0.178476975 }, { "core_id": 0, @@ -16276,7 +17832,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1788338 + "ts": 0.17854665 }, { "core_id": 0, @@ -16284,7 +17840,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.178849175 + "ts": 0.178562025 }, { "core_id": 0, @@ -16292,7 +17848,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.17886425 + "ts": 0.178577225 }, { "core_id": 1, @@ -16302,7 +17858,7 @@ "params": { "irq_num": 5 }, - "ts": 0.179666425 + "ts": 0.1794482 }, { "core_id": 1, @@ -16310,7 +17866,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.179680075 + "ts": 0.179461775 }, { "core_id": 1, @@ -16318,7 +17874,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.17969535 + "ts": 0.1794769 }, { "core_id": 0, @@ -16328,7 +17884,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1798338 + "ts": 0.17954665 }, { "core_id": 0, @@ -16336,7 +17892,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.179849175 + "ts": 0.179562 }, { "core_id": 0, @@ -16344,7 +17900,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.17986425 + "ts": 0.179577075 }, { "core_id": 1, @@ -16354,7 +17910,7 @@ "params": { "irq_num": 5 }, - "ts": 0.180666425 + "ts": 0.1804482 }, { "core_id": 1, @@ -16362,7 +17918,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.18068 + "ts": 0.180461725 }, { "core_id": 1, @@ -16370,7 +17926,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.180695125 + "ts": 0.18047685 }, { "core_id": 0, @@ -16380,7 +17936,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1808338 + "ts": 0.18054665 }, { "core_id": 0, @@ -16388,7 +17944,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.180849175 + "ts": 0.1805663 }, { "core_id": 0, @@ -16396,7 +17952,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.18086425 + "ts": 0.1805815 }, { "core_id": 1, @@ -16406,7 +17962,7 @@ "params": { "irq_num": 5 }, - "ts": 0.181666425 + "ts": 0.1814482 }, { "core_id": 1, @@ -16414,7 +17970,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.181680075 + "ts": 0.181461725 }, { "core_id": 1, @@ -16422,7 +17978,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.181695225 + "ts": 0.18147685 }, { "core_id": 0, @@ -16432,7 +17988,59 @@ "params": { "irq_num": 5 }, - "ts": 0.1818338 + "ts": 0.18154665 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.181562 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.181577075 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.1824482 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.182461725 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.182476975 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.18254665 }, { "core_id": 0, @@ -16440,9 +18048,19 @@ "id": 6, "in_irq": true, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.181848825 + "ts": 0.182561625 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12284596 + }, + "ts": 0.182561625 }, { "core_id": 0, @@ -16450,7 +18068,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.181861575 + "ts": 0.182574225 }, { "core_id": 0, @@ -16458,18 +18076,18 @@ "id": 4, "in_irq": false, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.18187725 + "ts": 0.182589875 }, { - "addr": "0x3ffbb824", + "addr": "0x3ffbafe0", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -16481,16 +18099,16 @@ "id": 512, "in_irq": false, "size": 7, - "ts": 0.181912575 + "ts": 0.1826249 }, { - "addr": "0x3ffbb834", + "addr": "0x3ffbb014", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -16502,7 +18120,7 @@ "id": 512, "in_irq": false, "size": 14, - "ts": 0.181947 + "ts": 0.182660375 }, { "core_id": 0, @@ -16512,10 +18130,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.181964025 + "ts": 0.1826773 }, { "core_id": 0, @@ -16525,10 +18143,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.181980025 + "ts": 0.18269325 }, { "core_id": 0, @@ -16536,8 +18154,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (490) example: Task[0x3ffb7aec]: allocated 14 bytes @ 0x3ffbb834\n", - "ts": 0.18205045 + "msg": "I (478) example: Task[0x3ffb72b4]: allocated 14 bytes @ 0x3ffbb014\n", + "ts": 0.182748025 }, { "core_id": 0, @@ -16545,8 +18163,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (490) example: Task[0x3ffb7aec]: allocated 14 bytes @ 0x3ffbb834\n", - "ts": 0.18205045 + "msg": "I (478) example: Task[0x3ffb72b4]: allocated 14 bytes @ 0x3ffbb014\n", + "ts": 0.182748025 }, { "core_id": 0, @@ -16556,10 +18174,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12287056, + "xQueue": 12284952, "xTicksToWait": 0 }, - "ts": 0.1820682 + "ts": 0.1827615 }, { "core_id": 0, @@ -16567,9 +18185,19 @@ "id": 6, "in_irq": false, "params": { - "tid": 12289748 + "tid": 12287644 }, - "ts": 0.182081425 + "ts": 0.18277885 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12287644 + }, + "ts": 0.18277885 }, { "core_id": 1, @@ -16579,7 +18207,7 @@ "params": { "irq_num": 31 }, - "ts": 0.18209765 + "ts": 0.1827951 }, { "core_id": 0, @@ -16589,7 +18217,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.182108525 + "ts": 0.18280605 }, { "core_id": 1, @@ -16597,7 +18225,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.182119275 + "ts": 0.182816825 }, { "core_id": 0, @@ -16607,7 +18235,7 @@ "params": { "irq_num": 30 }, - "ts": 0.182133125 + "ts": 0.18283055 }, { "core_id": 1, @@ -16615,9 +18243,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12289748 + "tid": 12287644 }, - "ts": 0.182144 + "ts": 0.1828413 }, { "core_id": 0, @@ -16625,7 +18253,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.182154825 + "ts": 0.1828521 }, { "core_id": 1, @@ -16635,10 +18263,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12287056, + "xQueue": 12284952, "xTicksToWait": 4294967295 }, - "ts": 0.1821668 + "ts": 0.182864075 }, { "core_id": 0, @@ -16646,7 +18274,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.18217705 + "ts": 0.182874325 }, { "core_id": 1, @@ -16656,10 +18284,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.18218845 + "ts": 0.182886075 }, { "core_id": 1, @@ -16669,10 +18297,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.182204825 + "ts": 0.18290235 }, { "core_id": 1, @@ -16680,8 +18308,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (490) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb834\n", - "ts": 0.182268375 + "msg": "I (478) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbb014\n", + "ts": 0.182950125 }, { "core_id": 1, @@ -16689,15 +18317,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (490) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb834\n", - "ts": 0.182268375 + "msg": "I (478) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbb014\n", + "ts": 0.182950125 }, { - "addr": "0x3ffbb834", + "addr": "0x3ffbb014", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", + "0x4008da24", + "0x400d3c72", + "0x400880dc", "0x0", "0x0", "0x0", @@ -16711,7 +18339,7 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 0.182289575 + "ts": 0.1829715 }, { "core_id": 1, @@ -16721,7 +18349,7 @@ "params": { "irq_num": 31 }, - "ts": 0.182320575 + "ts": 0.1829989 }, { "core_id": 1, @@ -16729,7 +18357,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.18233205 + "ts": 0.183010325 }, { "core_id": 1, @@ -16737,7 +18365,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.18234875 + "ts": 0.183026875 }, { "core_id": 1, @@ -16747,7 +18375,7 @@ "params": { "irq_num": 5 }, - "ts": 0.182666425 + "ts": 0.1834482 }, { "core_id": 1, @@ -16755,7 +18383,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.182679875 + "ts": 0.183461725 }, { "core_id": 1, @@ -16763,7 +18391,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.18269545 + "ts": 0.1834773 }, { "core_id": 0, @@ -16773,7 +18401,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1828338 + "ts": 0.18354665 }, { "core_id": 0, @@ -16781,9 +18409,39 @@ "id": 6, "in_irq": true, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.182848825 + "ts": 0.183561675 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12290612 + }, + "ts": 0.183561675 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12296612 + }, + "ts": 0.1835735 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12296612 + }, + "ts": 0.1835735 }, { "core_id": 0, @@ -16791,7 +18449,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.182861575 + "ts": 0.183586 }, { "core_id": 0, @@ -16799,18 +18457,18 @@ "id": 4, "in_irq": false, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.18287725 + "ts": 0.183601675 }, { - "addr": "0x3ffbb834", + "addr": "0x3ffbb014", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -16822,16 +18480,16 @@ "id": 512, "in_irq": false, "size": 14, - "ts": 0.182912575 + "ts": 0.183638125 }, { - "addr": "0x3ffbb848", + "addr": "0x3ffbb028", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -16843,7 +18501,7 @@ "id": 512, "in_irq": false, "size": 28, - "ts": 0.182947 + "ts": 0.1836777 }, { "core_id": 0, @@ -16853,10 +18511,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.182964025 + "ts": 0.18369465 }, { "core_id": 0, @@ -16866,10 +18524,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.182980025 + "ts": 0.183710775 }, { "core_id": 0, @@ -16877,8 +18535,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (491) example: Task[0x3ffb926c]: allocated 28 bytes @ 0x3ffbb848\n", - "ts": 0.18305045 + "msg": "I (479) example: Task[0x3ffb8a34]: allocated 28 bytes @ 0x3ffbb028\n", + "ts": 0.1837655 }, { "core_id": 0, @@ -16886,8 +18544,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (491) example: Task[0x3ffb926c]: allocated 28 bytes @ 0x3ffbb848\n", - "ts": 0.18305045 + "msg": "I (479) example: Task[0x3ffb8a34]: allocated 28 bytes @ 0x3ffbb028\n", + "ts": 0.1837655 }, { "core_id": 0, @@ -16897,10 +18555,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12293072, + "xQueue": 12290968, "xTicksToWait": 0 }, - "ts": 0.183064 + "ts": 0.18377895 }, { "core_id": 0, @@ -16908,9 +18566,19 @@ "id": 6, "in_irq": false, "params": { - "tid": 12295764 + "tid": 12293660 }, - "ts": 0.183081425 + "ts": 0.183792325 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12293660 + }, + "ts": 0.183792325 }, { "core_id": 1, @@ -16920,7 +18588,7 @@ "params": { "irq_num": 31 }, - "ts": 0.183097725 + "ts": 0.183808675 }, { "core_id": 0, @@ -16930,7 +18598,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.183108575 + "ts": 0.183819525 }, { "core_id": 1, @@ -16938,7 +18606,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.183119325 + "ts": 0.18383035 }, { "core_id": 0, @@ -16948,7 +18616,7 @@ "params": { "irq_num": 30 }, - "ts": 0.18313305 + "ts": 0.183844125 }, { "core_id": 1, @@ -16956,9 +18624,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12295764 + "tid": 12293660 }, - "ts": 0.1831439 + "ts": 0.183856075 }, { "core_id": 0, @@ -16966,7 +18634,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.183154725 + "ts": 0.183867225 }, { "core_id": 1, @@ -16976,18 +18644,20 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12293072, + "xQueue": 12290968, "xTicksToWait": 4294967295 }, - "ts": 0.1831666 + "ts": 0.183879175 }, { "core_id": 0, - "ctx_name": "alloc1", - "id": 17, + "ctx_name": "alloc2", + "id": 4, "in_irq": false, - "params": {}, - "ts": 0.18317685 + "params": { + "tid": 12296612 + }, + "ts": 0.183890825 }, { "core_id": 1, @@ -16997,10 +18667,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.183188325 + "ts": 0.1839025 }, { "core_id": 1, @@ -17010,148 +18680,19 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.183204625 + "ts": 0.183924575 }, { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (491) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb848\n", - "ts": 0.183268075 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (491) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb848\n", - "ts": 0.183268075 - }, - { - "addr": "0x3ffbb848", + "addr": "0x3ffbb048", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.18328925 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.18331625 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.183327675 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.18334425 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.183666425 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.18367985 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.18369555 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.1838338 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12298716 - }, - "ts": 0.1838488 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.183861575 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12298716 - }, - "ts": 0.18387725 - }, - { - "addr": "0x3ffbb848", - "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -17163,16 +18704,34 @@ "id": 512, "in_irq": false, "size": 21, - "ts": 0.18391265 + "ts": 0.18393615 }, { - "addr": "0x3ffbb864", + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (479) example: Task[0x3ffb961c]: free memory @ 0x3ffbb028\n", + "ts": 0.1839775 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (479) example: Task[0x3ffb961c]: free memory @ 0x3ffbb028\n", + "ts": 0.1839775 + }, + { + "addr": "0x3ffbb064", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -17184,7 +18743,28 @@ "id": 512, "in_irq": false, "size": 42, - "ts": 0.183951325 + "ts": 0.1839886 + }, + { + "addr": "0x3ffbb028", + "callers": [ + "0x4008da24", + "0x400d3c72", + "0x400880dc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.184003025 }, { "core_id": 0, @@ -17194,64 +18774,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.183968225 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12283904, - "xTicksToWait": 0 - }, - "ts": 0.1839842 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (492) example: Task[0x3ffba9dc]: allocated 42 bytes @ 0x3ffbb864\n", - "ts": 0.18405455 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (492) example: Task[0x3ffba9dc]: allocated 42 bytes @ 0x3ffbb864\n", - "ts": 0.18405455 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12299072, - "xTicksToWait": 0 - }, - "ts": 0.18406815 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12301764 - }, - "ts": 0.184081375 + "ts": 0.1840156 }, { "core_id": 1, @@ -17261,7 +18787,97 @@ "params": { "irq_num": 31 }, - "ts": 0.184097675 + "ts": 0.184034475 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12281672, + "xTicksToWait": 0 + }, + "ts": 0.1840457 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.184056475 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.184074625 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (479) example: Task[0x3ffba1a4]: allocated 42 bytes @ 0x3ffbb064\n", + "ts": 0.184102425 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (479) example: Task[0x3ffba1a4]: allocated 42 bytes @ 0x3ffbb064\n", + "ts": 0.184102425 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12296968, + "xTicksToWait": 0 + }, + "ts": 0.18412015 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12299660 + }, + "ts": 0.1841334 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12299660 + }, + "ts": 0.1841334 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.18414975 }, { "core_id": 0, @@ -17271,7 +18887,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.184108525 + "ts": 0.1841606 }, { "core_id": 1, @@ -17279,7 +18895,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1841193 + "ts": 0.184171425 }, { "core_id": 0, @@ -17289,7 +18905,7 @@ "params": { "irq_num": 30 }, - "ts": 0.184133175 + "ts": 0.184185225 }, { "core_id": 1, @@ -17297,9 +18913,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12301764 + "tid": 12299660 }, - "ts": 0.18414405 + "ts": 0.184195975 }, { "core_id": 0, @@ -17307,7 +18923,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.184154875 + "ts": 0.18420675 }, { "core_id": 1, @@ -17317,10 +18933,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12299072, + "xQueue": 12296968, "xTicksToWait": 4294967295 }, - "ts": 0.18416675 + "ts": 0.18421885 }, { "core_id": 0, @@ -17328,7 +18944,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.184178025 + "ts": 0.18423005 }, { "core_id": 1, @@ -17338,10 +18954,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.184189675 + "ts": 0.1842424 }, { "core_id": 1, @@ -17351,10 +18967,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.184209375 + "ts": 0.184258625 }, { "core_id": 1, @@ -17362,8 +18978,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (492) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb864\n", - "ts": 0.184272925 + "msg": "I (479) example: Task[0x3ffbad8c]: free memory @ 0x3ffbb064\n", + "ts": 0.1843065 }, { "core_id": 1, @@ -17371,15 +18987,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (492) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb864\n", - "ts": 0.184272925 + "msg": "I (479) example: Task[0x3ffbad8c]: free memory @ 0x3ffbb064\n", + "ts": 0.1843065 }, { - "addr": "0x3ffbb864", + "addr": "0x3ffbb064", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", + "0x4008da24", + "0x400d3c72", + "0x400880dc", "0x0", "0x0", "0x0", @@ -17393,7 +19009,7 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 0.184294125 + "ts": 0.184327925 }, { "core_id": 1, @@ -17403,7 +19019,7 @@ "params": { "irq_num": 31 }, - "ts": 0.184321025 + "ts": 0.18435925 }, { "core_id": 1, @@ -17411,7 +19027,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.184332575 + "ts": 0.184370825 }, { "core_id": 1, @@ -17419,7 +19035,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.18434915 + "ts": 0.184387525 }, { "core_id": 1, @@ -17429,7 +19045,7 @@ "params": { "irq_num": 5 }, - "ts": 0.184666425 + "ts": 0.1844482 }, { "core_id": 1, @@ -17437,7 +19053,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.18467985 + "ts": 0.184461625 }, { "core_id": 1, @@ -17445,7 +19061,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.18469555 + "ts": 0.1844772 }, { "core_id": 0, @@ -17455,7 +19071,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1848338 + "ts": 0.18454665 }, { "core_id": 0, @@ -17463,7 +19079,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.184849175 + "ts": 0.18456205 }, { "core_id": 0, @@ -17471,7 +19087,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.18486425 + "ts": 0.184577275 }, { "core_id": 1, @@ -17481,7 +19097,7 @@ "params": { "irq_num": 5 }, - "ts": 0.185666425 + "ts": 0.1854482 }, { "core_id": 1, @@ -17489,7 +19105,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.185680075 + "ts": 0.185461725 }, { "core_id": 1, @@ -17497,7 +19113,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.18569535 + "ts": 0.18547685 }, { "core_id": 0, @@ -17507,7 +19123,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1858338 + "ts": 0.18554665 }, { "core_id": 0, @@ -17515,7 +19131,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.185849175 + "ts": 0.185562 }, { "core_id": 0, @@ -17523,7 +19139,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.18586425 + "ts": 0.185577075 }, { "core_id": 1, @@ -17533,7 +19149,7 @@ "params": { "irq_num": 5 }, - "ts": 0.186666425 + "ts": 0.1864482 }, { "core_id": 1, @@ -17541,7 +19157,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.18668 + "ts": 0.186461725 }, { "core_id": 1, @@ -17549,7 +19165,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.186695125 + "ts": 0.186476975 }, { "core_id": 0, @@ -17559,7 +19175,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1868338 + "ts": 0.18654665 }, { "core_id": 0, @@ -17567,7 +19183,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.186849175 + "ts": 0.186562025 }, { "core_id": 0, @@ -17575,7 +19191,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.18686425 + "ts": 0.186577225 }, { "core_id": 1, @@ -17585,7 +19201,7 @@ "params": { "irq_num": 5 }, - "ts": 0.187666425 + "ts": 0.1874482 }, { "core_id": 1, @@ -17593,7 +19209,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.187680075 + "ts": 0.187461775 }, { "core_id": 1, @@ -17601,7 +19217,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.187695225 + "ts": 0.1874769 }, { "core_id": 0, @@ -17611,7 +19227,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1878338 + "ts": 0.18754665 }, { "core_id": 0, @@ -17619,7 +19235,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1878492 + "ts": 0.187562 }, { "core_id": 0, @@ -17627,7 +19243,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.187864425 + "ts": 0.187577075 }, { "core_id": 1, @@ -17637,7 +19253,7 @@ "params": { "irq_num": 5 }, - "ts": 0.188666425 + "ts": 0.1884482 }, { "core_id": 1, @@ -17645,7 +19261,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.18867995 + "ts": 0.188461725 }, { "core_id": 1, @@ -17653,7 +19269,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.1886951 + "ts": 0.18847685 }, { "core_id": 0, @@ -17663,7 +19279,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1888338 + "ts": 0.18854665 }, { "core_id": 0, @@ -17671,7 +19287,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.188849175 + "ts": 0.18856205 }, { "core_id": 0, @@ -17679,7 +19295,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.18886425 + "ts": 0.188577275 }, { "core_id": 1, @@ -17689,7 +19305,7 @@ "params": { "irq_num": 5 }, - "ts": 0.189666425 + "ts": 0.1894482 }, { "core_id": 1, @@ -17697,7 +19313,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.189680075 + "ts": 0.189461725 }, { "core_id": 1, @@ -17705,7 +19321,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.18969535 + "ts": 0.18947685 }, { "core_id": 0, @@ -17715,7 +19331,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1898338 + "ts": 0.18954665 }, { "core_id": 0, @@ -17723,7 +19339,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.189849175 + "ts": 0.189562 }, { "core_id": 0, @@ -17731,7 +19347,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.189868575 + "ts": 0.189577075 }, { "core_id": 1, @@ -17741,7 +19357,7 @@ "params": { "irq_num": 5 }, - "ts": 0.190666425 + "ts": 0.1904482 }, { "core_id": 1, @@ -17749,7 +19365,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.19067995 + "ts": 0.190461725 }, { "core_id": 1, @@ -17757,7 +19373,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.1906951 + "ts": 0.190476975 }, { "core_id": 0, @@ -17767,7 +19383,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1908338 + "ts": 0.19054665 }, { "core_id": 0, @@ -17775,7 +19391,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.190849175 + "ts": 0.190562025 }, { "core_id": 0, @@ -17783,7 +19399,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.19086425 + "ts": 0.190577225 }, { "core_id": 1, @@ -17793,7 +19409,7 @@ "params": { "irq_num": 5 }, - "ts": 0.191666425 + "ts": 0.1914482 }, { "core_id": 1, @@ -17801,7 +19417,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.191680075 + "ts": 0.191461775 }, { "core_id": 1, @@ -17809,7 +19425,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.19169535 + "ts": 0.1914769 }, { "core_id": 0, @@ -17819,7 +19435,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1918338 + "ts": 0.19154665 }, { "core_id": 0, @@ -17827,7 +19443,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.191849175 + "ts": 0.191562 }, { "core_id": 0, @@ -17835,7 +19451,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.19186425 + "ts": 0.191577075 }, { "core_id": 1, @@ -17845,7 +19461,7 @@ "params": { "irq_num": 5 }, - "ts": 0.192666425 + "ts": 0.1924482 }, { "core_id": 1, @@ -17853,7 +19469,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.19268 + "ts": 0.192461725 }, { "core_id": 1, @@ -17861,7 +19477,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.192695125 + "ts": 0.19247685 }, { "core_id": 0, @@ -17871,7 +19487,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1928338 + "ts": 0.19254665 }, { "core_id": 0, @@ -17879,7 +19495,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.192849175 + "ts": 0.19256205 }, { "core_id": 0, @@ -17887,7 +19503,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.19286425 + "ts": 0.192577275 }, { "core_id": 1, @@ -17897,7 +19513,7 @@ "params": { "irq_num": 5 }, - "ts": 0.193666425 + "ts": 0.1934482 }, { "core_id": 1, @@ -17905,7 +19521,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.193680075 + "ts": 0.193461725 }, { "core_id": 1, @@ -17913,7 +19529,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.193695225 + "ts": 0.19347685 }, { "core_id": 0, @@ -17923,7 +19539,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1938338 + "ts": 0.19354665 }, { "core_id": 0, @@ -17931,7 +19547,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1938492 + "ts": 0.193562 }, { "core_id": 0, @@ -17939,7 +19555,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.193864425 + "ts": 0.193577075 }, { "core_id": 1, @@ -17949,7 +19565,7 @@ "params": { "irq_num": 5 }, - "ts": 0.194666425 + "ts": 0.1944482 }, { "core_id": 1, @@ -17957,7 +19573,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.19467995 + "ts": 0.19446595 }, { "core_id": 1, @@ -17965,7 +19581,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.1946951 + "ts": 0.1944811 }, { "core_id": 0, @@ -17975,7 +19591,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1948338 + "ts": 0.19454665 }, { "core_id": 0, @@ -17983,7 +19599,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.194849175 + "ts": 0.194562 }, { "core_id": 0, @@ -17991,7 +19607,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.19486425 + "ts": 0.194577075 }, { "core_id": 1, @@ -18001,7 +19617,7 @@ "params": { "irq_num": 5 }, - "ts": 0.195666425 + "ts": 0.1954482 }, { "core_id": 1, @@ -18009,7 +19625,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.195680075 + "ts": 0.195461725 }, { "core_id": 1, @@ -18017,7 +19633,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.19569535 + "ts": 0.19547685 }, { "core_id": 0, @@ -18027,7 +19643,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1958338 + "ts": 0.19554665 }, { "core_id": 0, @@ -18035,7 +19651,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.195849175 + "ts": 0.19556205 }, { "core_id": 0, @@ -18043,7 +19659,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.19586425 + "ts": 0.195577275 }, { "core_id": 1, @@ -18053,7 +19669,7 @@ "params": { "irq_num": 5 }, - "ts": 0.196666425 + "ts": 0.1964482 }, { "core_id": 1, @@ -18061,7 +19677,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.19668 + "ts": 0.196461725 }, { "core_id": 1, @@ -18069,7 +19685,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.196695125 + "ts": 0.19647685 }, { "core_id": 0, @@ -18079,7 +19695,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1968338 + "ts": 0.19654665 }, { "core_id": 0, @@ -18087,7 +19703,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.196849175 + "ts": 0.196562 }, { "core_id": 0, @@ -18095,7 +19711,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.19686425 + "ts": 0.196577075 }, { "core_id": 1, @@ -18105,7 +19721,7 @@ "params": { "irq_num": 5 }, - "ts": 0.197666425 + "ts": 0.1974482 }, { "core_id": 1, @@ -18113,7 +19729,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.197680075 + "ts": 0.197461725 }, { "core_id": 1, @@ -18121,7 +19737,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.197695225 + "ts": 0.197476975 }, { "core_id": 0, @@ -18131,7 +19747,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1978338 + "ts": 0.19754665 }, { "core_id": 0, @@ -18139,7 +19755,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.1978492 + "ts": 0.197562025 }, { "core_id": 0, @@ -18147,7 +19763,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.197864425 + "ts": 0.197577225 }, { "core_id": 1, @@ -18157,7 +19773,7 @@ "params": { "irq_num": 5 }, - "ts": 0.198666425 + "ts": 0.1984482 }, { "core_id": 1, @@ -18165,7 +19781,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.19867995 + "ts": 0.198461775 }, { "core_id": 1, @@ -18173,7 +19789,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.1986951 + "ts": 0.1984769 }, { "core_id": 0, @@ -18183,7 +19799,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1988338 + "ts": 0.19854665 }, { "core_id": 0, @@ -18191,7 +19807,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.198849175 + "ts": 0.198562 }, { "core_id": 0, @@ -18199,7 +19815,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.19886425 + "ts": 0.198577075 }, { "core_id": 1, @@ -18209,7 +19825,7 @@ "params": { "irq_num": 5 }, - "ts": 0.199666425 + "ts": 0.1994482 }, { "core_id": 1, @@ -18217,7 +19833,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.199680075 + "ts": 0.199461725 }, { "core_id": 1, @@ -18225,7 +19841,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.19969535 + "ts": 0.19947685 }, { "core_id": 0, @@ -18235,7 +19851,7 @@ "params": { "irq_num": 5 }, - "ts": 0.1998338 + "ts": 0.19954665 }, { "core_id": 0, @@ -18243,7 +19859,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.199849175 + "ts": 0.19956205 }, { "core_id": 0, @@ -18251,7 +19867,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.19986425 + "ts": 0.199577275 }, { "core_id": 1, @@ -18261,7 +19877,7 @@ "params": { "irq_num": 5 }, - "ts": 0.200666425 + "ts": 0.2004482 }, { "core_id": 1, @@ -18269,7 +19885,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.20068 + "ts": 0.200461725 }, { "core_id": 1, @@ -18277,7 +19893,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.200695125 + "ts": 0.20047685 }, { "core_id": 0, @@ -18287,7 +19903,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2008338 + "ts": 0.20054665 }, { "core_id": 0, @@ -18295,7 +19911,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.200849175 + "ts": 0.200562 }, { "core_id": 0, @@ -18303,7 +19919,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.20086425 + "ts": 0.200577075 }, { "core_id": 1, @@ -18313,7 +19929,7 @@ "params": { "irq_num": 5 }, - "ts": 0.201666425 + "ts": 0.2014482 }, { "core_id": 1, @@ -18321,7 +19937,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.201680075 + "ts": 0.201461725 }, { "core_id": 1, @@ -18329,7 +19945,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.201695225 + "ts": 0.201476975 }, { "core_id": 0, @@ -18339,7 +19955,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2018338 + "ts": 0.20154665 }, { "core_id": 0, @@ -18347,7 +19963,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2018492 + "ts": 0.201562025 }, { "core_id": 0, @@ -18355,7 +19971,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.201864425 + "ts": 0.201577225 }, { "core_id": 1, @@ -18365,7 +19981,7 @@ "params": { "irq_num": 5 }, - "ts": 0.202666425 + "ts": 0.2024482 }, { "core_id": 1, @@ -18373,7 +19989,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.202680075 + "ts": 0.202461775 }, { "core_id": 1, @@ -18381,7 +19997,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.20269535 + "ts": 0.2024769 }, { "core_id": 0, @@ -18391,7 +20007,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2028338 + "ts": 0.20254665 }, { "core_id": 0, @@ -18399,7 +20015,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.202849175 + "ts": 0.202562 }, { "core_id": 0, @@ -18407,7 +20023,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.20286425 + "ts": 0.202577075 }, { "core_id": 1, @@ -18417,7 +20033,7 @@ "params": { "irq_num": 5 }, - "ts": 0.203666425 + "ts": 0.2034482 }, { "core_id": 1, @@ -18425,7 +20041,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.20368 + "ts": 0.203461725 }, { "core_id": 1, @@ -18433,7 +20049,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.203695125 + "ts": 0.20347685 }, { "core_id": 0, @@ -18443,7 +20059,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2038338 + "ts": 0.20354665 }, { "core_id": 0, @@ -18451,7 +20067,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.203849175 + "ts": 0.20356205 }, { "core_id": 0, @@ -18459,7 +20075,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.20386425 + "ts": 0.203577275 }, { "core_id": 1, @@ -18469,7 +20085,7 @@ "params": { "irq_num": 5 }, - "ts": 0.204666425 + "ts": 0.2044482 }, { "core_id": 1, @@ -18477,7 +20093,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.204680075 + "ts": 0.204461725 }, { "core_id": 1, @@ -18485,7 +20101,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.204695225 + "ts": 0.20447685 }, { "core_id": 0, @@ -18495,7 +20111,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2048338 + "ts": 0.20454665 }, { "core_id": 0, @@ -18503,7 +20119,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2048492 + "ts": 0.204562 }, { "core_id": 0, @@ -18511,7 +20127,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.204864425 + "ts": 0.204577075 }, { "core_id": 1, @@ -18521,7 +20137,7 @@ "params": { "irq_num": 5 }, - "ts": 0.205666425 + "ts": 0.2054482 }, { "core_id": 1, @@ -18529,7 +20145,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.20567995 + "ts": 0.205461725 }, { "core_id": 1, @@ -18537,7 +20153,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.2056951 + "ts": 0.205476975 }, { "core_id": 0, @@ -18547,7 +20163,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2058338 + "ts": 0.20554665 }, { "core_id": 0, @@ -18555,7 +20171,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.205849175 + "ts": 0.205562025 }, { "core_id": 0, @@ -18563,7 +20179,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.20586425 + "ts": 0.205577225 }, { "core_id": 1, @@ -18573,7 +20189,7 @@ "params": { "irq_num": 5 }, - "ts": 0.206666425 + "ts": 0.2064482 }, { "core_id": 1, @@ -18581,7 +20197,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.206680075 + "ts": 0.206466 }, { "core_id": 1, @@ -18589,7 +20205,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.20669535 + "ts": 0.206481125 }, { "core_id": 0, @@ -18599,7 +20215,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2068338 + "ts": 0.20654665 }, { "core_id": 0, @@ -18607,7 +20223,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.206849175 + "ts": 0.206562 }, { "core_id": 0, @@ -18615,7 +20231,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.20686425 + "ts": 0.206577075 }, { "core_id": 1, @@ -18625,7 +20241,7 @@ "params": { "irq_num": 5 }, - "ts": 0.207666425 + "ts": 0.2074482 }, { "core_id": 1, @@ -18633,7 +20249,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.20768 + "ts": 0.207461725 }, { "core_id": 1, @@ -18641,7 +20257,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.207695125 + "ts": 0.20747685 }, { "core_id": 0, @@ -18651,7 +20267,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2078338 + "ts": 0.20754665 }, { "core_id": 0, @@ -18659,7 +20275,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.207849175 + "ts": 0.20756205 }, { "core_id": 0, @@ -18667,7 +20283,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.20786425 + "ts": 0.207577275 }, { "core_id": 1, @@ -18677,7 +20293,7 @@ "params": { "irq_num": 5 }, - "ts": 0.208666425 + "ts": 0.2084482 }, { "core_id": 1, @@ -18685,7 +20301,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.208680075 + "ts": 0.208461725 }, { "core_id": 1, @@ -18693,7 +20309,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.208695225 + "ts": 0.20847685 }, { "core_id": 0, @@ -18703,7 +20319,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2088338 + "ts": 0.20854665 }, { "core_id": 0, @@ -18711,7 +20327,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2088492 + "ts": 0.208562 }, { "core_id": 0, @@ -18719,7 +20335,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.208864425 + "ts": 0.208577075 }, { "core_id": 1, @@ -18729,7 +20345,7 @@ "params": { "irq_num": 5 }, - "ts": 0.209666425 + "ts": 0.2094482 }, { "core_id": 1, @@ -18737,7 +20353,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.20967995 + "ts": 0.209461725 }, { "core_id": 1, @@ -18745,7 +20361,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.2096951 + "ts": 0.209476975 }, { "core_id": 0, @@ -18755,7 +20371,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2098338 + "ts": 0.20954665 }, { "core_id": 0, @@ -18763,7 +20379,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.209849175 + "ts": 0.209562025 }, { "core_id": 0, @@ -18771,7 +20387,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.20986425 + "ts": 0.209577225 }, { "core_id": 1, @@ -18781,7 +20397,7 @@ "params": { "irq_num": 5 }, - "ts": 0.210666425 + "ts": 0.2104482 }, { "core_id": 1, @@ -18789,7 +20405,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.210680075 + "ts": 0.210461775 }, { "core_id": 1, @@ -18797,7 +20413,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.21069535 + "ts": 0.2104769 }, { "core_id": 0, @@ -18807,7 +20423,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2108338 + "ts": 0.21054665 }, { "core_id": 0, @@ -18815,7 +20431,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.210849175 + "ts": 0.210562 }, { "core_id": 0, @@ -18823,7 +20439,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.21086425 + "ts": 0.210577075 }, { "core_id": 1, @@ -18833,7 +20449,7 @@ "params": { "irq_num": 5 }, - "ts": 0.211666425 + "ts": 0.2114482 }, { "core_id": 1, @@ -18841,7 +20457,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.21168 + "ts": 0.211461725 }, { "core_id": 1, @@ -18849,7 +20465,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.211695125 + "ts": 0.21147685 }, { "core_id": 0, @@ -18859,7 +20475,59 @@ "params": { "irq_num": 5 }, - "ts": 0.2118338 + "ts": 0.21154665 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.21156205 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.211577275 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2124482 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.212461725 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.21247685 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.21254665 }, { "core_id": 0, @@ -18867,9 +20535,19 @@ "id": 6, "in_irq": true, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.2118488 + "ts": 0.212561625 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12284596 + }, + "ts": 0.212561625 }, { "core_id": 0, @@ -18877,7 +20555,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.211861575 + "ts": 0.212574275 }, { "core_id": 0, @@ -18885,18 +20563,18 @@ "id": 4, "in_irq": false, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.21187725 + "ts": 0.212590075 }, { - "addr": "0x3ffbb864", + "addr": "0x3ffbb028", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -18908,16 +20586,16 @@ "id": 512, "in_irq": false, "size": 8, - "ts": 0.21191265 + "ts": 0.21262615 }, { - "addr": "0x3ffbb874", + "addr": "0x3ffbb064", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -18929,7 +20607,7 @@ "id": 512, "in_irq": false, "size": 16, - "ts": 0.21195125 + "ts": 0.212661725 }, { "core_id": 0, @@ -18939,10 +20617,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.21196815 + "ts": 0.2126787 }, { "core_id": 0, @@ -18952,10 +20630,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.21198415 + "ts": 0.212694675 }, { "core_id": 0, @@ -18963,8 +20641,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (520) example: Task[0x3ffb7aec]: allocated 16 bytes @ 0x3ffbb874\n", - "ts": 0.212054475 + "msg": "I (508) example: Task[0x3ffb72b4]: allocated 16 bytes @ 0x3ffbb064\n", + "ts": 0.2127537 }, { "core_id": 0, @@ -18972,8 +20650,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (520) example: Task[0x3ffb7aec]: allocated 16 bytes @ 0x3ffbb874\n", - "ts": 0.212054475 + "msg": "I (508) example: Task[0x3ffb72b4]: allocated 16 bytes @ 0x3ffbb064\n", + "ts": 0.2127537 }, { "core_id": 0, @@ -18983,10 +20661,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12287056, + "xQueue": 12284952, "xTicksToWait": 0 }, - "ts": 0.212068075 + "ts": 0.212767175 }, { "core_id": 0, @@ -18994,9 +20672,19 @@ "id": 6, "in_irq": false, "params": { - "tid": 12289748 + "tid": 12287644 }, - "ts": 0.2120813 + "ts": 0.21278035 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12287644 + }, + "ts": 0.21278035 }, { "core_id": 1, @@ -19006,7 +20694,7 @@ "params": { "irq_num": 31 }, - "ts": 0.212097675 + "ts": 0.21279655 }, { "core_id": 0, @@ -19016,7 +20704,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.212108525 + "ts": 0.2128075 }, { "core_id": 1, @@ -19024,7 +20712,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2121193 + "ts": 0.212818275 }, { "core_id": 0, @@ -19034,7 +20722,7 @@ "params": { "irq_num": 30 }, - "ts": 0.212133125 + "ts": 0.212832325 }, { "core_id": 1, @@ -19042,9 +20730,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12289748 + "tid": 12287644 }, - "ts": 0.212144025 + "ts": 0.212844475 }, { "core_id": 0, @@ -19052,7 +20740,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.21215485 + "ts": 0.212855425 }, { "core_id": 1, @@ -19062,10 +20750,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12287056, + "xQueue": 12284952, "xTicksToWait": 4294967295 }, - "ts": 0.2121668 + "ts": 0.212867375 }, { "core_id": 0, @@ -19073,7 +20761,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.21217705 + "ts": 0.212877575 }, { "core_id": 1, @@ -19083,10 +20771,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.212188475 + "ts": 0.2128893 }, { "core_id": 1, @@ -19096,10 +20784,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.21220885 + "ts": 0.21290565 }, { "core_id": 1, @@ -19107,8 +20795,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (520) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb874\n", - "ts": 0.2122724 + "msg": "I (508) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbb064\n", + "ts": 0.212953525 }, { "core_id": 1, @@ -19116,15 +20804,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (520) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb874\n", - "ts": 0.2122724 + "msg": "I (508) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbb064\n", + "ts": 0.212953525 }, { - "addr": "0x3ffbb874", + "addr": "0x3ffbb064", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", + "0x4008da24", + "0x400d3c72", + "0x400880dc", "0x0", "0x0", "0x0", @@ -19138,7 +20826,7 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 0.2122936 + "ts": 0.212974725 }, { "core_id": 1, @@ -19148,7 +20836,7 @@ "params": { "irq_num": 31 }, - "ts": 0.212320475 + "ts": 0.2130062 }, { "core_id": 1, @@ -19156,7 +20844,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2123319 + "ts": 0.21301765 }, { "core_id": 1, @@ -19164,7 +20852,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.212348475 + "ts": 0.21303435 }, { "core_id": 1, @@ -19174,7 +20862,7 @@ "params": { "irq_num": 5 }, - "ts": 0.212666425 + "ts": 0.2134482 }, { "core_id": 1, @@ -19182,7 +20870,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.21267985 + "ts": 0.213461725 }, { "core_id": 1, @@ -19190,7 +20878,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.21269555 + "ts": 0.2134773 }, { "core_id": 0, @@ -19200,7 +20888,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2128338 + "ts": 0.21354665 }, { "core_id": 0, @@ -19208,9 +20896,39 @@ "id": 6, "in_irq": true, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.2128488 + "ts": 0.213561625 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12290612 + }, + "ts": 0.213561625 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12296612 + }, + "ts": 0.2135735 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12296612 + }, + "ts": 0.2135735 }, { "core_id": 0, @@ -19218,7 +20936,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.212861575 + "ts": 0.213585975 }, { "core_id": 0, @@ -19226,18 +20944,18 @@ "id": 4, "in_irq": false, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.212877375 + "ts": 0.213601625 }, { - "addr": "0x3ffbb874", + "addr": "0x3ffbb064", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -19249,16 +20967,16 @@ "id": 512, "in_irq": false, "size": 16, - "ts": 0.212912775 + "ts": 0.213638 }, { - "addr": "0x3ffbb888", + "addr": "0x3ffbb078", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -19270,7 +20988,7 @@ "id": 512, "in_irq": false, "size": 32, - "ts": 0.212947475 + "ts": 0.213673625 }, { "core_id": 0, @@ -19280,10 +20998,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.2129644 + "ts": 0.2136907 }, { "core_id": 0, @@ -19293,10 +21011,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.212984575 + "ts": 0.213706725 }, { "core_id": 0, @@ -19304,8 +21022,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (521) example: Task[0x3ffb926c]: allocated 32 bytes @ 0x3ffbb888\n", - "ts": 0.213055025 + "msg": "I (509) example: Task[0x3ffb8a34]: allocated 32 bytes @ 0x3ffbb078\n", + "ts": 0.213761525 }, { "core_id": 0, @@ -19313,8 +21031,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (521) example: Task[0x3ffb926c]: allocated 32 bytes @ 0x3ffbb888\n", - "ts": 0.213055025 + "msg": "I (509) example: Task[0x3ffb8a34]: allocated 32 bytes @ 0x3ffbb078\n", + "ts": 0.213761525 }, { "core_id": 0, @@ -19324,10 +21042,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12293072, + "xQueue": 12290968, "xTicksToWait": 0 }, - "ts": 0.21306865 + "ts": 0.2137783 }, { "core_id": 0, @@ -19335,9 +21053,19 @@ "id": 6, "in_irq": false, "params": { - "tid": 12295764 + "tid": 12293660 }, - "ts": 0.21308185 + "ts": 0.21379155 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12293660 + }, + "ts": 0.21379155 }, { "core_id": 1, @@ -19347,7 +21075,7 @@ "params": { "irq_num": 31 }, - "ts": 0.21309815 + "ts": 0.2138079 }, { "core_id": 0, @@ -19357,7 +21085,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.213109 + "ts": 0.21381875 }, { "core_id": 1, @@ -19365,7 +21093,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.21311975 + "ts": 0.213829575 }, { "core_id": 0, @@ -19375,7 +21103,7 @@ "params": { "irq_num": 30 }, - "ts": 0.213133475 + "ts": 0.213843375 }, { "core_id": 1, @@ -19383,9 +21111,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12295764 + "tid": 12293660 }, - "ts": 0.213144325 + "ts": 0.2138553 }, { "core_id": 0, @@ -19393,7 +21121,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.21315515 + "ts": 0.213866475 }, { "core_id": 1, @@ -19403,18 +21131,20 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12293072, + "xQueue": 12290968, "xTicksToWait": 4294967295 }, - "ts": 0.213167025 + "ts": 0.2138784 }, { "core_id": 0, - "ctx_name": "alloc1", - "id": 17, + "ctx_name": "alloc2", + "id": 4, "in_irq": false, - "params": {}, - "ts": 0.213177275 + "params": { + "tid": 12296612 + }, + "ts": 0.21389005 }, { "core_id": 1, @@ -19424,10 +21154,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.21318875 + "ts": 0.213901775 }, { "core_id": 1, @@ -19437,148 +21167,19 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.21320505 + "ts": 0.21392035 }, { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (521) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb888\n", - "ts": 0.2132685 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (521) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb888\n", - "ts": 0.2132685 - }, - { - "addr": "0x3ffbb888", + "addr": "0x3ffbb09c", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0" - ], - "core_id": 1, - "ctx_name": "free1", - "id": 513, - "in_irq": false, - "size": 0, - "ts": 0.21329355 - }, - { - "core_id": 1, - "ctx_name": "FROM_CPU1", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 31 - }, - "ts": 0.21332055 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.213331975 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.21334855 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.213666425 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.21367985 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.21369555 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2138338 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12298716 - }, - "ts": 0.2138488 - }, - { - "core_id": 0, - "ctx_name": "alloc1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.213861575 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12298716 - }, - "ts": 0.21387725 - }, - { - "addr": "0x3ffbb888", - "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -19590,16 +21191,34 @@ "id": 512, "in_irq": false, "size": 24, - "ts": 0.21391265 + "ts": 0.213933475 }, { - "addr": "0x3ffbb8a4", + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (509) example: Task[0x3ffb961c]: free memory @ 0x3ffbb078\n", + "ts": 0.21397405 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (509) example: Task[0x3ffb961c]: free memory @ 0x3ffbb078\n", + "ts": 0.21397405 + }, + { + "addr": "0x3ffbb0b8", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -19611,7 +21230,28 @@ "id": 512, "in_irq": false, "size": 48, - "ts": 0.2139472 + "ts": 0.213990025 + }, + { + "addr": "0x3ffbb078", + "callers": [ + "0x4008da24", + "0x400d3c72", + "0x400880dc", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ], + "core_id": 1, + "ctx_name": "free1", + "id": 513, + "in_irq": false, + "size": 0, + "ts": 0.214004375 }, { "core_id": 0, @@ -19621,64 +21261,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.21396435 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12283904, - "xTicksToWait": 0 - }, - "ts": 0.21398035 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (522) example: Task[0x3ffba9dc]: allocated 48 bytes @ 0x3ffbb8a4\n", - "ts": 0.214050675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 26, - "in_irq": false, - "lvl": 0, - "msg": "I (522) example: Task[0x3ffba9dc]: allocated 48 bytes @ 0x3ffbb8a4\n", - "ts": 0.214050675 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 53, - "in_irq": false, - "params": { - "pvItemToQueue": 0, - "xCopyPosition": 0, - "xQueue": 12299072, - "xTicksToWait": 0 - }, - "ts": 0.214071175 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 6, - "in_irq": false, - "params": { - "tid": 12301764 - }, - "ts": 0.2140844 + "ts": 0.214016825 }, { "core_id": 1, @@ -19688,7 +21274,197 @@ "params": { "irq_num": 31 }, - "ts": 0.214100725 + "ts": 0.214035975 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12281672, + "xTicksToWait": 0 + }, + "ts": 0.214047225 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.214058075 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.21407635 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (509) example: Task[0x3ffba1a4]: allocated 48 bytes @ 0x3ffbb0b8\n", + "ts": 0.2141042 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 26, + "in_irq": false, + "lvl": 0, + "msg": "I (509) example: Task[0x3ffba1a4]: allocated 48 bytes @ 0x3ffbb0b8\n", + "ts": 0.2141042 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 53, + "in_irq": false, + "params": { + "pvItemToQueue": 0, + "xCopyPosition": 0, + "xQueue": 12296968, + "xTicksToWait": 0 + }, + "ts": 0.21411765 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.215663675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12299660 + }, + "ts": 0.215675325 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12299660 + }, + "ts": 0.215675325 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.215693125 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.21570425 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.215715175 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.215726825 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.215737325 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.215748175 + }, + { + "core_id": 1, + "ctx_name": "FROM_CPU1", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 31 + }, + "ts": 0.215759125 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.21577085 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.215781625 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12296612 + }, + "ts": 0.215793125 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 4, + "in_irq": false, + "params": { + "tid": 12299660 + }, + "ts": 0.215810975 }, { "core_id": 0, @@ -19698,43 +21474,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.214111575 - }, - { - "core_id": 1, - "ctx_name": "free1", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.214122325 - }, - { - "core_id": 0, - "ctx_name": "FROM_CPU0", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 30 - }, - "ts": 0.21413605 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 4, - "in_irq": false, - "params": { - "tid": 12301764 - }, - "ts": 0.21414695 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.214157775 + "ts": 0.2158248 }, { "core_id": 1, @@ -19744,18 +21484,20 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12299072, + "xQueue": 12296968, "xTicksToWait": 4294967295 }, - "ts": 0.214169625 + "ts": 0.215837075 }, { "core_id": 0, - "ctx_name": "alloc2", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.214180925 + "ctx_name": "FROM_CPU0", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 30 + }, + "ts": 0.215848525 }, { "core_id": 1, @@ -19765,10 +21507,18 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.21419255 + "ts": 0.2158606 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.21587165 }, { "core_id": 1, @@ -19778,10 +21528,18 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.21420895 + "ts": 0.215883675 + }, + { + "core_id": 0, + "ctx_name": "alloc2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.215894125 }, { "core_id": 1, @@ -19789,8 +21547,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (522) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb8a4\n", - "ts": 0.2142725 + "msg": "I (511) example: Task[0x3ffbad8c]: free memory @ 0x3ffbb0b8\n", + "ts": 0.215944175 }, { "core_id": 1, @@ -19798,15 +21556,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (522) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb8a4\n", - "ts": 0.2142725 + "msg": "I (511) example: Task[0x3ffbad8c]: free memory @ 0x3ffbb0b8\n", + "ts": 0.215944175 }, { - "addr": "0x3ffbb8a4", + "addr": "0x3ffbb0b8", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", + "0x4008da24", + "0x400d3c72", + "0x400880dc", "0x0", "0x0", "0x0", @@ -19820,7 +21578,7 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 0.2142937 + "ts": 0.21596555 }, { "core_id": 1, @@ -19830,7 +21588,7 @@ "params": { "irq_num": 31 }, - "ts": 0.214324025 + "ts": 0.215992975 }, { "core_id": 1, @@ -19838,7 +21596,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2143355 + "ts": 0.216004375 }, { "core_id": 1, @@ -19846,7 +21604,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.2143522 + "ts": 0.21602095 }, { "core_id": 1, @@ -19856,7 +21614,7 @@ "params": { "irq_num": 5 }, - "ts": 0.214666425 + "ts": 0.2164482 }, { "core_id": 1, @@ -19864,7 +21622,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.214679875 + "ts": 0.216461725 }, { "core_id": 1, @@ -19872,7 +21630,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.21469545 + "ts": 0.2164773 }, { "core_id": 0, @@ -19882,7 +21640,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2148338 + "ts": 0.21654665 }, { "core_id": 0, @@ -19890,7 +21648,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2148492 + "ts": 0.21656205 }, { "core_id": 0, @@ -19898,7 +21656,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.214864425 + "ts": 0.216577275 }, { "core_id": 1, @@ -19908,7 +21666,7 @@ "params": { "irq_num": 5 }, - "ts": 0.215666425 + "ts": 0.2174482 }, { "core_id": 1, @@ -19916,7 +21674,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.21567995 + "ts": 0.217461725 }, { "core_id": 1, @@ -19924,7 +21682,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.2156951 + "ts": 0.217476975 }, { "core_id": 0, @@ -19934,7 +21692,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2158338 + "ts": 0.21754665 }, { "core_id": 0, @@ -19942,7 +21700,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.215849175 + "ts": 0.217562025 }, { "core_id": 0, @@ -19950,7 +21708,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.21586425 + "ts": 0.217577225 }, { "core_id": 1, @@ -19960,7 +21718,7 @@ "params": { "irq_num": 5 }, - "ts": 0.216666425 + "ts": 0.2184482 }, { "core_id": 1, @@ -19968,7 +21726,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.216680075 + "ts": 0.218461775 }, { "core_id": 1, @@ -19976,7 +21734,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.21669535 + "ts": 0.2184769 }, { "core_id": 0, @@ -19986,7 +21744,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2168338 + "ts": 0.21854665 }, { "core_id": 0, @@ -19994,7 +21752,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.216849175 + "ts": 0.218562 }, { "core_id": 0, @@ -20002,7 +21760,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.21686425 + "ts": 0.218577075 }, { "core_id": 1, @@ -20012,7 +21770,7 @@ "params": { "irq_num": 5 }, - "ts": 0.217666425 + "ts": 0.2194482 }, { "core_id": 1, @@ -20020,7 +21778,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.21768 + "ts": 0.219461725 }, { "core_id": 1, @@ -20028,7 +21786,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.217695125 + "ts": 0.21947685 }, { "core_id": 0, @@ -20038,7 +21796,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2178338 + "ts": 0.21954665 }, { "core_id": 0, @@ -20046,7 +21804,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.217849175 + "ts": 0.21956205 }, { "core_id": 0, @@ -20054,7 +21812,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.21786425 + "ts": 0.219577275 }, { "core_id": 1, @@ -20064,7 +21822,7 @@ "params": { "irq_num": 5 }, - "ts": 0.218666425 + "ts": 0.2204482 }, { "core_id": 1, @@ -20072,7 +21830,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.218680075 + "ts": 0.220461725 }, { "core_id": 1, @@ -20080,7 +21838,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.218695225 + "ts": 0.22047685 }, { "core_id": 0, @@ -20090,7 +21848,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2188338 + "ts": 0.22054665 }, { "core_id": 0, @@ -20098,7 +21856,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2188492 + "ts": 0.220562 }, { "core_id": 0, @@ -20106,7 +21864,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.218864425 + "ts": 0.220577075 }, { "core_id": 1, @@ -20116,7 +21874,7 @@ "params": { "irq_num": 5 }, - "ts": 0.219666425 + "ts": 0.2214482 }, { "core_id": 1, @@ -20124,7 +21882,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.21967995 + "ts": 0.221461725 }, { "core_id": 1, @@ -20132,7 +21890,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.2196951 + "ts": 0.221476975 }, { "core_id": 0, @@ -20142,7 +21900,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2198338 + "ts": 0.22154665 }, { "core_id": 0, @@ -20150,7 +21908,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.219849175 + "ts": 0.221562025 }, { "core_id": 0, @@ -20158,7 +21916,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.21986425 + "ts": 0.221577225 }, { "core_id": 1, @@ -20168,7 +21926,7 @@ "params": { "irq_num": 5 }, - "ts": 0.220666425 + "ts": 0.2224482 }, { "core_id": 1, @@ -20176,7 +21934,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.220680075 + "ts": 0.222461775 }, { "core_id": 1, @@ -20184,7 +21942,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.22069535 + "ts": 0.2224769 }, { "core_id": 0, @@ -20194,7 +21952,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2208338 + "ts": 0.22254665 }, { "core_id": 0, @@ -20202,7 +21960,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.220849175 + "ts": 0.222562 }, { "core_id": 0, @@ -20210,7 +21968,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.22086425 + "ts": 0.222577075 }, { "core_id": 1, @@ -20220,7 +21978,7 @@ "params": { "irq_num": 5 }, - "ts": 0.221666425 + "ts": 0.2234482 }, { "core_id": 1, @@ -20228,7 +21986,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.22168 + "ts": 0.223461725 }, { "core_id": 1, @@ -20236,7 +21994,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.221695125 + "ts": 0.22347685 }, { "core_id": 0, @@ -20246,7 +22004,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2218338 + "ts": 0.22354665 }, { "core_id": 0, @@ -20254,7 +22012,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.221849175 + "ts": 0.22356205 }, { "core_id": 0, @@ -20262,7 +22020,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.22186425 + "ts": 0.223577275 }, { "core_id": 1, @@ -20272,7 +22030,7 @@ "params": { "irq_num": 5 }, - "ts": 0.222666425 + "ts": 0.2244482 }, { "core_id": 1, @@ -20280,7 +22038,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.222680075 + "ts": 0.224461725 }, { "core_id": 1, @@ -20288,7 +22046,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.222695225 + "ts": 0.22447685 }, { "core_id": 0, @@ -20298,7 +22056,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2228338 + "ts": 0.22454665 }, { "core_id": 0, @@ -20306,7 +22064,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2228492 + "ts": 0.224562 }, { "core_id": 0, @@ -20314,7 +22072,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.222864425 + "ts": 0.224577075 }, { "core_id": 1, @@ -20324,7 +22082,7 @@ "params": { "irq_num": 5 }, - "ts": 0.223666425 + "ts": 0.2254482 }, { "core_id": 1, @@ -20332,7 +22090,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.22367995 + "ts": 0.225461725 }, { "core_id": 1, @@ -20340,7 +22098,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.2236951 + "ts": 0.225476975 }, { "core_id": 0, @@ -20350,7 +22108,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2238338 + "ts": 0.22554665 }, { "core_id": 0, @@ -20358,7 +22116,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.223849175 + "ts": 0.225562025 }, { "core_id": 0, @@ -20366,7 +22124,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.22386425 + "ts": 0.225577225 }, { "core_id": 1, @@ -20376,7 +22134,7 @@ "params": { "irq_num": 5 }, - "ts": 0.224666425 + "ts": 0.2264482 }, { "core_id": 1, @@ -20384,7 +22142,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2246842 + "ts": 0.226461775 }, { "core_id": 1, @@ -20392,7 +22150,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.22469935 + "ts": 0.2264769 }, { "core_id": 0, @@ -20402,7 +22160,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2248338 + "ts": 0.22654665 }, { "core_id": 0, @@ -20410,7 +22168,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.224849175 + "ts": 0.226562 }, { "core_id": 0, @@ -20418,7 +22176,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.22486425 + "ts": 0.226577075 }, { "core_id": 1, @@ -20428,7 +22186,7 @@ "params": { "irq_num": 5 }, - "ts": 0.225666425 + "ts": 0.2274482 }, { "core_id": 1, @@ -20436,7 +22194,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.225680075 + "ts": 0.227461725 }, { "core_id": 1, @@ -20444,7 +22202,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.225695225 + "ts": 0.22747685 }, { "core_id": 0, @@ -20454,7 +22212,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2258338 + "ts": 0.22754665 }, { "core_id": 0, @@ -20462,7 +22220,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2258492 + "ts": 0.22756205 }, { "core_id": 0, @@ -20470,7 +22228,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.225864425 + "ts": 0.227577275 }, { "core_id": 1, @@ -20480,7 +22238,7 @@ "params": { "irq_num": 5 }, - "ts": 0.226666425 + "ts": 0.2284482 }, { "core_id": 1, @@ -20488,7 +22246,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.22667995 + "ts": 0.228461725 }, { "core_id": 1, @@ -20496,7 +22254,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.2266951 + "ts": 0.22847685 }, { "core_id": 0, @@ -20506,7 +22264,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2268338 + "ts": 0.22854665 }, { "core_id": 0, @@ -20514,7 +22272,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.226849175 + "ts": 0.228562 }, { "core_id": 0, @@ -20522,7 +22280,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.22686425 + "ts": 0.228577075 }, { "core_id": 1, @@ -20532,7 +22290,7 @@ "params": { "irq_num": 5 }, - "ts": 0.227666425 + "ts": 0.2294482 }, { "core_id": 1, @@ -20540,7 +22298,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.227680075 + "ts": 0.229466 }, { "core_id": 1, @@ -20548,7 +22306,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.22769535 + "ts": 0.229481125 }, { "core_id": 0, @@ -20558,7 +22316,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2278338 + "ts": 0.22954665 }, { "core_id": 0, @@ -20566,7 +22324,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.227849175 + "ts": 0.229562 }, { "core_id": 0, @@ -20574,7 +22332,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.22786425 + "ts": 0.229577075 }, { "core_id": 1, @@ -20584,7 +22342,7 @@ "params": { "irq_num": 5 }, - "ts": 0.228666425 + "ts": 0.2304482 }, { "core_id": 1, @@ -20592,7 +22350,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.22868 + "ts": 0.230461725 }, { "core_id": 1, @@ -20600,7 +22358,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.228695125 + "ts": 0.23047685 }, { "core_id": 0, @@ -20610,7 +22368,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2288338 + "ts": 0.23054665 }, { "core_id": 0, @@ -20618,7 +22376,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.228849175 + "ts": 0.23056205 }, { "core_id": 0, @@ -20626,7 +22384,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.22886425 + "ts": 0.230577275 }, { "core_id": 1, @@ -20636,7 +22394,7 @@ "params": { "irq_num": 5 }, - "ts": 0.229666425 + "ts": 0.2314482 }, { "core_id": 1, @@ -20644,7 +22402,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.229680075 + "ts": 0.231461725 }, { "core_id": 1, @@ -20652,7 +22410,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.229695225 + "ts": 0.23147685 }, { "core_id": 0, @@ -20662,7 +22420,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2298338 + "ts": 0.23154665 }, { "core_id": 0, @@ -20670,7 +22428,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2298492 + "ts": 0.231562 }, { "core_id": 0, @@ -20678,7 +22436,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.229864425 + "ts": 0.231577075 }, { "core_id": 1, @@ -20688,7 +22446,7 @@ "params": { "irq_num": 5 }, - "ts": 0.230666425 + "ts": 0.2324482 }, { "core_id": 1, @@ -20696,7 +22454,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.23067995 + "ts": 0.232461725 }, { "core_id": 1, @@ -20704,7 +22462,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.2306951 + "ts": 0.232476975 }, { "core_id": 0, @@ -20714,7 +22472,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2308338 + "ts": 0.23254665 }, { "core_id": 0, @@ -20722,7 +22480,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.230849175 + "ts": 0.232562025 }, { "core_id": 0, @@ -20730,7 +22488,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.23086425 + "ts": 0.232577225 }, { "core_id": 1, @@ -20740,7 +22498,7 @@ "params": { "irq_num": 5 }, - "ts": 0.231666425 + "ts": 0.2334482 }, { "core_id": 1, @@ -20748,7 +22506,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.231680075 + "ts": 0.233461775 }, { "core_id": 1, @@ -20756,7 +22514,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.23169535 + "ts": 0.2334769 }, { "core_id": 0, @@ -20766,7 +22524,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2318338 + "ts": 0.23354665 }, { "core_id": 0, @@ -20774,7 +22532,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.231849175 + "ts": 0.233562 }, { "core_id": 0, @@ -20782,7 +22540,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.23186425 + "ts": 0.233577075 }, { "core_id": 1, @@ -20792,7 +22550,7 @@ "params": { "irq_num": 5 }, - "ts": 0.232666425 + "ts": 0.2344482 }, { "core_id": 1, @@ -20800,7 +22558,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.23268 + "ts": 0.234461725 }, { "core_id": 1, @@ -20808,7 +22566,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.232695125 + "ts": 0.23447685 }, { "core_id": 0, @@ -20818,7 +22576,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2328338 + "ts": 0.23454665 }, { "core_id": 0, @@ -20826,7 +22584,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.232849175 + "ts": 0.23456205 }, { "core_id": 0, @@ -20834,7 +22592,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.23286425 + "ts": 0.234577275 }, { "core_id": 1, @@ -20844,7 +22602,7 @@ "params": { "irq_num": 5 }, - "ts": 0.233666425 + "ts": 0.2354482 }, { "core_id": 1, @@ -20852,7 +22610,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.233680075 + "ts": 0.235461725 }, { "core_id": 1, @@ -20860,7 +22618,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.233695225 + "ts": 0.23547685 }, { "core_id": 0, @@ -20870,7 +22628,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2338338 + "ts": 0.23554665 }, { "core_id": 0, @@ -20878,7 +22636,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2338492 + "ts": 0.235562 }, { "core_id": 0, @@ -20886,7 +22644,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.233864425 + "ts": 0.235577075 }, { "core_id": 1, @@ -20896,7 +22654,7 @@ "params": { "irq_num": 5 }, - "ts": 0.234666425 + "ts": 0.2364482 }, { "core_id": 1, @@ -20904,7 +22662,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.23467995 + "ts": 0.236461725 }, { "core_id": 1, @@ -20912,7 +22670,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.2346951 + "ts": 0.236476975 }, { "core_id": 0, @@ -20922,7 +22680,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2348338 + "ts": 0.23654665 }, { "core_id": 0, @@ -20930,7 +22688,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.234849175 + "ts": 0.236562025 }, { "core_id": 0, @@ -20938,7 +22696,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.23486425 + "ts": 0.236577225 }, { "core_id": 1, @@ -20948,7 +22706,7 @@ "params": { "irq_num": 5 }, - "ts": 0.235666425 + "ts": 0.2374482 }, { "core_id": 1, @@ -20956,7 +22714,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.235680075 + "ts": 0.237461775 }, { "core_id": 1, @@ -20964,7 +22722,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.23569535 + "ts": 0.2374769 }, { "core_id": 0, @@ -20974,7 +22732,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2358338 + "ts": 0.23754665 }, { "core_id": 0, @@ -20982,7 +22740,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.235849175 + "ts": 0.237562 }, { "core_id": 0, @@ -20990,7 +22748,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.23586425 + "ts": 0.237577075 }, { "core_id": 1, @@ -21000,7 +22758,7 @@ "params": { "irq_num": 5 }, - "ts": 0.236666425 + "ts": 0.2384482 }, { "core_id": 1, @@ -21008,7 +22766,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.23668355 + "ts": 0.238461725 }, { "core_id": 1, @@ -21016,7 +22774,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.236698675 + "ts": 0.23847685 }, { "core_id": 0, @@ -21026,7 +22784,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2368338 + "ts": 0.23854665 }, { "core_id": 0, @@ -21034,7 +22792,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.236849175 + "ts": 0.23856205 }, { "core_id": 0, @@ -21042,7 +22800,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.23686425 + "ts": 0.238577275 }, { "core_id": 1, @@ -21052,7 +22810,7 @@ "params": { "irq_num": 5 }, - "ts": 0.237666425 + "ts": 0.2394482 }, { "core_id": 1, @@ -21060,7 +22818,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.237680075 + "ts": 0.239461725 }, { "core_id": 1, @@ -21068,7 +22826,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.237695225 + "ts": 0.23947685 }, { "core_id": 0, @@ -21078,7 +22836,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2378338 + "ts": 0.23954665 }, { "core_id": 0, @@ -21086,7 +22844,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2378492 + "ts": 0.239562 }, { "core_id": 0, @@ -21094,7 +22852,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.237864425 + "ts": 0.239577075 }, { "core_id": 1, @@ -21104,7 +22862,7 @@ "params": { "irq_num": 5 }, - "ts": 0.238666425 + "ts": 0.2404482 }, { "core_id": 1, @@ -21112,7 +22870,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.23867995 + "ts": 0.240461725 }, { "core_id": 1, @@ -21120,7 +22878,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.2386951 + "ts": 0.240476975 }, { "core_id": 0, @@ -21130,7 +22888,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2388338 + "ts": 0.24054665 }, { "core_id": 0, @@ -21138,7 +22896,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.238849175 + "ts": 0.240562025 }, { "core_id": 0, @@ -21146,7 +22904,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.23886425 + "ts": 0.240577225 }, { "core_id": 1, @@ -21156,7 +22914,7 @@ "params": { "irq_num": 5 }, - "ts": 0.239666425 + "ts": 0.2414482 }, { "core_id": 1, @@ -21164,7 +22922,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.239680075 + "ts": 0.2414653 }, { "core_id": 1, @@ -21172,7 +22930,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.23969535 + "ts": 0.24148045 }, { "core_id": 0, @@ -21182,7 +22940,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2398338 + "ts": 0.24154665 }, { "core_id": 0, @@ -21190,7 +22948,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.239849175 + "ts": 0.241562 }, { "core_id": 0, @@ -21198,7 +22956,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.23986425 + "ts": 0.241577075 }, { "core_id": 1, @@ -21208,7 +22966,7 @@ "params": { "irq_num": 5 }, - "ts": 0.240666425 + "ts": 0.2424482 }, { "core_id": 1, @@ -21216,7 +22974,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.24068 + "ts": 0.242461725 }, { "core_id": 1, @@ -21224,7 +22982,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.240695125 + "ts": 0.24247685 }, { "core_id": 0, @@ -21234,59 +22992,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2408338 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.240849175 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.24086425 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.241666425 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.241680075 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.241695225 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2418338 + "ts": 0.24254665 }, { "core_id": 0, @@ -21294,9 +23000,19 @@ "id": 6, "in_irq": true, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.241848825 + "ts": 0.242561675 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12284596 + }, + "ts": 0.242561675 }, { "core_id": 0, @@ -21304,7 +23020,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.241861575 + "ts": 0.242574275 }, { "core_id": 0, @@ -21312,18 +23028,18 @@ "id": 4, "in_irq": false, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.24187725 + "ts": 0.242589925 }, { - "addr": "0x3ffbb8a4", + "addr": "0x3ffbb038", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -21335,16 +23051,16 @@ "id": 512, "in_irq": false, "size": 9, - "ts": 0.241912575 + "ts": 0.2426249 }, { - "addr": "0x3ffbb8b4", + "addr": "0x3ffbb078", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -21356,7 +23072,7 @@ "id": 512, "in_irq": false, "size": 18, - "ts": 0.241947 + "ts": 0.24265915 }, { "core_id": 0, @@ -21366,10 +23082,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.241964025 + "ts": 0.2426762 }, { "core_id": 0, @@ -21379,10 +23095,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.241980025 + "ts": 0.242692225 }, { "core_id": 0, @@ -21390,8 +23106,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (550) example: Task[0x3ffb7aec]: allocated 18 bytes @ 0x3ffbb8b4\n", - "ts": 0.24205045 + "msg": "I (538) example: Task[0x3ffb72b4]: allocated 18 bytes @ 0x3ffbb078\n", + "ts": 0.24274705 }, { "core_id": 0, @@ -21399,8 +23115,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (550) example: Task[0x3ffb7aec]: allocated 18 bytes @ 0x3ffbb8b4\n", - "ts": 0.24205045 + "msg": "I (538) example: Task[0x3ffb72b4]: allocated 18 bytes @ 0x3ffbb078\n", + "ts": 0.24274705 }, { "core_id": 0, @@ -21410,10 +23126,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12287056, + "xQueue": 12284952, "xTicksToWait": 0 }, - "ts": 0.242068275 + "ts": 0.242760425 }, { "core_id": 0, @@ -21421,9 +23137,19 @@ "id": 6, "in_irq": false, "params": { - "tid": 12289748 + "tid": 12287644 }, - "ts": 0.2420815 + "ts": 0.242773825 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12287644 + }, + "ts": 0.242773825 }, { "core_id": 1, @@ -21433,7 +23159,7 @@ "params": { "irq_num": 31 }, - "ts": 0.242097725 + "ts": 0.24279 }, { "core_id": 0, @@ -21443,7 +23169,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.2421086 + "ts": 0.2428059 }, { "core_id": 1, @@ -21451,7 +23177,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.24211935 + "ts": 0.2428166 }, { "core_id": 0, @@ -21461,7 +23187,7 @@ "params": { "irq_num": 30 }, - "ts": 0.2421332 + "ts": 0.242830325 }, { "core_id": 1, @@ -21469,9 +23195,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12289748 + "tid": 12287644 }, - "ts": 0.242144075 + "ts": 0.2428411 }, { "core_id": 0, @@ -21479,7 +23205,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2421549 + "ts": 0.24285185 }, { "core_id": 1, @@ -21489,10 +23215,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12287056, + "xQueue": 12284952, "xTicksToWait": 4294967295 }, - "ts": 0.242166875 + "ts": 0.2428641 }, { "core_id": 0, @@ -21500,7 +23226,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.242177125 + "ts": 0.24287535 }, { "core_id": 1, @@ -21510,10 +23236,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.242188525 + "ts": 0.2428926 }, { "core_id": 1, @@ -21523,10 +23249,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.2422049 + "ts": 0.24290885 }, { "core_id": 1, @@ -21534,8 +23260,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (550) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb8b4\n", - "ts": 0.24226845 + "msg": "I (538) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbb078\n", + "ts": 0.242956725 }, { "core_id": 1, @@ -21543,15 +23269,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (550) example: Task[0x3ffb86d4]: free memory @ 0x3ffbb8b4\n", - "ts": 0.24226845 + "msg": "I (538) example: Task[0x3ffb7e9c]: free memory @ 0x3ffbb078\n", + "ts": 0.242956725 }, { - "addr": "0x3ffbb8b4", + "addr": "0x3ffbb078", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", + "0x4008da24", + "0x400d3c72", + "0x400880dc", "0x0", "0x0", "0x0", @@ -21565,7 +23291,7 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 0.24228965 + "ts": 0.242978125 }, { "core_id": 1, @@ -21575,7 +23301,7 @@ "params": { "irq_num": 31 }, - "ts": 0.24232065 + "ts": 0.2430046 }, { "core_id": 1, @@ -21583,7 +23309,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.242332125 + "ts": 0.243016 }, { "core_id": 1, @@ -21591,7 +23317,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.242348825 + "ts": 0.243032575 }, { "core_id": 1, @@ -21601,7 +23327,7 @@ "params": { "irq_num": 5 }, - "ts": 0.242666425 + "ts": 0.2434482 }, { "core_id": 1, @@ -21609,7 +23335,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.242679875 + "ts": 0.243461725 }, { "core_id": 1, @@ -21617,7 +23343,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.24269545 + "ts": 0.243477425 }, { "core_id": 0, @@ -21627,7 +23353,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2428338 + "ts": 0.24354665 }, { "core_id": 0, @@ -21635,9 +23361,19 @@ "id": 6, "in_irq": true, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.242848825 + "ts": 0.243561625 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12290612 + }, + "ts": 0.243561625 }, { "core_id": 0, @@ -21645,7 +23381,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.242861575 + "ts": 0.243574225 }, { "core_id": 0, @@ -21653,18 +23389,18 @@ "id": 4, "in_irq": false, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.24287725 + "ts": 0.243589875 }, { - "addr": "0x3ffbb8b4", + "addr": "0x3ffbb078", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -21676,16 +23412,16 @@ "id": 512, "in_irq": false, "size": 18, - "ts": 0.242912575 + "ts": 0.24362505 }, { - "addr": "0x3ffbb8cc", + "addr": "0x3ffbb0b8", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -21697,7 +23433,7 @@ "id": 512, "in_irq": false, "size": 36, - "ts": 0.24294715 + "ts": 0.24366465 }, { "core_id": 0, @@ -21707,10 +23443,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.242964175 + "ts": 0.2436816 }, { "core_id": 0, @@ -21720,10 +23456,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.242980175 + "ts": 0.243697725 }, { "core_id": 0, @@ -21731,8 +23467,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (551) example: Task[0x3ffb926c]: allocated 36 bytes @ 0x3ffbb8cc\n", - "ts": 0.2430506 + "msg": "I (539) example: Task[0x3ffb8a34]: allocated 36 bytes @ 0x3ffbb0b8\n", + "ts": 0.24375245 }, { "core_id": 0, @@ -21740,8 +23476,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (551) example: Task[0x3ffb926c]: allocated 36 bytes @ 0x3ffbb8cc\n", - "ts": 0.2430506 + "msg": "I (539) example: Task[0x3ffb8a34]: allocated 36 bytes @ 0x3ffbb0b8\n", + "ts": 0.24375245 }, { "core_id": 0, @@ -21751,10 +23487,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12293072, + "xQueue": 12290968, "xTicksToWait": 0 }, - "ts": 0.24306415 + "ts": 0.2437659 }, { "core_id": 0, @@ -21762,9 +23498,19 @@ "id": 6, "in_irq": false, "params": { - "tid": 12295764 + "tid": 12293660 }, - "ts": 0.243080975 + "ts": 0.24377915 + }, + { + "core_id": 1, + "ctx_name": "free0", + "id": 6, + "in_irq": false, + "params": { + "tid": 12293660 + }, + "ts": 0.24377915 }, { "core_id": 1, @@ -21774,7 +23520,7 @@ "params": { "irq_num": 31 }, - "ts": 0.243097275 + "ts": 0.2437955 }, { "core_id": 0, @@ -21784,7 +23530,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.243108125 + "ts": 0.24380635 }, { "core_id": 1, @@ -21792,7 +23538,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.243118875 + "ts": 0.243817175 }, { "core_id": 0, @@ -21802,7 +23548,7 @@ "params": { "irq_num": 30 }, - "ts": 0.2431326 + "ts": 0.243830875 }, { "core_id": 1, @@ -21810,9 +23556,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12295764 + "tid": 12293660 }, - "ts": 0.24314345 + "ts": 0.24384175 }, { "core_id": 0, @@ -21820,7 +23566,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.243154275 + "ts": 0.243852625 }, { "core_id": 1, @@ -21830,10 +23576,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12293072, + "xQueue": 12290968, "xTicksToWait": 4294967295 }, - "ts": 0.24316615 + "ts": 0.243864575 }, { "core_id": 0, @@ -21841,7 +23587,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.2431764 + "ts": 0.2438758 }, { "core_id": 1, @@ -21851,10 +23597,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.243187875 + "ts": 0.2438876 }, { "core_id": 1, @@ -21864,10 +23610,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.243204375 + "ts": 0.243908225 }, { "core_id": 1, @@ -21875,8 +23621,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (551) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb8cc\n", - "ts": 0.243267825 + "msg": "I (539) example: Task[0x3ffb961c]: free memory @ 0x3ffbb0b8\n", + "ts": 0.2439561 }, { "core_id": 1, @@ -21884,15 +23630,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (551) example: Task[0x3ffb9e54]: free memory @ 0x3ffbb8cc\n", - "ts": 0.243267825 + "msg": "I (539) example: Task[0x3ffb961c]: free memory @ 0x3ffbb0b8\n", + "ts": 0.2439561 }, { - "addr": "0x3ffbb8cc", + "addr": "0x3ffbb0b8", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", + "0x4008da24", + "0x400d3c72", + "0x400880dc", "0x0", "0x0", "0x0", @@ -21906,7 +23652,7 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 0.243288975 + "ts": 0.243977525 }, { "core_id": 1, @@ -21916,7 +23662,7 @@ "params": { "irq_num": 31 }, - "ts": 0.243315975 + "ts": 0.244004825 }, { "core_id": 1, @@ -21924,7 +23670,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2433274 + "ts": 0.244016225 }, { "core_id": 1, @@ -21932,7 +23678,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.243343975 + "ts": 0.2440328 }, { "core_id": 1, @@ -21942,7 +23688,7 @@ "params": { "irq_num": 5 }, - "ts": 0.243666425 + "ts": 0.2444482 }, { "core_id": 1, @@ -21950,7 +23696,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.24367985 + "ts": 0.244461725 }, { "core_id": 1, @@ -21958,7 +23704,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.24369555 + "ts": 0.244477425 }, { "core_id": 0, @@ -21968,17 +23714,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2438338 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 6, - "in_irq": true, - "params": { - "tid": 12298716 - }, - "ts": 0.2438488 + "ts": 0.24454665 }, { "core_id": 0, @@ -21986,7 +23722,79 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.243861575 + "ts": 0.244562025 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.244577225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2454482 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.245461775 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.2454769 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.24554665 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 6, + "in_irq": true, + "params": { + "tid": 12296612 + }, + "ts": 0.245561625 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12296612 + }, + "ts": 0.245561625 + }, + { + "core_id": 0, + "ctx_name": "alloc1", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.245574275 }, { "core_id": 0, @@ -21994,18 +23802,18 @@ "id": 4, "in_irq": false, "params": { - "tid": 12298716 + "tid": 12296612 }, - "ts": 0.24387725 + "ts": 0.24558995 }, { - "addr": "0x3ffbb8cc", + "addr": "0x3ffbb0b8", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6af3", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bb4", + "0x400880dc", "0x0", "0x0", "0x0", @@ -22017,16 +23825,16 @@ "id": 512, "in_irq": false, "size": 27, - "ts": 0.24391265 + "ts": 0.245626225 }, { - "addr": "0x3ffbb8ec", + "addr": "0x3ffbb0d8", "callers": [ - "0x40081fef", - "0x40082024", - "0x4008e668", - "0x400d6afa", - "0x40088d94", + "0x40081eff", + "0x40081f34", + "0x4008da18", + "0x400d3bbb", + "0x400880dc", "0x0", "0x0", "0x0", @@ -22038,7 +23846,7 @@ "id": 512, "in_irq": false, "size": 54, - "ts": 0.243951325 + "ts": 0.245661825 }, { "core_id": 0, @@ -22048,10 +23856,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.24396835 + "ts": 0.24568225 }, { "core_id": 0, @@ -22061,10 +23869,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.24398435 + "ts": 0.245698175 }, { "core_id": 0, @@ -22072,8 +23880,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (552) example: Task[0x3ffba9dc]: allocated 54 bytes @ 0x3ffbb8ec\n", - "ts": 0.244054675 + "msg": "I (541) example: Task[0x3ffba1a4]: allocated 54 bytes @ 0x3ffbb0d8\n", + "ts": 0.24575295 }, { "core_id": 0, @@ -22081,8 +23889,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (552) example: Task[0x3ffba9dc]: allocated 54 bytes @ 0x3ffbb8ec\n", - "ts": 0.244054675 + "msg": "I (541) example: Task[0x3ffba1a4]: allocated 54 bytes @ 0x3ffbb0d8\n", + "ts": 0.24575295 }, { "core_id": 0, @@ -22092,10 +23900,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12299072, + "xQueue": 12296968, "xTicksToWait": 0 }, - "ts": 0.2440684 + "ts": 0.24576645 }, { "core_id": 0, @@ -22103,9 +23911,19 @@ "id": 6, "in_irq": false, "params": { - "tid": 12301764 + "tid": 12299660 }, - "ts": 0.244081625 + "ts": 0.2457796 + }, + { + "core_id": 1, + "ctx_name": "free1", + "id": 6, + "in_irq": false, + "params": { + "tid": 12299660 + }, + "ts": 0.2457796 }, { "core_id": 1, @@ -22115,7 +23933,7 @@ "params": { "irq_num": 31 }, - "ts": 0.24409795 + "ts": 0.245795925 }, { "core_id": 0, @@ -22125,7 +23943,7 @@ "params": { "xTicksToDelay": 30 }, - "ts": 0.2441088 + "ts": 0.245806775 }, { "core_id": 1, @@ -22133,7 +23951,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.24411955 + "ts": 0.245817575 }, { "core_id": 0, @@ -22143,7 +23961,7 @@ "params": { "irq_num": 30 }, - "ts": 0.244133275 + "ts": 0.245831475 }, { "core_id": 1, @@ -22151,9 +23969,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12301764 + "tid": 12299660 }, - "ts": 0.244144175 + "ts": 0.245842275 }, { "core_id": 0, @@ -22161,7 +23979,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.244155 + "ts": 0.245853025 }, { "core_id": 1, @@ -22171,10 +23989,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 1, - "xQueue": 12299072, + "xQueue": 12296968, "xTicksToWait": 4294967295 }, - "ts": 0.24416685 + "ts": 0.245865475 }, { "core_id": 0, @@ -22182,7 +24000,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.24417815 + "ts": 0.24587655 }, { "core_id": 1, @@ -22192,10 +24010,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.244189775 + "ts": 0.245888475 }, { "core_id": 1, @@ -22205,10 +24023,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.244210225 + "ts": 0.245904775 }, { "core_id": 1, @@ -22216,8 +24034,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (552) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb8ec\n", - "ts": 0.2442739 + "msg": "I (541) example: Task[0x3ffbad8c]: free memory @ 0x3ffbb0d8\n", + "ts": 0.24595265 }, { "core_id": 1, @@ -22225,15 +24043,15 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (552) example: Task[0x3ffbb5c4]: free memory @ 0x3ffbb8ec\n", - "ts": 0.2442739 + "msg": "I (541) example: Task[0x3ffbad8c]: free memory @ 0x3ffbb0d8\n", + "ts": 0.24595265 }, { - "addr": "0x3ffbb8ec", + "addr": "0x3ffbb0d8", "callers": [ - "0x4008e674", - "0x400d6bb2", - "0x40088d94", + "0x4008da24", + "0x400d3c72", + "0x400880dc", "0x0", "0x0", "0x0", @@ -22247,7 +24065,7 @@ "id": 513, "in_irq": false, "size": 0, - "ts": 0.2442951 + "ts": 0.245978075 }, { "core_id": 1, @@ -22257,7 +24075,7 @@ "params": { "irq_num": 31 }, - "ts": 0.244322 + "ts": 0.246005475 }, { "core_id": 1, @@ -22265,7 +24083,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.244333425 + "ts": 0.2460169 }, { "core_id": 1, @@ -22273,7 +24091,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.24435 + "ts": 0.24603345 }, { "core_id": 1, @@ -22283,7 +24101,7 @@ "params": { "irq_num": 5 }, - "ts": 0.244666425 + "ts": 0.2464482 }, { "core_id": 1, @@ -22291,7 +24109,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.24467985 + "ts": 0.246461725 }, { "core_id": 1, @@ -22299,7 +24117,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.24469555 + "ts": 0.2464773 }, { "core_id": 0, @@ -22309,7 +24127,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2448338 + "ts": 0.24654665 }, { "core_id": 0, @@ -22317,7 +24135,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.244849175 + "ts": 0.24656205 }, { "core_id": 0, @@ -22325,7 +24143,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.24486425 + "ts": 0.246577275 }, { "core_id": 1, @@ -22335,7 +24153,7 @@ "params": { "irq_num": 5 }, - "ts": 0.245666425 + "ts": 0.2474482 }, { "core_id": 1, @@ -22343,7 +24161,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.245680075 + "ts": 0.247461725 }, { "core_id": 1, @@ -22351,7 +24169,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.24569535 + "ts": 0.24747685 }, { "core_id": 0, @@ -22361,7 +24179,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2458338 + "ts": 0.24754665 }, { "core_id": 0, @@ -22369,7 +24187,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.245849175 + "ts": 0.247562 }, { "core_id": 0, @@ -22377,7 +24195,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.24586425 + "ts": 0.247577075 }, { "core_id": 1, @@ -22387,7 +24205,7 @@ "params": { "irq_num": 5 }, - "ts": 0.246666425 + "ts": 0.2484482 }, { "core_id": 1, @@ -22395,7 +24213,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.24668 + "ts": 0.248461725 }, { "core_id": 1, @@ -22403,7 +24221,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.246695125 + "ts": 0.248476975 }, { "core_id": 0, @@ -22413,7 +24231,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2468338 + "ts": 0.24854665 }, { "core_id": 0, @@ -22421,7 +24239,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.246849175 + "ts": 0.248562025 }, { "core_id": 0, @@ -22429,7 +24247,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.24686425 + "ts": 0.248577225 }, { "core_id": 1, @@ -22439,7 +24257,7 @@ "params": { "irq_num": 5 }, - "ts": 0.247666425 + "ts": 0.2494482 }, { "core_id": 1, @@ -22447,7 +24265,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.247680075 + "ts": 0.249461775 }, { "core_id": 1, @@ -22455,7 +24273,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.247695225 + "ts": 0.2494769 }, { "core_id": 0, @@ -22465,7 +24283,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2478338 + "ts": 0.24954665 }, { "core_id": 0, @@ -22473,7 +24291,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2478492 + "ts": 0.249562 }, { "core_id": 0, @@ -22481,7 +24299,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.247864425 + "ts": 0.249577075 }, { "core_id": 1, @@ -22491,7 +24309,7 @@ "params": { "irq_num": 5 }, - "ts": 0.248666425 + "ts": 0.2504482 }, { "core_id": 1, @@ -22499,7 +24317,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.24867995 + "ts": 0.250461725 }, { "core_id": 1, @@ -22507,7 +24325,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.2486951 + "ts": 0.25047685 }, { "core_id": 0, @@ -22517,7 +24335,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2488338 + "ts": 0.25054665 }, { "core_id": 0, @@ -22525,7 +24343,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.248849175 + "ts": 0.25056205 }, { "core_id": 0, @@ -22533,7 +24351,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.24886425 + "ts": 0.250577275 }, { "core_id": 1, @@ -22543,7 +24361,7 @@ "params": { "irq_num": 5 }, - "ts": 0.249666425 + "ts": 0.2514482 }, { "core_id": 1, @@ -22551,7 +24369,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.249680075 + "ts": 0.251461725 }, { "core_id": 1, @@ -22559,7 +24377,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.24969535 + "ts": 0.25147685 }, { "core_id": 0, @@ -22569,7 +24387,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2498338 + "ts": 0.25154665 }, { "core_id": 0, @@ -22577,7 +24395,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.249849175 + "ts": 0.251562 }, { "core_id": 0, @@ -22585,7 +24403,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.249868675 + "ts": 0.251577075 }, { "core_id": 1, @@ -22595,7 +24413,7 @@ "params": { "irq_num": 5 }, - "ts": 0.250666425 + "ts": 0.2524482 }, { "core_id": 1, @@ -22603,7 +24421,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.25067995 + "ts": 0.252461725 }, { "core_id": 1, @@ -22611,7 +24429,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.2506951 + "ts": 0.252476975 }, { "core_id": 0, @@ -22621,7 +24439,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2508338 + "ts": 0.25254665 }, { "core_id": 0, @@ -22629,7 +24447,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.250849175 + "ts": 0.252562025 }, { "core_id": 0, @@ -22637,7 +24455,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.25086425 + "ts": 0.252577225 }, { "core_id": 1, @@ -22647,7 +24465,7 @@ "params": { "irq_num": 5 }, - "ts": 0.251666425 + "ts": 0.2534482 }, { "core_id": 1, @@ -22655,7 +24473,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.251680075 + "ts": 0.253461725 }, { "core_id": 1, @@ -22663,7 +24481,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.25169535 + "ts": 0.253476975 }, { "core_id": 0, @@ -22673,7 +24491,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2518338 + "ts": 0.25354665 }, { "core_id": 0, @@ -22681,7 +24499,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.251849175 + "ts": 0.253562025 }, { "core_id": 0, @@ -22689,7 +24507,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.25186425 + "ts": 0.253577225 }, { "core_id": 1, @@ -22699,7 +24517,7 @@ "params": { "irq_num": 5 }, - "ts": 0.252666425 + "ts": 0.2544482 }, { "core_id": 1, @@ -22707,7 +24525,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.25268 + "ts": 0.254461775 }, { "core_id": 1, @@ -22715,7 +24533,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.252695125 + "ts": 0.2544769 }, { "core_id": 0, @@ -22725,7 +24543,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2528338 + "ts": 0.25454665 }, { "core_id": 0, @@ -22733,7 +24551,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.252849175 + "ts": 0.254562 }, { "core_id": 0, @@ -22741,7 +24559,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.25286425 + "ts": 0.254577075 }, { "core_id": 1, @@ -22751,7 +24569,7 @@ "params": { "irq_num": 5 }, - "ts": 0.253666425 + "ts": 0.2554482 }, { "core_id": 1, @@ -22759,7 +24577,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.253680075 + "ts": 0.255461725 }, { "core_id": 1, @@ -22767,7 +24585,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.253695225 + "ts": 0.25547685 }, { "core_id": 0, @@ -22777,7 +24595,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2538338 + "ts": 0.25554665 }, { "core_id": 0, @@ -22785,7 +24603,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2538492 + "ts": 0.25556205 }, { "core_id": 0, @@ -22793,7 +24611,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.253864425 + "ts": 0.255577275 }, { "core_id": 1, @@ -22803,7 +24621,7 @@ "params": { "irq_num": 5 }, - "ts": 0.254666425 + "ts": 0.2564482 }, { "core_id": 1, @@ -22811,7 +24629,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.25467995 + "ts": 0.256461725 }, { "core_id": 1, @@ -22819,7 +24637,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.2546951 + "ts": 0.25647685 }, { "core_id": 0, @@ -22829,7 +24647,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2548338 + "ts": 0.25654665 }, { "core_id": 0, @@ -22837,7 +24655,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.254849175 + "ts": 0.256562 }, { "core_id": 0, @@ -22845,7 +24663,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.25486425 + "ts": 0.256577075 }, { "core_id": 1, @@ -22855,7 +24673,7 @@ "params": { "irq_num": 5 }, - "ts": 0.255666425 + "ts": 0.2574482 }, { "core_id": 1, @@ -22863,7 +24681,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.255680075 + "ts": 0.257461725 }, { "core_id": 1, @@ -22871,7 +24689,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.25569535 + "ts": 0.257476975 }, { "core_id": 0, @@ -22881,7 +24699,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2558338 + "ts": 0.25754665 }, { "core_id": 0, @@ -22889,7 +24707,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.255849175 + "ts": 0.257562025 }, { "core_id": 0, @@ -22897,7 +24715,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.25586425 + "ts": 0.257577225 }, { "core_id": 1, @@ -22907,7 +24725,7 @@ "params": { "irq_num": 5 }, - "ts": 0.256666425 + "ts": 0.2584482 }, { "core_id": 1, @@ -22915,7 +24733,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.25668 + "ts": 0.258461775 }, { "core_id": 1, @@ -22923,7 +24741,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.256695125 + "ts": 0.2584769 }, { "core_id": 0, @@ -22933,7 +24751,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2568338 + "ts": 0.25854665 }, { "core_id": 0, @@ -22941,7 +24759,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.256849175 + "ts": 0.258562 }, { "core_id": 0, @@ -22949,7 +24767,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.25686425 + "ts": 0.258577075 }, { "core_id": 1, @@ -22959,7 +24777,7 @@ "params": { "irq_num": 5 }, - "ts": 0.257666425 + "ts": 0.2594482 }, { "core_id": 1, @@ -22967,7 +24785,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.257680075 + "ts": 0.259461725 }, { "core_id": 1, @@ -22975,7 +24793,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.257695225 + "ts": 0.25947685 }, { "core_id": 0, @@ -22985,7 +24803,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2578338 + "ts": 0.25954665 }, { "core_id": 0, @@ -22993,7 +24811,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2578492 + "ts": 0.25956205 }, { "core_id": 0, @@ -23001,7 +24819,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.257864425 + "ts": 0.259577275 }, { "core_id": 1, @@ -23011,7 +24829,7 @@ "params": { "irq_num": 5 }, - "ts": 0.258666425 + "ts": 0.2604482 }, { "core_id": 1, @@ -23019,7 +24837,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.25867995 + "ts": 0.260461725 }, { "core_id": 1, @@ -23027,7 +24845,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.2586951 + "ts": 0.26047685 }, { "core_id": 0, @@ -23037,7 +24855,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2588338 + "ts": 0.26054665 }, { "core_id": 0, @@ -23045,7 +24863,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.258849175 + "ts": 0.260562 }, { "core_id": 0, @@ -23053,7 +24871,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.25886425 + "ts": 0.260577075 }, { "core_id": 1, @@ -23063,7 +24881,7 @@ "params": { "irq_num": 5 }, - "ts": 0.259666425 + "ts": 0.2614482 }, { "core_id": 1, @@ -23071,7 +24889,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.259680075 + "ts": 0.261461725 }, { "core_id": 1, @@ -23079,7 +24897,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.25969535 + "ts": 0.261476975 }, { "core_id": 0, @@ -23089,7 +24907,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2598338 + "ts": 0.26154665 }, { "core_id": 0, @@ -23097,7 +24915,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.259849175 + "ts": 0.261562025 }, { "core_id": 0, @@ -23105,7 +24923,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.25986425 + "ts": 0.261577225 }, { "core_id": 1, @@ -23115,7 +24933,7 @@ "params": { "irq_num": 5 }, - "ts": 0.260666425 + "ts": 0.2624482 }, { "core_id": 1, @@ -23123,7 +24941,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.26068 + "ts": 0.262461775 }, { "core_id": 1, @@ -23131,7 +24949,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.260695125 + "ts": 0.2624769 }, { "core_id": 0, @@ -23141,7 +24959,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2608338 + "ts": 0.26254665 }, { "core_id": 0, @@ -23149,7 +24967,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.260849175 + "ts": 0.262562 }, { "core_id": 0, @@ -23157,7 +24975,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.26086425 + "ts": 0.262577075 }, { "core_id": 1, @@ -23167,7 +24985,7 @@ "params": { "irq_num": 5 }, - "ts": 0.261666425 + "ts": 0.2634482 }, { "core_id": 1, @@ -23175,7 +24993,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.261680075 + "ts": 0.263461725 }, { "core_id": 1, @@ -23183,7 +25001,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.261695225 + "ts": 0.26347685 }, { "core_id": 0, @@ -23193,7 +25011,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2618338 + "ts": 0.26354665 }, { "core_id": 0, @@ -23201,7 +25019,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2618492 + "ts": 0.26356205 }, { "core_id": 0, @@ -23209,7 +25027,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.261864425 + "ts": 0.263577275 }, { "core_id": 1, @@ -23219,7 +25037,7 @@ "params": { "irq_num": 5 }, - "ts": 0.262666425 + "ts": 0.2644482 }, { "core_id": 1, @@ -23227,7 +25045,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.262680075 + "ts": 0.264461725 }, { "core_id": 1, @@ -23235,7 +25053,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.26269535 + "ts": 0.26447685 }, { "core_id": 0, @@ -23245,7 +25063,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2628338 + "ts": 0.26454665 }, { "core_id": 0, @@ -23253,7 +25071,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.262849175 + "ts": 0.264562 }, { "core_id": 0, @@ -23261,7 +25079,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.26286425 + "ts": 0.264577075 }, { "core_id": 1, @@ -23271,7 +25089,7 @@ "params": { "irq_num": 5 }, - "ts": 0.263666425 + "ts": 0.2654482 }, { "core_id": 1, @@ -23279,7 +25097,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.26368 + "ts": 0.265466 }, { "core_id": 1, @@ -23287,7 +25105,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.263695125 + "ts": 0.265481125 }, { "core_id": 0, @@ -23297,7 +25115,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2638338 + "ts": 0.26554665 }, { "core_id": 0, @@ -23305,7 +25123,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.263849175 + "ts": 0.265562 }, { "core_id": 0, @@ -23313,7 +25131,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.26386425 + "ts": 0.265577075 }, { "core_id": 1, @@ -23323,7 +25141,7 @@ "params": { "irq_num": 5 }, - "ts": 0.264666425 + "ts": 0.2664482 }, { "core_id": 1, @@ -23331,7 +25149,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.264680075 + "ts": 0.266461725 }, { "core_id": 1, @@ -23339,7 +25157,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.264695225 + "ts": 0.26647685 }, { "core_id": 0, @@ -23349,7 +25167,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2648338 + "ts": 0.26654665 }, { "core_id": 0, @@ -23357,7 +25175,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2648492 + "ts": 0.26656205 }, { "core_id": 0, @@ -23365,7 +25183,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.264864425 + "ts": 0.266577275 }, { "core_id": 1, @@ -23375,7 +25193,7 @@ "params": { "irq_num": 5 }, - "ts": 0.265666425 + "ts": 0.2674482 }, { "core_id": 1, @@ -23383,7 +25201,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.26567995 + "ts": 0.267461725 }, { "core_id": 1, @@ -23391,7 +25209,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.2656951 + "ts": 0.26747685 }, { "core_id": 0, @@ -23401,7 +25219,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2658338 + "ts": 0.26754665 }, { "core_id": 0, @@ -23409,7 +25227,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.265849175 + "ts": 0.267562 }, { "core_id": 0, @@ -23417,7 +25235,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.26586425 + "ts": 0.267577075 }, { "core_id": 1, @@ -23427,7 +25245,7 @@ "params": { "irq_num": 5 }, - "ts": 0.266666425 + "ts": 0.2684482 }, { "core_id": 1, @@ -23435,7 +25253,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.266680075 + "ts": 0.268461725 }, { "core_id": 1, @@ -23443,7 +25261,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.26669535 + "ts": 0.268476975 }, { "core_id": 0, @@ -23453,7 +25271,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2668338 + "ts": 0.26854665 }, { "core_id": 0, @@ -23461,7 +25279,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.266849175 + "ts": 0.268562025 }, { "core_id": 0, @@ -23469,7 +25287,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.26686425 + "ts": 0.268577225 }, { "core_id": 1, @@ -23479,7 +25297,7 @@ "params": { "irq_num": 5 }, - "ts": 0.267666425 + "ts": 0.2694482 }, { "core_id": 1, @@ -23487,7 +25305,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.26768 + "ts": 0.269461775 }, { "core_id": 1, @@ -23495,7 +25313,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.267695125 + "ts": 0.2694769 }, { "core_id": 0, @@ -23505,7 +25323,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2678338 + "ts": 0.26954665 }, { "core_id": 0, @@ -23513,7 +25331,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.267849175 + "ts": 0.269562 }, { "core_id": 0, @@ -23521,7 +25339,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.26786425 + "ts": 0.269577075 }, { "core_id": 1, @@ -23531,7 +25349,7 @@ "params": { "irq_num": 5 }, - "ts": 0.268666425 + "ts": 0.2704482 }, { "core_id": 1, @@ -23539,7 +25357,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.268680075 + "ts": 0.270461725 }, { "core_id": 1, @@ -23547,7 +25365,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.268695225 + "ts": 0.27047685 }, { "core_id": 0, @@ -23557,7 +25375,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2688338 + "ts": 0.27054665 }, { "core_id": 0, @@ -23565,7 +25383,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.2688492 + "ts": 0.27056205 }, { "core_id": 0, @@ -23573,7 +25391,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.268864425 + "ts": 0.270577275 }, { "core_id": 1, @@ -23583,7 +25401,7 @@ "params": { "irq_num": 5 }, - "ts": 0.269666425 + "ts": 0.2714482 }, { "core_id": 1, @@ -23591,7 +25409,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.26967995 + "ts": 0.271461725 }, { "core_id": 1, @@ -23599,7 +25417,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.2696951 + "ts": 0.27147685 }, { "core_id": 0, @@ -23609,7 +25427,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2698338 + "ts": 0.27154665 }, { "core_id": 0, @@ -23617,7 +25435,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.269849175 + "ts": 0.271562 }, { "core_id": 0, @@ -23625,7 +25443,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.26986425 + "ts": 0.271577075 }, { "core_id": 1, @@ -23635,7 +25453,7 @@ "params": { "irq_num": 5 }, - "ts": 0.270666425 + "ts": 0.2724482 }, { "core_id": 1, @@ -23643,7 +25461,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.270680075 + "ts": 0.272461725 }, { "core_id": 1, @@ -23651,7 +25469,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.27069535 + "ts": 0.272476975 }, { "core_id": 0, @@ -23661,59 +25479,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2708338 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.270849175 - }, - { - "core_id": 0, - "ctx_name": "alloc2", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.27086425 - }, - { - "core_id": 1, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.271666425 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 18, - "in_irq": false, - "params": {}, - "ts": 0.27168 - }, - { - "core_id": 1, - "ctx_name": "free2", - "id": 17, - "in_irq": false, - "params": {}, - "ts": 0.271695125 - }, - { - "core_id": 0, - "ctx_name": "SysTick", - "id": 2, - "in_irq": true, - "params": { - "irq_num": 5 - }, - "ts": 0.2718338 + "ts": 0.27254665 }, { "core_id": 0, @@ -23721,9 +25487,19 @@ "id": 6, "in_irq": true, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.2718488 + "ts": 0.272561625 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12284596 + }, + "ts": 0.272561625 }, { "core_id": 0, @@ -23731,7 +25507,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.271861575 + "ts": 0.272574225 }, { "core_id": 0, @@ -23739,9 +25515,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12286700 + "tid": 12284596 }, - "ts": 0.27187725 + "ts": 0.272589875 }, { "core_id": 0, @@ -23752,9 +25528,9 @@ "eAction": 2, "pulPreviousNotificationValue": 0, "ulValue": 0, - "xTaskToNotify": 12254080 + "xTaskToNotify": 12274964 }, - "ts": 0.271895625 + "ts": 0.27260805 }, { "core_id": 0, @@ -23762,9 +25538,19 @@ "id": 6, "in_irq": false, "params": { - "tid": 12254080 + "tid": 12274964 }, - "ts": 0.271906575 + "ts": 0.2726191 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274964 + }, + "ts": 0.2726191 }, { "core_id": 0, @@ -23774,7 +25560,7 @@ "params": { "xTicksToDelay": 100 }, - "ts": 0.271919725 + "ts": 0.2726322 }, { "core_id": 0, @@ -23784,7 +25570,7 @@ "params": { "irq_num": 30 }, - "ts": 0.271936275 + "ts": 0.27264875 }, { "core_id": 0, @@ -23792,7 +25578,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.27194765 + "ts": 0.272660225 }, { "core_id": 0, @@ -23800,9 +25586,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12254080 + "tid": 12274964 }, - "ts": 0.2719646 + "ts": 0.272677175 }, { "core_id": 0, @@ -23813,7 +25599,7 @@ "xClearCountOnExit": 0, "xTicksToWait": 4294967295 }, - "ts": 0.271982475 + "ts": 0.27269095 }, { "core_id": 0, @@ -23823,10 +25609,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.271998425 + "ts": 0.272706875 }, { "core_id": 0, @@ -23836,10 +25622,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.272014325 + "ts": 0.272722875 }, { "core_id": 0, @@ -23847,8 +25633,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (580) example: Got notify val 1\n", - "ts": 0.272063675 + "msg": "I (568) example: Got notify val 1\n", + "ts": 0.272764325 }, { "core_id": 0, @@ -23856,8 +25642,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (580) example: Got notify val 1\n", - "ts": 0.272063675 + "msg": "I (568) example: Got notify val 1\n", + "ts": 0.272764325 }, { "core_id": 0, @@ -23867,10 +25653,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.272079975 + "ts": 0.272784675 }, { "core_id": 0, @@ -23880,10 +25666,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.272095925 + "ts": 0.272800725 }, { "core_id": 0, @@ -23891,8 +25677,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (580) example: Wait notify 1\n", - "ts": 0.272140275 + "msg": "I (568) example: Wait notify 1\n", + "ts": 0.272837275 }, { "core_id": 0, @@ -23900,8 +25686,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (580) example: Wait notify 1\n", - "ts": 0.272140275 + "msg": "I (568) example: Wait notify 1\n", + "ts": 0.272837275 }, { "core_id": 0, @@ -23911,7 +25697,7 @@ "params": { "irq_num": 30 }, - "ts": 0.27215865 + "ts": 0.2728555 }, { "core_id": 0, @@ -23919,7 +25705,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.27217005 + "ts": 0.27286685 }, { "core_id": 0, @@ -23927,7 +25713,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.2721861 + "ts": 0.272882775 }, { "core_id": 1, @@ -23937,7 +25723,7 @@ "params": { "irq_num": 5 }, - "ts": 0.272666425 + "ts": 0.2734482 }, { "core_id": 1, @@ -23945,7 +25731,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.27267995 + "ts": 0.273461725 }, { "core_id": 1, @@ -23953,7 +25739,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.2726951 + "ts": 0.273476975 }, { "core_id": 0, @@ -23963,7 +25749,7 @@ "params": { "irq_num": 5 }, - "ts": 0.2728338 + "ts": 0.27354665 }, { "core_id": 0, @@ -23971,9 +25757,19 @@ "id": 6, "in_irq": true, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.2728488 + "ts": 0.273561625 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12290612 + }, + "ts": 0.273561625 }, { "core_id": 0, @@ -23981,7 +25777,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.272861575 + "ts": 0.273574225 }, { "core_id": 0, @@ -23989,9 +25785,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12292716 + "tid": 12290612 }, - "ts": 0.272877375 + "ts": 0.273589875 }, { "core_id": 0, @@ -24002,9 +25798,9 @@ "eAction": 2, "pulPreviousNotificationValue": 0, "ulValue": 0, - "xTaskToNotify": 12254080 + "xTaskToNotify": 12274964 }, - "ts": 0.2728918 + "ts": 0.27360425 }, { "core_id": 0, @@ -24012,9 +25808,19 @@ "id": 6, "in_irq": false, "params": { - "tid": 12254080 + "tid": 12274964 }, - "ts": 0.272902925 + "ts": 0.2736153 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274964 + }, + "ts": 0.2736153 }, { "core_id": 0, @@ -24024,7 +25830,7 @@ "params": { "xTicksToDelay": 100 }, - "ts": 0.27291605 + "ts": 0.2736284 }, { "core_id": 0, @@ -24034,7 +25840,7 @@ "params": { "irq_num": 30 }, - "ts": 0.27293265 + "ts": 0.27364495 }, { "core_id": 0, @@ -24042,7 +25848,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.272944025 + "ts": 0.2736563 }, { "core_id": 0, @@ -24050,9 +25856,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12254080 + "tid": 12274964 }, - "ts": 0.272960975 + "ts": 0.27367325 }, { "core_id": 0, @@ -24063,7 +25869,7 @@ "xClearCountOnExit": 0, "xTicksToWait": 4294967295 }, - "ts": 0.272974675 + "ts": 0.273687025 }, { "core_id": 0, @@ -24073,10 +25879,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.2729906 + "ts": 0.27370295 }, { "core_id": 0, @@ -24086,10 +25892,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.273006525 + "ts": 0.27371895 }, { "core_id": 0, @@ -24097,8 +25903,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (581) example: Got notify val 1\n", - "ts": 0.273056 + "msg": "I (569) example: Got notify val 1\n", + "ts": 0.27375645 }, { "core_id": 0, @@ -24106,8 +25912,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (581) example: Got notify val 1\n", - "ts": 0.273056 + "msg": "I (569) example: Got notify val 1\n", + "ts": 0.27375645 }, { "core_id": 0, @@ -24117,10 +25923,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.2730723 + "ts": 0.2737761 }, { "core_id": 0, @@ -24130,10 +25936,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.27308825 + "ts": 0.27379205 }, { "core_id": 0, @@ -24141,8 +25947,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (581) example: Wait notify 2\n", - "ts": 0.2731326 + "msg": "I (569) example: Wait notify 2\n", + "ts": 0.2738286 }, { "core_id": 0, @@ -24150,8 +25956,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (581) example: Wait notify 2\n", - "ts": 0.2731326 + "msg": "I (569) example: Wait notify 2\n", + "ts": 0.2738286 }, { "core_id": 0, @@ -24161,7 +25967,7 @@ "params": { "irq_num": 30 }, - "ts": 0.273150975 + "ts": 0.273846825 }, { "core_id": 0, @@ -24169,7 +25975,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.273162375 + "ts": 0.273858175 }, { "core_id": 0, @@ -24177,7 +25983,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.27317855 + "ts": 0.2738742 }, { "core_id": 1, @@ -24187,7 +25993,7 @@ "params": { "irq_num": 5 }, - "ts": 0.273666425 + "ts": 0.2744482 }, { "core_id": 1, @@ -24195,7 +26001,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.27367995 + "ts": 0.274461725 }, { "core_id": 1, @@ -24203,7 +26009,7 @@ "id": 17, "in_irq": false, "params": {}, - "ts": 0.2736951 + "ts": 0.274476975 }, { "core_id": 0, @@ -24213,7 +26019,59 @@ "params": { "irq_num": 5 }, - "ts": 0.2738338 + "ts": 0.27454665 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.274562025 + }, + { + "core_id": 0, + "ctx_name": "main", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.274577225 + }, + { + "core_id": 1, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.2754482 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 18, + "in_irq": false, + "params": {}, + "ts": 0.275461775 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 17, + "in_irq": false, + "params": {}, + "ts": 0.2754769 + }, + { + "core_id": 0, + "ctx_name": "SysTick", + "id": 2, + "in_irq": true, + "params": { + "irq_num": 5 + }, + "ts": 0.27554665 }, { "core_id": 0, @@ -24221,9 +26079,19 @@ "id": 6, "in_irq": true, "params": { - "tid": 12298716 + "tid": 12296612 }, - "ts": 0.2738488 + "ts": 0.275561625 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12296612 + }, + "ts": 0.275561625 }, { "core_id": 0, @@ -24231,7 +26099,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.273861575 + "ts": 0.275574275 }, { "core_id": 0, @@ -24239,9 +26107,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12298716 + "tid": 12296612 }, - "ts": 0.273877375 + "ts": 0.27558995 }, { "core_id": 0, @@ -24252,9 +26120,9 @@ "eAction": 2, "pulPreviousNotificationValue": 0, "ulValue": 0, - "xTaskToNotify": 12254080 + "xTaskToNotify": 12274964 }, - "ts": 0.2738918 + "ts": 0.275604375 }, { "core_id": 0, @@ -24262,9 +26130,19 @@ "id": 6, "in_irq": false, "params": { - "tid": 12254080 + "tid": 12274964 }, - "ts": 0.273902925 + "ts": 0.27561535 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 6, + "in_irq": false, + "params": { + "tid": 12274964 + }, + "ts": 0.27561535 }, { "core_id": 0, @@ -24274,7 +26152,7 @@ "params": { "xTicksToDelay": 100 }, - "ts": 0.27391605 + "ts": 0.275628525 }, { "core_id": 0, @@ -24284,7 +26162,7 @@ "params": { "irq_num": 30 }, - "ts": 0.27393265 + "ts": 0.275645075 }, { "core_id": 0, @@ -24292,7 +26170,7 @@ "id": 18, "in_irq": false, "params": {}, - "ts": 0.273944025 + "ts": 0.275656425 }, { "core_id": 0, @@ -24300,9 +26178,9 @@ "id": 4, "in_irq": false, "params": { - "tid": 12254080 + "tid": 12274964 }, - "ts": 0.273960975 + "ts": 0.275673375 }, { "core_id": 0, @@ -24313,7 +26191,7 @@ "xClearCountOnExit": 0, "xTicksToWait": 4294967295 }, - "ts": 0.273974675 + "ts": 0.275687075 }, { "core_id": 0, @@ -24323,10 +26201,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.2739906 + "ts": 0.275703075 }, { "core_id": 0, @@ -24336,10 +26214,10 @@ "params": { "pvItemToQueue": 0, "xCopyPosition": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 0 }, - "ts": 0.274006525 + "ts": 0.275719225 }, { "core_id": 0, @@ -24347,8 +26225,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (582) example: Got notify val 1\n", - "ts": 0.274051775 + "msg": "I (571) example: Got notify val 1\n", + "ts": 0.2757568 }, { "core_id": 0, @@ -24356,8 +26234,8 @@ "id": 26, "in_irq": false, "lvl": 0, - "msg": "I (582) example: Got notify val 1\n", - "ts": 0.274051775 + "msg": "I (571) example: Got notify val 1\n", + "ts": 0.2757568 }, { "core_id": 0, @@ -24367,10 +26245,10 @@ "params": { "pvBuffer": 3233808384, "xJustPeek": 0, - "xQueue": 12283904, + "xQueue": 12281672, "xTicksToWait": 10 }, - "ts": 0.330505425 + "ts": 0.32703545 }, { "core_id": 0, @@ -24378,7 +26256,15 @@ "id": 11, "in_irq": false, "params": {}, - "ts": 0.330514125 + "ts": 0.327044075 + }, + { + "core_id": 1, + "ctx_name": "free2", + "id": 11, + "in_irq": false, + "params": {}, + "ts": 0.327044075 } ], "streams": { @@ -24505,12 +26391,13 @@ "xTimerPendFunctionCallFromISR": 163 }, "system": { + "SYS_DATA_SAMPLE": 23, "SYS_IDLE": 17, "SYS_INIT": 24, "SYS_ISR_ENTER": 2, "SYS_ISR_EXIT": 3, "SYS_ISR_TO_SCHEDULER": 18, - "SYS_MODULEDESC": 24, + "SYS_MODULEDESC": 22, "SYS_NAME_RESOURCE": 25, "SYS_NOP": 0, "SYS_NUMMODULES": 27, diff --git a/tools/esp_app_trace/test/sysview/heap_log0.svdat b/tools/esp_app_trace/test/sysview/heap_log0.svdat index 30f3c9e764..fbcfd142d2 100644 Binary files a/tools/esp_app_trace/test/sysview/heap_log0.svdat and b/tools/esp_app_trace/test/sysview/heap_log0.svdat differ diff --git a/tools/esp_app_trace/test/sysview/heap_log1.svdat b/tools/esp_app_trace/test/sysview/heap_log1.svdat index 5133eb8683..59265b8893 100644 Binary files a/tools/esp_app_trace/test/sysview/heap_log1.svdat and b/tools/esp_app_trace/test/sysview/heap_log1.svdat differ diff --git a/tools/esp_app_trace/test/sysview/heap_log_mcore.svdat b/tools/esp_app_trace/test/sysview/heap_log_mcore.svdat index 6a5b07cda8..f8ec7c43f3 100644 Binary files a/tools/esp_app_trace/test/sysview/heap_log_mcore.svdat and b/tools/esp_app_trace/test/sysview/heap_log_mcore.svdat differ diff --git a/tools/esp_app_trace/test/sysview/sysview_tracing_heap_log.elf b/tools/esp_app_trace/test/sysview/sysview_tracing_heap_log.elf index 05d483d785..3857389d85 100644 Binary files a/tools/esp_app_trace/test/sysview/sysview_tracing_heap_log.elf and b/tools/esp_app_trace/test/sysview/sysview_tracing_heap_log.elf differ diff --git a/tools/esp_app_trace/test/sysview/test.sh b/tools/esp_app_trace/test/sysview/test.sh index 4906c8f317..52351967f9 100755 --- a/tools/esp_app_trace/test/sysview/test.sh +++ b/tools/esp_app_trace/test/sysview/test.sh @@ -1,29 +1,29 @@ #!/usr/bin/env bash -{ python -m coverage debug sys \ - && python -m coverage erase &> output \ - && python -m coverage run -a $IDF_PATH/tools/esp_app_trace/sysviewtrace_proc.py -d -p -b sysview_tracing_heap_log.elf heap_log0.svdat heap_log1.svdat &>> output \ - && diff output expected_output \ - && python -m coverage report \ -; } || { echo 'The test for sysviewtrace_proc has failed. Please examine the artifacts.' ; exit 1; } +{ python -m coverage debug sys && \ + python -m coverage erase > output && \ + python -m coverage run -a $IDF_PATH/tools/esp_app_trace/sysviewtrace_proc.py -d -p -b sysview_tracing_heap_log.elf heap_log0.svdat heap_log1.svdat >> output && \ + diff output expected_output && \ + python -m coverage report; \ +} || { echo 'The test for sysviewtrace_proc has failed. Please examine the artifacts.' ; exit 1; } -{ python -m coverage debug sys \ - && python -m coverage erase &> output.json \ - && python -m coverage run -a $IDF_PATH/tools/esp_app_trace/sysviewtrace_proc.py -j -b sysview_tracing_heap_log.elf heap_log0.svdat heap_log1.svdat &>> output.json \ - && diff output.json expected_output.json \ - && python -m coverage report \ -; } || { echo 'The test for sysviewtrace_proc JSON functionality has failed. Please examine the artifacts.' ; exit 1; } +{ python -m coverage debug sys && \ + python -m coverage erase > output.json && \ + python -m coverage run -a $IDF_PATH/tools/esp_app_trace/sysviewtrace_proc.py -j -b sysview_tracing_heap_log.elf heap_log0.svdat heap_log1.svdat >> output.json && \ + diff output.json expected_output.json && \ + python -m coverage report; \ +} || { echo 'The test for sysviewtrace_proc JSON functionality has failed. Please examine the artifacts.' ; exit 1; } -{ python -m coverage debug sys \ - && python -m coverage erase &> output \ - && python -m coverage run -a $IDF_PATH/tools/esp_app_trace/sysviewtrace_proc.py -d -p -b sysview_tracing_heap_log.elf heap_log_mcore.svdat &>> output \ - && diff output expected_output_mcore \ - && python -m coverage report \ -; } || { echo 'The test for mcore sysviewtrace_proc functionality has failed. Please examine the artifacts.' ; exit 1; } +{ python -m coverage debug sys && \ + python -m coverage erase > output && \ + python -m coverage run -a $IDF_PATH/tools/esp_app_trace/sysviewtrace_proc.py -d -p -b sysview_tracing_heap_log.elf heap_log_mcore.svdat >> output && \ + diff output expected_output_mcore && \ + python -m coverage report; \ +} || { echo 'The test for mcore sysviewtrace_proc functionality has failed. Please examine the artifacts.' ; exit 1; } -{ python -m coverage debug sys \ - && python -m coverage erase &> output.json \ - && python -m coverage run -a $IDF_PATH/tools/esp_app_trace/sysviewtrace_proc.py -j -b sysview_tracing_heap_log.elf heap_log_mcore.svdat &>> output.json \ - && diff output.json expected_output_mcore.json \ - && python -m coverage report \ -; } || { echo 'The test for mcore sysviewtrace_proc JSON functionality has failed. Please examine the artifacts.' ; exit 1; } +{ python -m coverage debug sys && \ + python -m coverage erase > output.json && \ + python -m coverage run -a $IDF_PATH/tools/esp_app_trace/sysviewtrace_proc.py -j -b sysview_tracing_heap_log.elf heap_log_mcore.svdat >> output.json && \ + diff output.json expected_output_mcore.json && \ + python -m coverage report; \ +} || { echo 'The test for mcore sysviewtrace_proc JSON functionality has failed. Please examine the artifacts.' ; exit 1; } diff --git a/tools/tools.json b/tools/tools.json index 90896b470c..f11159ee63 100644 --- a/tools/tools.json +++ b/tools/tools.json @@ -605,46 +605,46 @@ "versions": [ { "linux-amd64": { - "sha256": "eb1fa9b21c65b45a2200af6dcc2914e32335d37b6dbbd181778dcc0dc025e70a", - "size": 2445546, - "url": "https://github.com/espressif/openocd-esp32/releases/download/v0.12.0-esp32-20250422/openocd-esp32-linux-amd64-0.12.0-esp32-20250422.tar.gz" + "sha256": "766293bd7a08900d3536f87a0a7ade960f07266f16e4147f95ca5ce4e15d4c5d", + "size": 2489724, + "url": "https://github.com/espressif/openocd-esp32/releases/download/v0.12.0-esp32-20250707/openocd-esp32-linux-amd64-0.12.0-esp32-20250707.tar.gz" }, "linux-arm64": { - "sha256": "f70334a9b12a75b4d943e09fa5db30973037c39dbb54d6fa9f1a7118228b3d1c", - "size": 2330926, - "url": "https://github.com/espressif/openocd-esp32/releases/download/v0.12.0-esp32-20250422/openocd-esp32-linux-arm64-0.12.0-esp32-20250422.tar.gz" + "sha256": "34b6883c372444b49950893b2fc0101aefd10d404a88ef72c97e80199f8544d3", + "size": 2371243, + "url": "https://github.com/espressif/openocd-esp32/releases/download/v0.12.0-esp32-20250707/openocd-esp32-linux-arm64-0.12.0-esp32-20250707.tar.gz" }, "linux-armel": { - "sha256": "4ac34d6fd1af86aeda87c8318732f8d691c300c285c7fd2f5037c432c63fbbb3", - "size": 2470732, - "url": "https://github.com/espressif/openocd-esp32/releases/download/v0.12.0-esp32-20250422/openocd-esp32-linux-armel-0.12.0-esp32-20250422.tar.gz" + "sha256": "fd48492cf3ee16577c661fdccc14c349d34a9ab93aac5039ddf72332d4f4b70b", + "size": 2517680, + "url": "https://github.com/espressif/openocd-esp32/releases/download/v0.12.0-esp32-20250707/openocd-esp32-linux-armel-0.12.0-esp32-20250707.tar.gz" }, "linux-armhf": { - "sha256": "75372bdbcef2df64013dd36c88836e1029c52955941b69ca463397ccbd287c21", - "size": 2310816, - "url": "https://github.com/espressif/openocd-esp32/releases/download/v0.12.0-esp32-20250422/openocd-esp32-linux-armhf-0.12.0-esp32-20250422.tar.gz" + "sha256": "a468cc108578a1f4553ac0502c814d47791ef79f5997a31e941908fa5119de9c", + "size": 2353427, + "url": "https://github.com/espressif/openocd-esp32/releases/download/v0.12.0-esp32-20250707/openocd-esp32-linux-armhf-0.12.0-esp32-20250707.tar.gz" }, "macos": { - "sha256": "9186a7a06304c6d9201cbce4ee3c7099b393bf8d329cda17a68874f92308f6ce", - "size": 2548730, - "url": "https://github.com/espressif/openocd-esp32/releases/download/v0.12.0-esp32-20250422/openocd-esp32-macos-0.12.0-esp32-20250422.tar.gz" + "sha256": "6267be53892a76d535938a1b044b685adc7d292f090447e8a3e3d0f0996474d1", + "size": 2585348, + "url": "https://github.com/espressif/openocd-esp32/releases/download/v0.12.0-esp32-20250707/openocd-esp32-macos-0.12.0-esp32-20250707.tar.gz" }, "macos-arm64": { - "sha256": "2cc39318d52f393233ff1f777871aebe5b97b3fbad29556a238489263401b774", - "size": 2593819, - "url": "https://github.com/espressif/openocd-esp32/releases/download/v0.12.0-esp32-20250422/openocd-esp32-macos-arm64-0.12.0-esp32-20250422.tar.gz" + "sha256": "150e938ac48a6ee031ddbc8b31043bc7f2073ab2ee4896b658918d35899673c3", + "size": 2628741, + "url": "https://github.com/espressif/openocd-esp32/releases/download/v0.12.0-esp32-20250707/openocd-esp32-macos-arm64-0.12.0-esp32-20250707.tar.gz" }, - "name": "v0.12.0-esp32-20250422", + "name": "v0.12.0-esp32-20250707", "status": "recommended", "win32": { - "sha256": "ecb4f8533fa9098d10000f5f7e8b8eaa8591015b824b481078ddb2b37e7aa6f2", - "size": 2988859, - "url": "https://github.com/espressif/openocd-esp32/releases/download/v0.12.0-esp32-20250422/openocd-esp32-win32-0.12.0-esp32-20250422.zip" + "sha256": "666274b04af7f36b430b6d063006051c37b8635b5175735ad5af07a1fbc6f486", + "size": 3034680, + "url": "https://github.com/espressif/openocd-esp32/releases/download/v0.12.0-esp32-20250707/openocd-esp32-win32-0.12.0-esp32-20250707.zip" }, "win64": { - "sha256": "e9eae8e1a8d0e030cd81dcb08394a9137cb7338a6211dfabcdbdfb37b58c5a23", - "size": 2988858, - "url": "https://github.com/espressif/openocd-esp32/releases/download/v0.12.0-esp32-20250422/openocd-esp32-win64-0.12.0-esp32-20250422.zip" + "sha256": "5186ba3f7ee29fb6ab68a4ed7bb417211bad76ecdcdf9280a9187ebfd549a3c1", + "size": 3034680, + "url": "https://github.com/espressif/openocd-esp32/releases/download/v0.12.0-esp32-20250707/openocd-esp32-win64-0.12.0-esp32-20250707.zip" } } ]