d5aa5c2a77
In order to have Espressif SoCs working with the same uart drivers, all low level functions are now replaced to hal_espressif HAL calls. This also changes pinmux, gpio and uart init order to meet its dependencies. Signed-off-by: Sylvio Alves <sylvio.alves@espressif.com>
15 lines
346 B
Plaintext
15 lines
346 B
Plaintext
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
DT_COMPAT_ESP32_UART := espressif,esp32-uart
|
|
|
|
config UART_ESP32
|
|
bool "ESP32 UART driver"
|
|
default $(dt_compat_enabled,$(DT_COMPAT_ESP32_UART))
|
|
select SERIAL_HAS_DRIVER
|
|
select SERIAL_SUPPORT_INTERRUPT
|
|
select GPIO_ESP32
|
|
depends on SOC_ESP32 || SOC_ESP32S2 || SOC_ESP32C3
|
|
help
|
|
Enable the ESP32 UART.
|