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	select PINCTRL
13	help
14	  This option enables the UARTx driver for Microchip XEC MCUs.
15
16if UART_XEC
17
18config UART_XEC_LINE_CTRL
19	bool "Serial Line Control for Apps"
20	depends on UART_LINE_CTRL
21	help
22	  This enables the API for apps to control the serial line,
23	  such as CTS and RTS.
24
25	  Says n if not sure.
26
27endif # UART_XEC
28