Hello,
I would like to add log events in the NDK stack to be displayed in the code composer studio console for debugging purposes.
I added the following configurations to the .cfg file:
BIOS.logsEnabled = true;
Global.debugAbortLevel = Global.DBG_INFO;
Global.debugPrintLevel = Global.DBG_INFO;
Also, I used the following function to add my logs: DbgPrintf(DBG_INFO, "Debug log");
then rebuilt the NDK.
But nothing is displayed on the CCS console or the debugger console. How can I show the added logs?
Thanks,