mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-29 06:06:04 +00:00
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>
25 lines
338 B
Plaintext
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>;
|
|
};
|