zephyr/drivers/serial/Kconfig.cc32xx
Gil Pitney e8b43cbc81 cc3200: Add a UART driver (polled and interrupt modes)
The pinmux configuration is done during board initialization.

This was validated using the following Zephyr apps:
- samples/hello_world
- samples/philosophers
- samples/drivers/uart
- samples/shell

UARTA0 is currently supported.

Change-Id: I85727c622d4d42183cc9f2f8b43d653e245dd17e
Signed-off-by: Gil Pitney <gil.pitney@linaro.org>
2016-11-04 14:53:33 +00:00

27 lines
619 B
Plaintext

menuconfig UART_CC32XX
depends on SOC_SERIES_CC32XX
bool "CC32XX UART driver"
default n
select SERIAL_HAS_DRIVER
depends on SOC_FAMILY_TISIMPLELINK
help
This option enables the CC32XX UART driver, for UART_0.
config UART_CC32XX_NAME
string "Device Name for CC32XX UART"
default "UART_0"
depends on UART_CC32XX
help
This is the UART's device name binding.
config UART_CC32XX_IRQ_PRI
depends on UART_CC32XX
int "IRQ priority from UART controller"
config UART_CC32XX_BAUDRATE
depends on UART_CC32XX
int "UART_0 baud rate"
default 115200
help
This option sets the baud rate for the CC32XX UART.