mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-28 11:25:21 +00:00
Add configuration, documentation, pinmux, fixup and dts support for STM32F103x8 based Minimum System Development board. Signed-off-by: Siddharth Chandrasekaran <siddharth@embedjournal.com>
25 lines
385 B
Plaintext
25 lines
385 B
Plaintext
/*
|
|
* Copyright (c) 2017, embedjournal.com
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/dts-v1/;
|
|
#include <st/stm32f103Xb.dtsi>
|
|
|
|
/ {
|
|
model = "STM32 Minimum Development Board";
|
|
compatible = "st,stm32_min_dev", "st,stm32f103rb";
|
|
|
|
chosen {
|
|
zephyr,console = &usart1;
|
|
zephyr,sram = &sram0;
|
|
zephyr,flash = &flash0;
|
|
};
|
|
};
|
|
|
|
&usart1 {
|
|
current-speed = <115200>;
|
|
status = "ok";
|
|
};
|