Defines functions for using the WICED Sleep Framework.
More...
Defines functions for using the WICED Sleep Framework.
#define WICED_SLEEP_WAKE_SOURCE_KEYSCAN (1<<0) |
Wake sources.
Enable wake from keyscan
#define WICED_SLEEP_WAKE_SOURCE_MASK |
Value:
#define WICED_SLEEP_WAKE_SOURCE_GPIO
Enable wake from GPIO.
Definition: wiced_sleep.h:54
#define WICED_SLEEP_WAKE_SOURCE_QUAD
Enable wake from quadrature sensor.
Definition: wiced_sleep.h:53
#define WICED_SLEEP_WAKE_SOURCE_KEYSCAN
Wake sources.
Definition: wiced_sleep.h:52
All wake sources.
Application implements call back of this type to allow or disallow the chip to go to sleep.
- Parameters
-
- Returns
- if type == WICED_SLEEP_POLL_TIME_TO_SLEEP, application should return the maximum time allowed to sleep in micro seconds. WICED_SLEEP_MAX_TIME_TO_SLEEP allows the Firmware to determine the duration it can sleep. Note: When allowing SDS sleep, always return WICED_SLEEP_MAX_TIME_TO_SLEEP. if type == WICED_SLEEP_POLL_SLEEP_PERMISSION, application should return one of the values in wiced_sleep_permission_type_t
Boot mode.
Enumerator |
---|
WICED_SLEEP_COLD_BOOT |
Cold boot.
|
WICED_SLEEP_FAST_BOOT |
Fast boot.
|
Sleep modes.
Enumerator |
---|
WICED_SLEEP_MODE_NO_TRANSPORT |
Used for HID use cases.
When a transport is connected, sleep is always disallowed
|
WICED_SLEEP_MODE_TRANSPORT |
This mode allows sleep when transport is connected and uses device wake line to wake up.
|
Sleep permission Note: SHUTDOWN mode sleep puts the chip in the lowest power saving sleep mode.
This turns off most hardware including parts of SRAM. Hence, if the application requires to preserve some context data for it to resume normal operation after wake up, app should store this context data in Always On Memory (the part that is not turned off). This is done by declaring the context variable with the attribute attribute ((section(".data_in_retention_ram"))). The memory in AON available is limited, the maximum that application can use are 256 bytes. When mode WICED_SLEEP_ALLOWED_WITH_SHUTDOWN is selected, the FW puts the chip in Shutdown sleep mode if that is possible, else the chip will be put in a non-shutdown sleep mode. To prevent FW from attempting to put the chip in Shutdown sleep mode, select WICED_SLEEP_ALLOWED_WITHOUT_SHUTDOWN.
Enumerator |
---|
WICED_SLEEP_NOT_ALLOWED |
Sleep is not allowed.
|
WICED_SLEEP_ALLOWED_WITHOUT_SHUTDOWN |
Sleep is allowed, but shutdown mode sleep is not allowed.
|
WICED_SLEEP_ALLOWED_WITH_SHUTDOWN |
Slepp allowed, including shutdown mode sleep.
|
Sleep poll type.
Enumerator |
---|
WICED_SLEEP_POLL_TIME_TO_SLEEP |
Polling for maximum allowed sleep duration.
|
WICED_SLEEP_POLL_SLEEP_PERMISSION |
Polling for permission to sleep.
|
Active interrupt level for Wake through GPIO.
Enumerator |
---|
WICED_SLEEP_WAKE_ACTIVE_LOW |
Active low interrupt wakes the chip.
|
WICED_SLEEP_WAKE_ACTIVE_HIGH |
Active high interrupt wakes the chip.
|
API to configure sleep mode parameters.
- Parameters
-
- Returns
- WICED_SUCCESS or WICED_ERROR
API to request reboot type.
Returns Cold boot or Warm/Fast boot.
- Returns
- wiced_sleep_boot_type_t