File tree Expand file tree Collapse file tree 6 files changed +8
-7
lines changed
app_update/test_apps/test_app_update Expand file tree Collapse file tree 6 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 1- | Supported Targets | ESP32 | ESP32-C2 | ESP32-C3 | ESP32-C5 | ESP32-C6 | ESP32-H2 | ESP32-P4 | ESP32-S2 | ESP32-S3 |
2- | ----------------- | ----- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- |
1+ | Supported Targets | ESP32 | ESP32-C2 | ESP32-C3 | ESP32-C5 | ESP32-C6 | ESP32-C61 | ESP32- H2 | ESP32-P4 | ESP32-S2 | ESP32-S3 |
2+ | ----------------- | ----- | -------- | -------- | -------- | -------- | --------- | -------- | -------- | -------- | -------- |
Original file line number Diff line number Diff line change @@ -751,7 +751,7 @@ void IRAM_ATTR call_start_cpu0(void)
751751#endif
752752#endif
753753
754- #if SOC_DEEP_SLEEP_SUPPORTED //TODO: IDF-9245
754+ #if SOC_DEEP_SLEEP_SUPPORTED
755755 // Need to unhold the IOs that were hold right before entering deep sleep, which are used as wakeup pins
756756 if (rst_reas [0 ] == RESET_REASON_CORE_DEEP_SLEEP ) {
757757 esp_deep_sleep_wakeup_io_reset ();
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ void IRAM_ATTR modem_clock_hal_set_clock_domain_icg_bitmap(modem_clock_hal_conte
5959 }
6060}
6161
62- uint32_t modem_clock_hal_get_clock_domain_icg_bitmap (modem_clock_hal_context_t * hal , modem_clock_domain_t domain )
62+ uint32_t IRAM_ATTR modem_clock_hal_get_clock_domain_icg_bitmap (modem_clock_hal_context_t * hal , modem_clock_domain_t domain )
6363{
6464 HAL_ASSERT (domain < MODEM_CLOCK_DOMAIN_MAX );
6565 uint32_t bitmap = 0 ;
Original file line number Diff line number Diff line change 180180#define SOC_GPIO_OUT_RANGE_MAX 21
181181
182182// GPIO0~6 on ESP32C61 can support chip deep sleep wakeup
183- #define SOC_GPIO_SUPPORT_DEEPSLEEP_WAKEUP (1) //TODO: IDF-9245
183+ #define SOC_GPIO_SUPPORT_DEEPSLEEP_WAKEUP (1)
184184#define SOC_GPIO_DEEP_SLEEP_WAKE_VALID_GPIO_MASK (0ULL | BIT0 | BIT1 | BIT2 | BIT3 | BIT4 | BIT5 | BIT6)
185185#define SOC_GPIO_DEEP_SLEEP_WAKE_SUPPORTED_PIN_CNT (7)
186186
Original file line number Diff line number Diff line change @@ -32,9 +32,9 @@ examples/system/deep_sleep:
3232
3333examples/system/deep_sleep_wake_stub :
3434 disable :
35- - if : IDF_TARGET in ["esp32c2", "esp32p4", "esp32c61"]
35+ - if : ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB != 1
3636 temporary : true
37- reason : target(s) is not supported yet # TODO: [esp32c61] IDF-9245
37+ reason : target(s) is not supported yet
3838
3939examples/system/efuse :
4040 enable :
Original file line number Diff line number Diff line change 2020 pytest .mark .esp32c3 ,
2121 pytest .mark .esp32c5 ,
2222 pytest .mark .esp32c6 ,
23+ pytest .mark .esp32c61 ,
2324 pytest .mark .esp32h2 ,
2425 pytest .mark .esp32p4 ,
2526 pytest .mark .esp32c2 ,
You can’t perform that action at this time.
0 commit comments