1# Copyright (c) 2020, CSIRO. 2# SPDX-License-Identifier: Apache-2.0 3 4description: Segger RTT UART 5 6compatible: "segger,rtt-uart" 7 8include: uart-controller.yaml 9 10properties: 11 tx-buffer-size: 12 type: int 13 default: 1024 14 description: | 15 Size of the RTT up buffer for transmission 16 Not used for RTT channel 0 as channel 0 is initialized at compile time, 17 see SEGGER_RTT_BUFFER_SIZE_UP. 18 19 rx-buffer-size: 20 type: int 21 default: 16 22 description: | 23 Size of the RTT down buffer for reception 24 Not used for RTT channel 0 as channel 0 is initialized at compile time, 25 see SEGGER_RTT_BUFFER_SIZE_DOWN. 26