fix(soc): use standard touch wakeup cap name on ESP32-H4

The H4-only spelling was unread, so touch wakeup never compiled in.
This commit is contained in:
Marius Vikhammer
2026-08-26 16:43:53 +08:00
parent 52ea19338a
commit 01582e0f12
3 changed files with 4 additions and 4 deletions

View File

@@ -1131,7 +1131,7 @@ config SOC_PM_SUPPORT_EXT1_WAKEUP_MODE_PER_PIN
bool
default y
config SOC_PM_SUPPORT_TOUCH_WAKEUP
config SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP
bool
default y

View File

@@ -477,7 +477,7 @@
#define SOC_PM_SUPPORT_BT_WAKEUP (1)
#define SOC_PM_SUPPORT_EXT1_WAKEUP (1)
#define SOC_PM_SUPPORT_EXT1_WAKEUP_MODE_PER_PIN (1) /*!<Supports one bit per pin to configure the EXT1 trigger level */
#define SOC_PM_SUPPORT_TOUCH_WAKEUP (1)
#define SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP (1) /*!<Supports waking up from touch pad trigger */
#define SOC_PM_SUPPORT_CPU_PD (1)
#define SOC_PM_SUPPORT_MODEM_PD (1)
#define SOC_PM_SUPPORT_XTAL32K_PD (1)

View File

@@ -1,5 +1,5 @@
| Supported Targets | ESP32 | ESP32-P4 | ESP32-S2 | ESP32-S3 | ESP32-S31 |
| ----------------- | ----- | -------- | -------- | -------- | --------- |
| Supported Targets | ESP32 | ESP32-H4 | ESP32-P4 | ESP32-S2 | ESP32-S3 | ESP32-S31 |
| ----------------- | ----- | -------- | -------- | -------- | -------- | --------- |
# Touch Sensor Sleep Wake up Example