drivers: esp32: Add minimal UART driver based on ROM routines
This is a minimal driver enabling console output during the port bringup. While the driver works, only one of the three UART devices are supported, and there isn't any way to change any parameters or use interrupts. This will most likely be superceded by a proper driver after the port has matured. Signed-off-by: Leandro Pereira <leandro.pereira@intel.com>
This commit is contained in:
parent
c13174935b
commit
37ea77173c
7 changed files with 82 additions and 1 deletions
7
drivers/serial/Kconfig.esp32
Normal file
7
drivers/serial/Kconfig.esp32
Normal file
|
@ -0,0 +1,7 @@
|
|||
menuconfig UART_ESP32
|
||||
bool "ESP32 UART driver"
|
||||
default n
|
||||
select SERIAL_HAS_DRIVER
|
||||
help
|
||||
Enable the ESP32 UART using ROM routines.
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue