mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-26 08:26:06 +00:00
Add board configuration, dts and pinmux based on the stm32f4_disco board. Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
30 lines
448 B
Plaintext
30 lines
448 B
Plaintext
/*
|
|
* Copyright (c) 2017 Linaro Limited
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/dts-v1/;
|
|
#include <st/stm32f469.dtsi>
|
|
|
|
/ {
|
|
model = "STMicroelectronics STM32F469I-DISCO board";
|
|
compatible = "st,stm32f469i-disco", "st,stm32f469";
|
|
|
|
chosen {
|
|
zephyr,console = &usart3;
|
|
zephyr,sram = &sram0;
|
|
zephyr,flash = &flash0;
|
|
};
|
|
};
|
|
|
|
&usart3 {
|
|
current-speed = <115200>;
|
|
status = "ok";
|
|
};
|
|
|
|
&usart6 {
|
|
current-speed = <115200>;
|
|
status = "ok";
|
|
};
|