1.11.3.11 1.12.3.11 1.24.4.11 CANx_TransmitEventFIFOElementGet Function
C
bool CANx_TransmitEventFIFOElementGet(uint32_t *id, uint32_t *sequence, uint32_t *timestamp) // x - Instance of the CAN peripheral
Summary
Get the Transmit Event FIFO Element for the transmitted message.
Description
This routine gets the Transmit Event FIFO Element for the transmitted message.
Precondition
CANx_Initialize must have been called for the associated CAN instance.
Parameters
Param | Description |
---|---|
id | Pointer to 11-bit / 29-bit identifier (ID) to be received. |
sequence | Pointer to Tx message sequence number to be received |
timestamp | Pointer to Tx message timestamp to be received, timestamp value is 0 if Timestamp is disabled in CFD${CAN_INSTANCE_NUM}TSCON |
Returns
Request status. true - Request was successful.
false - Request has failed.
Example
uint32_t id, sequence, timestamp; if (CAN1_TransmitEventFIFOElementGet(&id, &sequence, ×tamp)) { // Received id, sequence and timestamp on request success }
Remarks
None.