Kconfig.projbuild 1.1 KB

12345678910111213141516171819202122232425262728
  1. menu "Example Configuration"
  2. config EXAMPLE_TOUCH_WAKEUP
  3. bool "Enable touch wake up"
  4. default y
  5. help
  6. This option enables wake up from deep sleep using touch pads
  7. TOUCH8 and TOUCH9, which correspond to GPIO33 and GPIO32.
  8. config EXAMPLE_ULP_TEMPERATURE_WAKEUP
  9. bool "Enable temperature monitoring by ULP"
  10. default y
  11. help
  12. This option enables wake up from deep sleep using ULP.
  13. ULP program monitors the on-chip temperature sensor and
  14. wakes up the chip when the temperature goes outside of
  15. the window defined by the initial temperature and a threshold
  16. around it.
  17. config EXAMPLE_EXT1_WAKEUP
  18. bool "Enable wakeup from GPIO"
  19. default y
  20. help
  21. This option enables wake up from deep sleep from GPIO2 and GPIO4. They should be connected to LOW to avoid
  22. floating pins. When triggering a wake up, connect one or both of the pins to HIGH. Note that floating
  23. pins may trigger a wake up.
  24. endmenu