mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-02 15:54:43 +00:00
Add configuration, documentation, flash script, pinmux and dts for the STM32F4DISCOVERY 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/stm32f407.dtsi>
|
|
|
|
/ {
|
|
model = "STMicroelectronics STM32F4DISCOVERY board";
|
|
compatible = "st,stm32f4discovery", "st,stm32f407";
|
|
|
|
chosen {
|
|
zephyr,console = &usart2;
|
|
zephyr,sram = &sram0;
|
|
zephyr,flash = &flash0;
|
|
};
|
|
};
|
|
|
|
&usart1 {
|
|
current-speed = <115200>;
|
|
status = "ok";
|
|
};
|
|
|
|
&usart2 {
|
|
current-speed = <115200>;
|
|
status = "ok";
|
|
};
|