2.109.11 SENTx_ReceiveStatusGet Function
C
/* x refers to the instance number */
SENT_RECEIVE_STATUS SENTx_ReceiveStatusGet(void)
Summary
Retrieves the current receive status of the SENT peripheral when it acts as a receiver.
Description
The function indicates the current status of the data reception process. This status can provide information about whether data has been successfully received, if there are any errors, or if the reception is still in progress.
Precondition
None.
Parameters
None.
Returns
Returns the SENTx module reception status SENT_RECEIVE_STATUS Enum
Example
struct SENT_DATA_RECEIVE data; SENT_RECEIVE_STATUS status; SENT1_Initialize(); data = SENT1_Receive(data); while(!SENT1_IsDataReceived()); SENT1_RECEIVE_STATUS status = SENT1_ReceiveStatusGet();
Remarks
None.