zephyr/tests/drivers/uart/uart_async_api/boards/segger_rtt.overlay
Andrzej Głąbek 2cbe097b29 tests: drivers: uart: Use "dut" node label to select UART to be tested
... to limit #if chains in these tests and make it easier to add new
boards.

Signed-off-by: Andrzej Głąbek <andrzej.glabek@nordicsemi.no>
2023-03-23 09:40:11 +01:00

28 lines
403 B
Plaintext

/* SPDX-License-Identifier: Apache-2.0 */
/ {
chosen {
zephyr,console = &rtt0;
};
dut: rtt0: rtt_chan0 {
compatible = "segger,rtt-uart";
status = "okay";
};
rtt1: rtt_chan1 {
compatible = "segger,rtt-uart";
status = "okay";
};
rtt2: rtt_chan2 {
compatible = "segger,rtt-uart";
status = "okay";
};
rtt3: rtt_chan3 {
compatible = "segger,rtt-uart";
status = "okay";
};
};