1# Copyright (c) 2021 Nordic Semiconductor ASA
2# SPDX-License-Identifier: Apache-2.0
3
4description: USB CDC ACM UART
5
6compatible: "zephyr,cdc-acm-uart"
7
8include: uart-controller.yaml
9
10on-bus: usb
11
12properties:
13  tx-fifo-size:
14    type: int
15    default: 1024
16    description: |
17      Size of the virtual CDC ACM UART TX FIFO
18
19  rx-fifo-size:
20    type: int
21    default: 1024
22    description: |
23      Size of the virtual CDC ACM UART RX FIFO
24