bugfix(brownout): fix issue that no wait cycle on c3 and c2

This commit is contained in:
C.S.M
2024-05-11 15:27:34 +08:00
parent 8054d82ea1
commit 46b19b8526
2 changed files with 2 additions and 2 deletions

View File

@@ -83,7 +83,7 @@ static inline void brownout_ll_bod_enable(bool bod_enable)
*/ */
static inline void brownout_ll_set_intr_wait_cycles(uint8_t cycle) static inline void brownout_ll_set_intr_wait_cycles(uint8_t cycle)
{ {
// Not supported on ESP32C2 RTCCNTL.brown_out.int_wait = cycle;
} }
/** /**

View File

@@ -83,7 +83,7 @@ static inline void brownout_ll_bod_enable(bool bod_enable)
*/ */
static inline void brownout_ll_set_intr_wait_cycles(uint8_t cycle) static inline void brownout_ll_set_intr_wait_cycles(uint8_t cycle)
{ {
// Not supported on ESP32C3 RTCCNTL.brown_out.int_wait = cycle;
} }
/** /**