2.109.1 SENTx_Deinitialize Function
C
/* x refers to the instance number */
void SENTx_Deinitialize(void)
Summary
De-initializes the SENTx peripheral of the device.
Description
This function deinitializes the SENTx Peripheral Library (PLIB) of the device, returning the SENTx peripheral to its default reset state. After calling this function, the SENTx peripheral will no longer be operational, and any subsequent SENTx operations will fail until re-initialization using the SENTx_Initialize API.
Precondition
The SENTx peripheral must have been initialized using the SENTx_Initialize API. This function should be called when the SENTx peripheral is no longer required to release resources and ensure proper reset behavior.
Parameters
None.
Returns
None.
Example
SENTx_Initialize(); SENTx_Enable(); /* Perform SENT operations here */ SENTx_Deinitialize();
Remarks
None.