1# Microchip XEC UART configuration options
2
3# Copyright (c) 2021 Microchip Technology Inc.
4# SPDX-License-Identifier: Apache-2.0
5
6config UART_XEC
7	bool "Microchip XEC family UART driver"
8	default y
9	depends on DT_HAS_MICROCHIP_XEC_UART_ENABLED
10	select SERIAL_HAS_DRIVER
11	select SERIAL_SUPPORT_INTERRUPT
12	help
13	  This option enables the UARTx driver for Microchip XEC MCUs.
14
15if UART_XEC
16
17config UART_XEC_LINE_CTRL
18	bool "Serial Line Control for Apps"
19	depends on UART_LINE_CTRL
20	help
21	  This enables the API for apps to control the serial line,
22	  such as CTS and RTS.
23
24	  Says n if not sure.
25
26endif # UART_XEC
27