boards: thingy53_nrf5340: Enable uart0 on network core

uart0 is used as default console output in Zephyr. Change prevents
assertion fail in default configuration of hci_rpmsg sample. The
failing assertion is related to enabling logger without backend.

Signed-off-by: Marek Pieta <Marek.Pieta@nordicsemi.no>
This commit is contained in:
Marek Pieta 2021-07-08 11:33:21 +02:00 committed by Anas Nashif
commit a6a7a0d888
2 changed files with 5 additions and 1 deletions

View file

@ -89,7 +89,7 @@
&uart0 { &uart0 {
compatible = "nordic,nrf-uarte"; compatible = "nordic,nrf-uarte";
status = "disabled"; status = "okay";
current-speed = <115200>; current-speed = <115200>;
tx-pin = <12>; tx-pin = <12>;
rx-pin = <11>; rx-pin = <11>;

View file

@ -13,5 +13,9 @@ CONFIG_HW_STACK_PROTECTION=y
# Enable GPIO # Enable GPIO
CONFIG_GPIO=y CONFIG_GPIO=y
# Enable uart driver
CONFIG_SERIAL=y
# Enable console # Enable console
CONFIG_CONSOLE=y CONFIG_CONSOLE=y
CONFIG_UART_CONSOLE=y