mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-08 08:47:20 +00:00
This patch ifdef's out information that would be redefined by information generated from DTS. This patch also fixes up the serial drives to work properly with the DTS generated information. Change-Id: I912ccf35be23c107705a4866e5a68b3b51154ffa Signed-off-by: Andy Gross <andy.gross@linaro.org>
30 lines
649 B
Plaintext
30 lines
649 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.
|
|
|
|
if !HAS_DTS
|
|
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.
|
|
|
|
endif # !HAS_DTS
|