mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-02 23:51:56 +00:00
Converted over all STM32F1 based boards to use device tree and removed associated bits that now come from the device tree for STM32F1. Also renamed the STM32F10{3,7} SoC dtsi to try and make it clear that the 'X' is a place holder. Fixedup the top level compatiables in the boards to be the specific 'X' instead of the generic one. Boards that are now using devicetree: * Nucleo f103rb * STM3210C Eval * STM32 MINI A15 Change-Id: I29b3634ec7451f974687d55980414efa655e2e96 Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
25 lines
368 B
Plaintext
25 lines
368 B
Plaintext
/*
|
|
* Copyright (c) 2017 Linaro Limited
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/dts-v1/;
|
|
#include <st/stm32f103Xe.dtsi>
|
|
|
|
/ {
|
|
model = "STM32 MINI A15 board";
|
|
compatible = "st,stm32_mini_a15", "st,stm32f103ve";
|
|
|
|
chosen {
|
|
zephyr,console = &usart1;
|
|
zephyr,sram = &sram0;
|
|
zephyr,flash = &flash0;
|
|
};
|
|
};
|
|
|
|
&usart1 {
|
|
baud-rate = <115200>;
|
|
status = "ok";
|
|
};
|