1.32.27.10 SUPC_BOD33_CALLBACK Typedef
C
typedef void (*SUPC_BOD33_CALLBACK)( uintptr_t context );
Summary
Defines the data type and function signature for the SUPC peripheral callback function.
Description
This data type defines the function signature for the SUPC peripheral callback function. The SUPC peripheral library will call back the client's function with this signature when a Brown Out event has been detected. The function will be called only if the BOD33 action in the NVM user row is set to interrupt.
Remarks
SUPC_Initialize() must have been called for the supc peripheral before registering a callback. SUPC_BOD33CallbackRegister() must have been called to set the function to be called.
Parameters
Param | Description |
---|---|
context | Allows the caller to provide a context value (usually a pointer to the callers context for multi-instance clients). |
Returns
None.
Example
void APP_BrownOutEventHandler( uintptr_t context ) { // Code to perform any quick action before the supply dies. } SUPC_BOD33CallbackRegister(APP_BrownOutEventHandler, 0);
Remarks
None.