Hello everyone,
How can I print Debug-like messages with my Concerto without having the Debugger plugged in?
When the Debugger is plugged in and the device runs from RAM, I get the System_printf-Messages in the CCS-console.
But when I run the device from flash (no debugger connected, just Power ON), how can I print messages on the console/terminal?
Can I use the "System_printf()"-Function oder Logger-functions somehow?
Or do I have to set the registers for UART-configuration (BAUD-rate, ... etc) and do it by myself?
Thank you for your answers,
Philipp
/edit: What I just saw: Program execution seems to be much much slower when the debugger is connected - for example: I configured a timer to toggle a LED every 1second. With the debugger connected, nothing happened for a long time. Without the debugger, it works - every second a toggle.