Lines Matching refs:pRxFrame
1660 status_t MCAN_ReadRxBuffer(CAN_Type *base, uint8_t idx, mcan_rx_buffer_frame_t *pRxFrame) in MCAN_ReadRxBuffer() argument
1663 assert(NULL != pRxFrame); in MCAN_ReadRxBuffer()
1666 uint32_t u4PayloadLength = (uint32_t)(pRxFrame->size) + 8U; in MCAN_ReadRxBuffer()
1669 (void)memcpy((void *)pRxFrame, (void *)elementAddress, u4PayloadLength); in MCAN_ReadRxBuffer()
1684 status_t MCAN_ReadRxFifo(CAN_Type *base, uint8_t fifoBlock, mcan_rx_buffer_frame_t *pRxFrame) in MCAN_ReadRxFifo() argument
1688 assert(NULL != pRxFrame); in MCAN_ReadRxFifo()
1714 (void)memcpy(pRxFrame, elementAddress, 8U); in MCAN_ReadRxFifo()
1715 pRxFrame->data = (uint8_t *)((uint32_t)elementAddress + 8U); in MCAN_ReadRxFifo()
1772 status_t MCAN_TransferReceiveBlocking(CAN_Type *base, uint8_t idx, mcan_rx_buffer_frame_t *pRxFrame) in MCAN_TransferReceiveBlocking() argument
1796 status = MCAN_ReadRxBuffer(base, idx, pRxFrame); in MCAN_TransferReceiveBlocking()
1813 …AN_TransferReceiveFifoBlocking(CAN_Type *base, uint8_t fifoBlock, mcan_rx_buffer_frame_t *pRxFrame) in MCAN_TransferReceiveFifoBlocking() argument
1840 status = MCAN_ReadRxFifo(base, fifoBlock, pRxFrame); in MCAN_TransferReceiveFifoBlocking()