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";
|
||
|
};
|