1# Copyright 2025 Google LLC
2# SPDX-License-Identifier: Apache-2.0
3
4config UART_BRIDGE
5	bool "UART bridge"
6	default y
7	depends on DT_HAS_ZEPHYR_UART_BRIDGE_ENABLED
8	select UART_INTERRUPT_DRIVEN
9	select RING_BUFFER
10	help
11	  Enable the UART bridge driver.
12
13config UART_BRIDGE_BUF_SIZE
14	int "UART bridge buffer size"
15	default 256
16	depends on UART_BRIDGE
17	help
18	  Size of the bridge ring buffers in bytes.
19