zephyr/tests/drivers/uart/uart_async_api/boards/segger_rtt.overlay
Jordan Yates c4d0c1ee90 tests: uart_async_api: build segger rtt driver
Add a build only test to validate correct compilation of the uart_rtt
driver. No harness that connects to RTT is defined, and therefore the
test can't be run by CI.

Signed-off-by: Jordan Yates <jordan.yates@data61.csiro.au>
2020-09-03 21:51:28 +02:00

32 lines
490 B
Plaintext

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