Event functions are called by MyComponent to record events for the MDK Debugger.
More...
During operation, the software component calls the following event functions that record event data in a memory buffer using the Event Recorder. This memory buffer is read by the MDK Debugger to show the events.
For more information, refer to the Event Recorder documentation.
void EvrMyCo_InitEntry |
( |
void |
| ) |
|
This event is generated by the API function MyComp_initialize on start of the MyComponent initialization.
void EvrMyCo_InitStatus |
( |
uint32_t |
status | ) |
|
- Parameters
-
status | execution status value |
This event is generated by the API function MyComp_initialize when the initialization completed.
void EvrMyCo_SendNoData |
( |
void |
| ) |
|
This event is generated by the API function MyComp_send to indicate a missing *str pointer.
void EvrMyCo_SendComplete |
( |
uint32_t |
size | ) |
|
- Parameters
-
size | number of bytes transferred |
This event is generated by the API function MyComp_send when the send operation completed.
void EvrMyCo_SendFailed |
( |
void |
| ) |
|
This event is generated by the API function MyComp_send when the send operation failed.
void EvrMyCo_ReceiveNoData |
( |
void |
| ) |
|
This event is generated by the API function MyComp_receive to indicate a missing *str pointer.
void EvrMyCo_ReceiveComplete |
( |
uint32_t |
size | ) |
|
- Parameters
-
size | number of bytes transferred |
This event is generated by the API function MyComp_receive when the receive operation completed.
void EvrMyCo_ReceiveFailed |
( |
void |
| ) |
|
This event is generated by the API function MyComp_receive when the receive operation failed.