Merge branch 'feature/s3_ulp_support_v4.4' into 'release/v4.4'

ulp: Added ULP support for  esp32s3 (v4.4)

See merge request espressif/esp-idf!18621
This commit is contained in:
Jiang Jiang Jian
2022-07-01 10:51:18 +08:00
62 changed files with 2841 additions and 2575 deletions

View File

@@ -1,5 +1,5 @@
| Supported Targets | ESP32 | ESP32-S2 | ESP32-C3 |
| ----------------- | ----- | -------- | -------- |
| Supported Targets | ESP32 | ESP32-S2 | ESP32-S3 | ESP32-C3 |
| ----------------- | ----- | -------- | -------- | -------- |
# Deep Sleep Example

View File

@@ -24,6 +24,10 @@
#if CONFIG_IDF_TARGET_ESP32
#include "esp32/ulp.h"
#elif CONFIG_IDF_TARGET_ESP32S2
#include "esp32s2/ulp.h"
#elif CONFIG_IDF_TARGET_ESP32S3
#include "esp32s3/ulp.h"
#endif
#if SOC_TOUCH_SENSOR_NUM > 0