PM_AppendPostSleepCallback


C Specification

#include <nitro/spi.h>

void PM_AppendPostSleepCallback( PMSleepCallbackInfo* info );

Description

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().

Arguments

info Pointer to the structure that includes the information of the added callback

Return Values

None

See Also

PM_Init, PM_GoSleepMode, PM_AppendPreSleepCallback, PM_PrependPreSleepCallback, PM_AppendPostSleepCallback, PM_PrependPostSleepCallback, PM_DeletePreSleepCallback, PM_DeletePostSleepCallback, PM_SetSleepCallback

Revision History

10/06/2004 Initial version