I am developing a custom board using nrf54l10 chip. So far, I have been able to use a code to comunicate through spi and uart for me to use printk function.
Now I was trying to run a simple code using BLE just to see if my board appeared on the nrf app for BLE.
When i try to run a code that just prints something on the main function using uart, my code works ok. However, if i only add this line
to prj.conf, I can build the project and flash it to my custom board but I cannot see my prints anymore on serial. So, there is anything happening when I only set CONFIG_BT and maintain the rest of the code.
What can be happening when I set that configuration and do not change the code to perfom a normal print on main function that was working properly without that CONFIG_BT=y.