Searched refs:EventId (Results 1 – 2 of 2) sorted by relevance
/hal_espressif-3.6.0/components/app_trace/sys_view/SEGGER/ |
D | SEGGER_SYSVIEW.h | 240 void SEGGER_SYSVIEW_RecordVoid (unsigned int EventId); 241 void SEGGER_SYSVIEW_RecordU32 (unsigned int EventId, U32 Para0); 242 void SEGGER_SYSVIEW_RecordU32x2 (unsigned int EventId, U32 Para0, U32 Para1); 243 void SEGGER_SYSVIEW_RecordU32x3 (unsigned int EventId, U32 Para0, U32 Para1, U32 … 244 void SEGGER_SYSVIEW_RecordU32x4 (unsigned int EventId, U32 Para0, U32 Para1, U32 … 245 void SEGGER_SYSVIEW_RecordU32x5 (unsigned int EventId, U32 Para0, U32 Para1, U32 … 246 void SEGGER_SYSVIEW_RecordU32x6 (unsigned int EventId, U32 Para0, U32 Para1, U32 … 247 void SEGGER_SYSVIEW_RecordU32x7 (unsigned int EventId, U32 Para0, U32 Para1, U32 … 248 void SEGGER_SYSVIEW_RecordU32x8 (unsigned int EventId, U32 Para0, U32 Para1, U32 … 249 void SEGGER_SYSVIEW_RecordU32x9 (unsigned int EventId, U32 Para0, U32 Para1, U32 … [all …]
|
D | SEGGER_SYSVIEW.c | 249 static void _SendPacket(U8* pStartPacket, U8* pEndPacket, unsigned int EventId); 624 static void _SendPacket(U8* pStartPacket, U8* pEndPacket, unsigned int EventId) { in _SendPacket() argument 663 if (EventId < 32) { in _SendPacket() 664 if (_SYSVIEW_Globals.DisabledEvents & ((U32)1u << EventId)) { in _SendPacket() 673 if (EventId < 24) { in _SendPacket() 674 *--pStartPacket = EventId; in _SendPacket() 683 if (EventId > 127) { in _SendPacket() 684 *--pStartPacket = (EventId >> 7); in _SendPacket() 685 *--pStartPacket = EventId | 0x80; in _SendPacket() 687 *--pStartPacket = EventId; in _SendPacket() [all …]
|