2017-01-27 11:00:31 -05:00
|
|
|
menu "Example Configuration"
|
|
|
|
|
2020-04-22 10:46:23 -04:00
|
|
|
config EXAMPLE_TOUCH_WAKEUP
|
2019-01-25 11:10:53 -05:00
|
|
|
bool "Enable touch wake up"
|
|
|
|
default y
|
2021-01-16 00:53:43 -05:00
|
|
|
depends on !IDF_TARGET_ESP32C3
|
2019-01-25 11:10:53 -05:00
|
|
|
help
|
|
|
|
This option enables wake up from deep sleep using touch pads
|
|
|
|
TOUCH8 and TOUCH9, which correspond to GPIO33 and GPIO32.
|
2017-01-27 11:00:31 -05:00
|
|
|
|
2020-04-22 10:46:23 -04:00
|
|
|
config EXAMPLE_ULP_TEMPERATURE_WAKEUP
|
2019-01-25 11:10:53 -05:00
|
|
|
bool "Enable temperature monitoring by ULP"
|
|
|
|
default y
|
2021-01-16 00:53:43 -05:00
|
|
|
depends on IDF_TARGET_ESP32
|
2019-01-25 11:10:53 -05:00
|
|
|
help
|
|
|
|
This option enables wake up from deep sleep using ULP.
|
|
|
|
ULP program monitors the on-chip temperature sensor and
|
|
|
|
wakes up the chip when the temperature goes outside of
|
|
|
|
the window defined by the initial temperature and a threshold
|
|
|
|
around it.
|
2017-01-27 11:00:31 -05:00
|
|
|
|
2020-04-22 10:46:23 -04:00
|
|
|
config EXAMPLE_EXT1_WAKEUP
|
|
|
|
bool "Enable wakeup from GPIO"
|
|
|
|
default y
|
2021-10-26 23:56:56 -04:00
|
|
|
depends on !SOC_GPIO_SUPPORT_DEEPSLEEP_WAKEUP
|
2020-04-22 10:46:23 -04:00
|
|
|
help
|
|
|
|
This option enables wake up from deep sleep from GPIO2 and GPIO4. They 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.
|
|
|
|
|
2021-02-05 04:10:44 -05:00
|
|
|
config EXAMPLE_GPIO_WAKEUP
|
|
|
|
bool "Enable wakeup from GPIO"
|
|
|
|
default y
|
2021-10-26 23:56:56 -04:00
|
|
|
depends on SOC_GPIO_SUPPORT_DEEPSLEEP_WAKEUP
|
2021-02-05 04:10:44 -05:00
|
|
|
help
|
2021-12-30 07:31:38 -05:00
|
|
|
This option enables wake up from GPIO. Be aware that if you use low level to trigger wakeup, we strongly
|
|
|
|
recommand you to connect external pull-up resistance.
|
2021-02-05 04:10:44 -05:00
|
|
|
|
|
|
|
menu "GPIO wakeup configuration"
|
2021-10-26 23:56:56 -04:00
|
|
|
visible if SOC_GPIO_SUPPORT_DEEPSLEEP_WAKEUP
|
2021-02-05 04:10:44 -05:00
|
|
|
|
|
|
|
config EXAMPLE_GPIO_WAKEUP_PIN
|
|
|
|
int "Enable wakeup from GPIO"
|
2021-12-30 07:31:38 -05:00
|
|
|
default 0 if !IDF_TARGET_ESP32H2_BETA_VERSION_2
|
|
|
|
default 7 if IDF_TARGET_ESP32H2_BETA_VERSION_2
|
|
|
|
range 0 5 if !IDF_TARGET_ESP32H2_BETA_VERSION_2
|
|
|
|
range 7 12 if IDF_TARGET_ESP32H2_BETA_VERSION_2
|
2021-02-05 04:10:44 -05:00
|
|
|
|
|
|
|
config EXAMPLE_GPIO_WAKEUP_HIGH_LEVEL
|
|
|
|
bool "Enable GPIO high-level wakeup"
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
This option set the gpio wake-up trigger signal, In deep sleep, only high or low level wake-up is
|
|
|
|
supported. If this option is enabled, it is a high level wake up, otherwise it is a low level wake up.
|
|
|
|
endmenu
|
|
|
|
|
2020-04-22 10:46:23 -04:00
|
|
|
endmenu
|