mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-31 14:45:48 +00:00
As not all drivers support interrupts we don't have a means to know if we can allow UART_INTERRUPT_DRIVEN to be enabled and thus various Kconfig options that select UART_INTERRUPT_DRIVEN. Some drivers have a interrupts, however not all do. So introduce a Kconfig option to let us know what the driver actually supports. Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
10 lines
251 B
Plaintext
10 lines
251 B
Plaintext
menuconfig UART_CC32XX
|
|
depends on SOC_SERIES_CC32XX
|
|
bool "CC32XX UART driver"
|
|
default n
|
|
select SERIAL_HAS_DRIVER
|
|
select SERIAL_SUPPORT_INTERRUPT
|
|
depends on SOC_FAMILY_TISIMPLELINK
|
|
help
|
|
This option enables the CC32XX UART driver, for UART_0.
|