2.109.8 SENTx_Receive Function

C

/* x refers to the instance number */

SENT_DATA_RECEIVE SENTx_Receive(void)	

Summary

Reads the received data from transmitter when SENT peripheral acts as a receiver.

Description

This function is responsible for receiving data transmitted for the specified SENT instance. The function will handle the reception process and return the received data.

Precondition

The SENTx peripheral must have been initialized using the SENTx_Initialize API. The peripheral should be enabled using the SENTx_Enable() API.

Parameters

None.

Returns

SENT_DATA_RECEIVE Struct- Received data structure

Example

SENT1_Initialize();
while(SENT1_IsDataReceived());
struct SENT_DATA_RECEIVE sentData = SENT1_Receive(void);

Remarks

None.