27 lines
455 B
Plaintext
27 lines
455 B
Plaintext
/*
|
|
* Copyright (c) 2017 Linaro Limited
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/dts-v1/;
|
|
#include <st/stm32f429.dtsi>
|
|
|
|
/ {
|
|
model = "STMicroelectronics STM32F429ZI -NUCLEO board";
|
|
compatible = "st,stm32f429zi-nucleo", "st,stm32f429";
|
|
|
|
chosen {
|
|
zephyr,console = &usart3;
|
|
zephyr,sram = &sram0;
|
|
zephyr,flash = &flash0;
|
|
};
|
|
};
|
|
|
|
&usart3 {
|
|
current-speed = <115200>;
|
|
pinctrl-0 = <&usart3_pins_b>;
|
|
pinctrl-names = "default";
|
|
status = "ok";
|
|
};
|