Devicetree.org specifies that serial devices property used to set baud rate is "current-speed", while zephyr uses "baud-rate". Align property name in order to keep zephyr dts files compatible with device tree specification and could be re-used from/to Linux for instance. We also cleanup a few SoCs that set "baud-rate" in the SoC dts and not the board. Jira: ZEP-2048 Change-Id: I097e7439ee46fe77c628b56531772950382fafcc Signed-off-by: Erwan Gouriou <erwan.gouriou@linaro.org> Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
24 lines
388 B
Text
24 lines
388 B
Text
/*
|
|
* 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 {
|
|
current-speed = <115200>;
|
|
status = "ok";
|
|
};
|