esp-idf/examples/system/deep_sleep
wuzhenghui ccaae61fee
feat(esp_hw_support): support esp32p4 deepsleep
2024-03-27 13:59:36 +08:00
..
main change(pm/ext1): replace esp_sleep_set_ext1_wakeup_io by esp_sleep_enable_ext1_wakeup_io 2023-11-20 16:04:01 +08:00
CMakeLists.txt tools: Increase the minimal supported CMake version to 3.16 2022-06-01 06:35:02 +00:00
README.md feat(soc): add ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB rom caps 2024-03-27 13:59:36 +08:00
pytest_deep_sleep.py feat(esp_hw_support): support esp32p4 deepsleep 2024-03-27 13:59:36 +08:00
sdkconfig.ci.basic ci: fix invalid kconfig options in system test apps 2023-05-09 11:27:55 +08:00
sdkconfig.ci.esp32_singlecore ci: fix invalid kconfig options in system test apps 2023-05-09 11:27:55 +08:00
sdkconfig.defaults soc: moved kconfig options out of the target component. 2022-04-21 12:09:43 +08:00

README.md

Supported Targets ESP32 ESP32-C2 ESP32-C3 ESP32-C6 ESP32-H2 ESP32-P4 ESP32-S2 ESP32-S3

Deep Sleep Example

(See the README.md file in the upper level 'examples' directory for more information about examples.)

The deep sleep mode is a power saving mode that causes the CPU, majority of RAM, and digital peripherals that are clocked from APB_CLK to be powered off. Deep sleep mode can be exited using one of multiple wake up sources. This example demonstrates how to use the esp_sleep.h API to enter deep sleep mode, then wake up form different sources.

The following wake up sources are demonstrated in this example (refer to the Wakeup Sources documentation for more details regarding wake up sources):

  • Timer: An RTC timer that can be programmed to trigger a wake up after a preset time. This example will trigger a wake up every 20 seconds.
  • EXT0: External wake up 0 can trigger wakeup when one predefined RTC GPIO is at a predefined logic level. This example uses GPIO25 in ESP32 or GPIO3 in ESP32-S2/S3 to trigger a wake up when the pin is HIGH. (This wake up source is only available on ESP32, ESP32-S2, and ESP32-S3.)
  • EXT1: External wake up 1 which is tied to multiple RTC GPIOs. This example uses GPIO2 and GPIO4 to trigger a wake up with any one of the two pins are HIGH. (This wake up source is available on ESP32, ESP32-S2, ESP32-S3, ESP32-C6 and ESP32-H2.)
  • GPIO: Pads powered by VDD3P3_RTC can be used to trigger a wake up from deep sleep. You may choose the pin and trigger level in menuconfig. (This wake up source is unavailable on ESP32, ESP32-S2, ESP32-S3 and ESP32-H2.)
  • Touch: Touch pad sensor interrupt. This example uses touch pads connected to GPIO32, GPIO33 in ESP32 or GPIO9 in ESP32-S2/S3 to trigger a wake up when any of the pads are pressed.

Note: Some wake up sources can be disabled via configuration (see section on project configuration)

Warning: On ESP32, touch wake up source cannot be used together with EXT0 wake up source. If they co-exist, IDF will give a runtime error and the program will crash. By default in this example, touch wake up is enabled, and the other two are disabled. You can switch to enable the other wake up sources via menuconfig.

In this example, the CONFIG_BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP Kconfig option is used, which allows you to reduce the boot time of the bootloader during waking up from deep sleep. The bootloader stores in rtc memory the address of a running partition and uses it when it wakes up. This example allows you to skip all image checks and speed up the boot.

How to use example

Hardware Required

This example should be able to run on any commonly available ESP32 series development board without any extra hardware if only Timer wake up sources is used. However, the following extra connections will be required for the remaining wake up sources.

  • EXT0: Connect GPIO25 in ESP32 or GPIO3 in ESP32-S2/S3 to HIGH to trigger a wake up.

  • EXT1: GPIO2 and GPIO4 should be connected to LOW to avoid floating pins. When triggering a wake up, connect one or both of the pins to HIGH. Note that floating pins may trigger a wake up.

  • GPIO: If EXAMPLE_GPIO_WAKEUP_HIGH_LEVEL is selected in menuconfig, then connect EXAMPLE_GPIO_WAKEUP_PIN to HIGH to trigger a wake up; Otherwise, connect EXAMPLE_GPIO_WAKEUP_PIN to LOW to trigger a wake up.

  • Touch: GPIO32, GPIO33 in ESP32 or GPIO9 in ESP32-S2/S3 should be connected to touch sensors (see Touch Sensor Application Note).

Configure the project

idf.py menuconfig
  • Touch wake up can be enabled/disabled via Example configuration > Enable touch wake up
  • EXT0 wake up can be enabled/disabled via Example configuration > Enable wakeup from GPIO (ext0)
  • EXT1 wake up can be enabled/disabled via Example configuration > Enable wakeup from GPIO (ext1)
  • GPIO wake up can be enabled/disabled via Example configuration > Enable wakeup from GPIO Trigger pin can be chosen via Example configuration > GPIO wakeup configuration > Enable wakeup from GPIO Trigger level can be selected via Example configuration > GPIO wakeup configuration > Enable GPIO high-level wakeup

Wake up sources that are unused or unconnected should be disabled in configuration to prevent inadvertent triggering of wake up as a result of floating pins.

Build and Flash

Build the project and flash it to the board, then run monitor tool to view serial output:

idf.py -p PORT flash monitor

(Replace PORT with the name of the serial port to use.)

(To exit the serial monitor, type Ctrl-].)

See the Getting Started Guide for full steps to configure and use ESP-IDF to build projects.

Example Output

On initial startup, this example will detect that this is the first boot and output the following log:

...
I (304) cpu_start: Starting scheduler on PRO CPU.
I (0) cpu_start: Starting scheduler on APP CPU.
Not a deep sleep reset
Enabling timer wakeup, 20s
Enabling EXT1 wakeup on pins GPIO2, GPIO4
Touch pad #8 average: 2148, wakeup threshold set to 2048.
Touch pad #9 average: 2148, wakeup threshold set to 2048.
Enabling touch pad wakeup
Entering deep sleep

The ESP32 will then enter deep sleep. When a wake up occurs, the ESP32 must undergo the entire boot process again. However the example will detect that this boot is due to a wake up and indicate the wake up source in the output log such as the following:

...
I (304) cpu_start: Starting scheduler on PRO CPU.
I (0) cpu_start: Starting scheduler on APP CPU.
Wake up from timer. Time spent in deep sleep: 20313ms
Initial T=87, latest T=87
Enabling timer wakeup, 20s
Enabling EXT1 wakeup on pins GPIO2, GPIO4
Touch pad #8 average: 2149, wakeup threshold set to 2049.
Touch pad #9 average: 2146, wakeup threshold set to 2046.
Enabling touch pad wakeup
Entering deep sleep