Merge branch 'feature/support_esp32s3_lightsleep' into 'master'

support esp32s3 normal lightsleep

See merge request espressif/esp-idf!14369
This commit is contained in:
Jiang Jiang Jian
2021-07-28 15:09:37 +00:00
6 changed files with 39 additions and 22 deletions

View File

@@ -33,6 +33,9 @@ extern "C" {
#define UART_LL_MIN_WAKEUP_THRESH (2)
#define UART_LL_INTR_MASK (0x7ffff) //All interrupt mask
#define UART_LL_FSM_IDLE (0x0)
#define UART_LL_FSM_TX_WAIT_SEND (0xf)
// Define UART interrupts
typedef enum {
UART_INTR_RXFIFO_FULL = (0x1 << 0),