fix(esp_coex): add support_coexistence soc_caps for esp32c2

This commit is contained in:
linruihao
2024-01-29 19:41:07 +08:00
parent 2ed1e79d9a
commit 99237104ba
2 changed files with 7 additions and 0 deletions

View File

@@ -527,6 +527,10 @@ config SOC_UART_SUPPORT_FSM_TX_WAIT_SEND
bool
default y
config SOC_SUPPORT_COEXISTENCE
bool
default y
config SOC_COEX_HW_PTI
bool
default y

View File

@@ -259,6 +259,9 @@
// UART has an extra TX_WAIT_SEND state when the FIFO is not empty and XOFF is enabled
#define SOC_UART_SUPPORT_FSM_TX_WAIT_SEND (1)
/*-------------------------- COEXISTENCE CAPS -------------------------------*/
#define SOC_SUPPORT_COEXISTENCE (1)
/*-------------------------- COEXISTENCE HARDWARE PTI CAPS -------------------------------*/
#define SOC_COEX_HW_PTI (1)