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:
parent
6c15b7021f
commit
b005fd5c11
|
|
@ -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
|
||||
Loading…
Reference in New Issue