From b005fd5c11b20a197c2c900caa7bddb48d382b31 Mon Sep 17 00:00:00 2001 From: Eduard Iten Date: Tue, 1 Jul 2025 12:13:59 +0200 Subject: [PATCH] feat(slave_node): Enable UART console and printk - Enable the console subsystem and printk for debugging output. - Configure the console to use the UART peripheral (usart1 on PA9/PA10). - Disable RTT to ensure UART is the active console. --- software/apps/slave_node/prj.conf | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/software/apps/slave_node/prj.conf b/software/apps/slave_node/prj.conf index e69de29..1ed07ab 100644 --- a/software/apps/slave_node/prj.conf +++ b/software/apps/slave_node/prj.conf @@ -0,0 +1,9 @@ +# Enable Console and printk for logging +CONFIG_CONSOLE=y +CONFIG_PRINTK=y + +# Enable UART console +CONFIG_UART_CONSOLE=y + +# Disable RTT console to avoid conflicts +CONFIG_RTT_CONSOLE=n \ No newline at end of file