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.
This commit is contained in:
Eduard Iten 2025-07-01 12:13:59 +02:00
parent 6c15b7021f
commit b005fd5c11
1 changed files with 9 additions and 0 deletions

View File

@ -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