1# Microchip MEC5 UART 2 3# Copyright (c) 2024 Microchip Technology Inc. 4# SPDX-License-Identifier: Apache-2.0 5 6config UART_MCHP_MEC5 7 bool "Microchip MEC5 family ns16550 compatible UART driver" 8 default y 9 depends on DT_HAS_MICROCHIP_MEC5_UART_ENABLED 10 select SERIAL_HAS_DRIVER 11 select SERIAL_SUPPORT_INTERRUPT 12 help 13 This option enables the UART driver for Microchip MEC5 14 family processors. 15 16if UART_MCHP_MEC5 17 18config UART_MCHP_MEC5_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_MCHP_MEC5 28