/TraceRecorderSource-3.4.0/include/ |
D | trcEvent.h | 103 #define TRC_EVENT_ADD_POINTER(xEventHandle, value) \ argument 105 …)(xEventHandle))->pvBlob)[((TraceEventData_t*)(xEventHandle))->offset / sizeof(void*)] = (value), \ 113 #define TRC_EVENT_ADD_UNSIGNED_BASE_TYPE(xEventHandle, value) \ argument 115 …pvBlob)[((TraceEventData_t*)(xEventHandle))->offset / sizeof(TraceUnsignedBaseType_t)] = (value), \ 123 #define TRC_EVENT_ADD_32(xEventHandle, value) \ argument 125 …EventHandle))->pvBlob)[((TraceEventData_t*)(xEventHandle))->offset / sizeof(uint32_t)] = (value), \ 133 #define TRC_EVENT_ADD_16(xEventHandle, value) \ argument 135 …EventHandle))->pvBlob)[((TraceEventData_t*)(xEventHandle))->offset / sizeof(uint16_t)] = (value), \ 143 #define TRC_EVENT_ADD_8(xEventHandle, value) \ argument 145 …xEventHandle))->pvBlob)[((TraceEventData_t*)(xEventHandle))->offset / sizeof(uint8_t)] = (value), \ [all …]
|
D | trcRecorder.h | 333 #define TRACE_GET_LOW16(value) ((uint16_t)((value) & 0x0000FFFF)) argument 340 #define TRACE_GET_HIGH16(value) ((uint16_t)(((value) >> 16) & 0x0000FFFF)) argument 348 #define TRACE_SET_LOW16(current, value) (((current) & 0xFFFF0000) | (value)) argument 356 #define TRACE_SET_HIGH16(current, value) (((current) & 0x0000FFFF) | (((uint32_t)(value)) << 16)) argument 1001 void prvTraceSetPriorityProperty(uint8_t objectclass, traceHandle id, uint8_t value); 1020 void prvTraceSetObjectState(uint8_t objectclass, traceHandle id, uint8_t value);
|
/TraceRecorderSource-3.4.0/ |
D | Doxyfile | 11 # TAG = value [value, ...] 13 # TAG += value [value, ...] 25 # The default value is: UTF-8. 33 # The default value is: My Project. 69 # The default value is: NO. 77 # The default value is: NO. 92 # The default value is: English. 100 # The default value is: None. 107 # The default value is: YES. 116 # The default value is: YES. [all …]
|
D | trcEvent.c | 391 traceResult xTraceEventAdd32(TraceEventHandle_t xEventHandle, uint32_t value) in xTraceEventAdd32() argument 406 return TRC_EVENT_ADD_32(xEventHandle, value); in xTraceEventAdd32() 409 traceResult xTraceEventAdd16(TraceEventHandle_t xEventHandle, uint16_t value) in xTraceEventAdd16() argument 424 return TRC_EVENT_ADD_16(xEventHandle, value); in xTraceEventAdd16() 427 traceResult xTraceEventAdd8(TraceEventHandle_t xEventHandle, uint8_t value) in xTraceEventAdd8() argument 438 return TRC_EVENT_ADD_8(xEventHandle, value); in xTraceEventAdd8()
|
D | trcSnapshotRecorder.c | 819 static uint8_t writeInt8(void * buffer, uint8_t i, uint8_t value) in writeInt8() argument 828 ((uint8_t*)buffer)[i] = value; in writeInt8() 840 static uint8_t writeInt16(void * buffer, uint8_t i, uint16_t value) in writeInt16() argument 861 ((uint16_t*)buffer)[i/2] = value; in writeInt16() 868 static uint8_t writeInt32(void * buffer, uint8_t i, uint32_t value) in writeInt32() argument 889 ((uint32_t*)buffer)[i/4] = value; in writeInt32() 896 static uint8_t writeFloat(void * buffer, uint8_t i, float value) in writeFloat() argument 917 ((float*)buffer)[i/4] = value; in writeFloat() 924 static uint8_t writeDouble(void * buffer, uint8_t i, double value) in writeDouble() argument 927 uint32_t * src = (uint32_t*)&value; in writeDouble() [all …]
|
/TraceRecorderSource-3.4.0/config/ |
D | Kconfig | 298 however a threshold value that must be measured for your specific setup. 311 Macro that states wether the recorder data should have an initial value. 316 then later be overwritten by the initialization value. 370 Default value is 1000, which means that 4000 bytes is allocated for the 394 objects you set this to a very low value. The minimum recommended value is 4. 404 allocation events (malloc/free). This value should be 1 if the heap size is 546 If this value is too small, not all symbol names will be stored and the
|
/TraceRecorderSource-3.4.0/streamports/TCPIP/ |
D | Readme-Streamport.txt | 39 - If the tracing suddenly stops, check the "errno" value in trcSocketSend (trcStreamingPort.c).
|
/TraceRecorderSource-3.4.0/streamports/STM32_USB_CDC/ |
D | Readme-Streamport.txt | 30 - Under Configuration -> Parameter Settings, set the TX and RX buffer sizes to a small value (e.g. …
|
/TraceRecorderSource-3.4.0/kernelports/FreeRTOS/include/ |
D | trcKernelPort.h | 586 void prvTraceSetEventGroupNumberHigh16(void* handle, uint16_t value);
|