From af22475f98bf49e22871c105a123d96dcccb26b0 Mon Sep 17 00:00:00 2001 From: Warren Buffer Date: Thu, 21 Sep 2023 17:20:40 +0300 Subject: [PATCH] boards: efr32_radio_brd4170a: Setup console with pinctrl Prior to this patch, the BRD4170A did not enable the UART console using pinctrl, which was recently added for this SoC series. Signed-off-by: Warren Buffer --- boards/arm/efr32_radio/efr32_radio_brd4170a.dts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/boards/arm/efr32_radio/efr32_radio_brd4170a.dts b/boards/arm/efr32_radio/efr32_radio_brd4170a.dts index effd66a8515..ed7e2f992a1 100644 --- a/boards/arm/efr32_radio/efr32_radio_brd4170a.dts +++ b/boards/arm/efr32_radio/efr32_radio_brd4170a.dts @@ -6,6 +6,7 @@ /dts-v1/; #include +#include #include "efr32_radio.dtsi" / { @@ -60,3 +61,10 @@ }; }; + +&usart0 { + current-speed = <115200>; + pinctrl-0 = <&usart0_default>; + pinctrl-names = "default"; + status = "okay"; +};