#include <nitro/spi.h>
void PM_AppendPostSleepCallback( PMSleepCallbackInfo* info );
Registers callback when returning from sleep mode. Registered at the top of the callback list.
This function allows you to register multiple callbacks. Each callback is defined by the void type function that gets one void* type argument as:
typedef void (*PMSleepCallback)( void* );
For more information, please refer to PM_AppendPreSleepCallback().
info |
Pointer to the structure that includes the information of the added callback |
None
PM_Init, PM_GoSleepMode, PM_AppendPreSleepCallback, PM_PrependPreSleepCallback, PM_AppendPostSleepCallback, PM_PrependPostSleepCallback, PM_DeletePreSleepCallback, PM_DeletePostSleepCallback, PM_SetSleepCallback
10/06/2004 Initial version