mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-30 23:36:13 +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>
24 lines
341 B
Plaintext
24 lines
341 B
Plaintext
/dts-v1/;
|
|
|
|
#include <atmel/sam3x.dtsi>
|
|
|
|
/ {
|
|
model = "Arduino Due with an Atmel SAM3X8E SoC";
|
|
compatible = "arduino,due", "atmel,sam3x8e", "atmel,sam3x";
|
|
|
|
aliases {
|
|
uart_0 = &uart0;
|
|
};
|
|
|
|
chosen {
|
|
zephyr,sram = &sram0;
|
|
zephyr,flash = &flash0;
|
|
zephyr,console = &uart0;
|
|
};
|
|
};
|
|
|
|
&uart0 {
|
|
status = "ok";
|
|
current-speed = <115200>;
|
|
};
|