1.2.5.61 ADP_NON_VOLATILE_DATA_IND_CALLBACK Typedef

C

typedef void (*ADP_NON_VOLATILE_DATA_IND_CALLBACK)(ADP_NON_VOLATILE_DATA_IND_PARAMS* pNonVolatileDataInd);

Summary

Pointer to a Non-Volatile Data Indication Event handler function.

Description

This data type defines the required function signature for the ADP Non-Volatile Data Indication event handling callback function. The ADP Non-Volatile Data Indication primitive allows the next higher layer to be notified when non-volatile stored data must be updated to be able to restore it after a reset or power cycle of the device. A client must register a pointer using the event handling function whose function signature (parameter and return value types) matches the types specified by this function pointer in order to receive Non-Volatile Data Indication events back from module.

Returns

None.

Example

App_NonVolatileDataIndication(ADP_NON_VOLATILE_DATA_IND_PARAMS *params)
{
    // Store non-volatile data
}

Remarks

None.