zephyr/dts/arm/cc3200_launchxl.dts
Kumar Gala 721919a61d arm: dts: Add zephyr,console to missing device trees
The chosen property that sets which serial port is being used for the
console device wasn't set.  Add the property "zephyr,console" to the
Arduino Due, CC3200-LaunchXL, CC3220SF-LaunchXL, and QEMU Cortex M3
boards.

Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
2017-05-19 10:06:48 -04:00

25 lines
338 B
Plaintext

/dts-v1/;
#include <ti/cc32xx.dtsi>
/ {
model = "TI CC3200 LaunchXL";
compatible = "ti,cc3200-launchxl","ti,cc3200","ti,cc32xx";
aliases {
uart_0 = &uart0;
uart_1 = &uart1;
};
chosen {
zephyr,sram = &sram0;
zephyr,flash = &flash0;
zephyr,console = &uart0;
};
};
&uart0 {
status = "ok";
current-speed = <115200>;
};