1# Emulated UART configuration options 2 3# Copyright (c) 2023 Fabian Blatz 4# SPDX-License-Identifier: Apache-2.0 5 6config UART_EMUL 7 bool "Emulated UART driver [EXPERIMENTAL]" 8 default y 9 depends on DT_HAS_ZEPHYR_UART_EMUL_ENABLED 10 select SERIAL_SUPPORT_INTERRUPT 11 select RING_BUFFER 12 select EXPERIMENTAL 13 help 14 Enable the emulated UART driver. 15