1.26.6.8 1.27.9.8 1.28.10.8 1.34.7.8 1.41.8.8 1.42.6.8 MCANx_TxEventFifoRead Function
C
bool MCANx_TxEventFifoRead(uint8_t numberOfTxEvent, MCAN_TX_EVENT_FIFO *txEventFifo) // x - Instance of the MCAN peripheral
Summary
Read Tx Event FIFO for the transmitted messages.
Description
This routine reads Tx Event FIFO for the transmitted messages.
Precondition
MCANx_Initialize has been called.
Parameters
Param | Description |
---|---|
numberOfTxEvent | Total number of Tx Event |
txEventFifo | Pointer to Tx Event FIFO |
Returns
Request status. true - Request was successful.
false - Request has failed.
Example
MCAN_TX_EVENT_FIFO txEventFifo; // Read 1 Tx Event FIFO Element MCAN0_TxEventFifoRead(1, &txEventFifo);
Remarks
None.