mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-03 00:31:57 +00:00
The ESP32 UART driver can only be used on the ESP32 SoC AFAICT. But it did not have a depend clause so it was polluting the options of other platforms. With this patch the ESP32 driver will no longer be exposed to users of non-ESP32 devices. Signed-off-by: Sebastian Bøe <sebastian.boe@nordicsemi.no>
9 lines
157 B
Plaintext
9 lines
157 B
Plaintext
menuconfig UART_ESP32
|
|
bool "ESP32 UART driver"
|
|
default n
|
|
select SERIAL_HAS_DRIVER
|
|
depends on SOC_ESP32
|
|
help
|
|
Enable the ESP32 UART using ROM routines.
|
|
|