This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Tool/software: TI-RTOS
SYS/BIOS 6.50, XDCtools 3.50, CCS 7.2
I am using the xdc.runtime.Log and xdc.runtime.LoggerBuf. Using ROV Classic I can see my log info/warnings/error showing up as expected but I have several questions;
1) Am I using the proper package?
2) Currently we are not using SMP but I see that there is an equivalent package there: ti.sysbios.smp.LoggerBuf. If we go to SMP, will I need to switch?
3) I think I can turn on and off logging via my application using LoggerBuf_enable() and LoggerBuf_disable() and when disabled, there is minimal impact on resources and performance. But if I want to just disable Info level logging I'm not clear on how to do that. I see filters and masks but it is not clear to me how they relate to the Info/Warning/Error levels.
4) I'd like to be able to read and decipher/render as text the log entries via application code. I see LoggerBuf_getNextEntry(). It unfortunately clears the event (I'd prefer that not happen) and they are not in chronological order (I think they are display in order in ROV Classic?) After I get the Log_EventRec using that call, is there an straight forward way to render an event as text? I see Log_doPrint() but that uses System_printf. I'm trying to fill in a local buffer.
The goal is to be able to control the logging and view logged events via a serial link or TCP after deployment.
Mike