43 lines
557 B
Plaintext
43 lines
557 B
Plaintext
/* SPDX-License-Identifier: Apache-2.0 */
|
|
|
|
/dts-v1/;
|
|
|
|
#include <atmel/sam3x.dtsi>
|
|
|
|
/ {
|
|
model = "Arduino Due with an Atmel SAM3X8E SoC";
|
|
compatible = "arduino,due", "atmel,sam3x8e", "atmel,sam3x";
|
|
|
|
aliases {
|
|
wdog = &wdog;
|
|
uart-0 = &uart0;
|
|
i2c-0 = &i2c0;
|
|
i2c-1 = &i2c1;
|
|
};
|
|
|
|
chosen {
|
|
zephyr,sram = &sram0;
|
|
zephyr,flash = &flash0;
|
|
zephyr,console = &uart0;
|
|
zephyr,shell-uart = &uart0;
|
|
};
|
|
};
|
|
|
|
&wdog {
|
|
status = "okay";
|
|
};
|
|
|
|
|
|
&i2c0 {
|
|
status = "okay";
|
|
};
|
|
|
|
&i2c1 {
|
|
status = "okay";
|
|
};
|
|
|
|
&uart0 {
|
|
status = "okay";
|
|
current-speed = <115200>;
|
|
};
|