39 lines
549 B
Plaintext
39 lines
549 B
Plaintext
/*
|
|
* Copyright (c) Justin Watson 2017
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/dts-v1/;
|
|
|
|
#include <atmel/sam4s.dtsi>
|
|
|
|
/ {
|
|
model = "Atmel SAM4S Xplained Board with an Atmel SAM4S16C SoC";
|
|
compatible = "atmel,sam4s_xplained", "atmel,sam4s16c", "atmel,sam4s";
|
|
|
|
aliases {
|
|
i2c-0 = &i2c0;
|
|
i2c-1 = &i2c1;
|
|
};
|
|
|
|
chosen {
|
|
zephyr,console = &uart0;
|
|
zephyr,sram = &sram0;
|
|
zephyr,flash = &flash0;
|
|
};
|
|
};
|
|
|
|
&i2c0 {
|
|
status = "ok";
|
|
};
|
|
|
|
&uart0 {
|
|
current-speed = <115200>;
|
|
status = "ok";
|
|
};
|
|
|
|
&uart1 {
|
|
current-speed = <115200>;
|
|
status = "ok";
|
|
};
|