mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-04 04:51:57 +00:00
Move the dts files into the board dir so that board ports can be more standalone. This will allow us at some point to have board ports outside of the tree. Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
27 lines
463 B
Plaintext
27 lines
463 B
Plaintext
/*
|
|
* Copyright (c) 2017 Fenix Engineering Solutions
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/dts-v1/;
|
|
#include <st/stm32f411.dtsi>
|
|
|
|
/ {
|
|
model = "STMicroelectronics STM32F411E-DISCO board";
|
|
compatible = "st,stm32f411e-disco", "st,stm32f411";
|
|
|
|
chosen {
|
|
zephyr,console = &usart2;
|
|
zephyr,sram = &sram0;
|
|
zephyr,flash = &flash0;
|
|
};
|
|
};
|
|
|
|
&usart2 {
|
|
current-speed = <115200>;
|
|
pinctrl-0 = <&usart2_pins_a>;
|
|
pinctrl-names = "default";
|
|
status = "ok";
|
|
};
|