kopia lustrzana https://github.com/espressif/esp-idf
uart: fixed reset logic on ESP32-S3
rodzic
d4334cc109
commit
b6887416d4
|
@ -55,6 +55,18 @@ typedef enum {
|
||||||
UART_INTR_WAKEUP = (0x1 << 19),
|
UART_INTR_WAKEUP = (0x1 << 19),
|
||||||
} uart_intr_t;
|
} uart_intr_t;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Configure the UART core reset.
|
||||||
|
*
|
||||||
|
* @param hw Beginning address of the peripheral registers.
|
||||||
|
* @param core_rst_en True to enable the core reset, otherwise set it false.
|
||||||
|
*
|
||||||
|
* @return None.
|
||||||
|
*/
|
||||||
|
static inline void uart_ll_set_reset_core(uart_dev_t *hw, bool core_rst_en)
|
||||||
|
{
|
||||||
|
hw->clk_conf.rst_core = core_rst_en;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Set the UART source clock.
|
* @brief Set the UART source clock.
|
||||||
|
|
|
@ -695,6 +695,10 @@ config SOC_UART_SUPPORT_XTAL_CLK
|
||||||
bool
|
bool
|
||||||
default y
|
default y
|
||||||
|
|
||||||
|
config SOC_UART_REQUIRE_CORE_RESET
|
||||||
|
bool
|
||||||
|
default y
|
||||||
|
|
||||||
config SOC_USB_PERIPH_NUM
|
config SOC_USB_PERIPH_NUM
|
||||||
bool
|
bool
|
||||||
default y
|
default y
|
||||||
|
|
|
@ -273,6 +273,7 @@
|
||||||
#define SOC_UART_SUPPORT_WAKEUP_INT (1) /*!< Support UART wakeup interrupt */
|
#define SOC_UART_SUPPORT_WAKEUP_INT (1) /*!< Support UART wakeup interrupt */
|
||||||
#define SOC_UART_SUPPORT_RTC_CLK (1) /*!< Support RTC clock as the clock source */
|
#define SOC_UART_SUPPORT_RTC_CLK (1) /*!< Support RTC clock as the clock source */
|
||||||
#define SOC_UART_SUPPORT_XTAL_CLK (1) /*!< Support XTAL clock as the clock source */
|
#define SOC_UART_SUPPORT_XTAL_CLK (1) /*!< Support XTAL clock as the clock source */
|
||||||
|
#define SOC_UART_REQUIRE_CORE_RESET (1)
|
||||||
|
|
||||||
/*-------------------------- USB CAPS ----------------------------------------*/
|
/*-------------------------- USB CAPS ----------------------------------------*/
|
||||||
#define SOC_USB_PERIPH_NUM 1
|
#define SOC_USB_PERIPH_NUM 1
|
||||||
|
|
Ładowanie…
Reference in New Issue