mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-30 04:05:21 +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
384 B
Plaintext
25 lines
384 B
Plaintext
/*
|
|
* Copyright (c) 2017 I-SENSE group of ICCS
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/dts-v1/;
|
|
#include <st/stm32f103Xb.dtsi>
|
|
|
|
/ {
|
|
model = "Olimex OLIMEXINO-STM32 board";
|
|
compatible = "st,olimexino_stm32", "st,stm32f103rb";
|
|
|
|
chosen {
|
|
zephyr,console = &usart1;
|
|
zephyr,sram = &sram0;
|
|
zephyr,flash = &flash0;
|
|
};
|
|
};
|
|
|
|
&usart1 {
|
|
baud-rate = <115200>;
|
|
status = "ok";
|
|
};
|