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