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.

export ROV log to text file

Hi,

I want to know if there any way to export the ROV --> log --> trace  to a text file in CCS6 . I used many LOG_printf() in my code and want to export the log into a text file for future analysis  .  Unfortunately the trace log window display only 1024 log and my captured log_printf's exceeded 10000 ( over night test ) so the log viewed the last 1024 of them .  Is there any way to increase this  value or use another technique  to capture the results  .

Thanks in advanced

Abdo

  • There is a way to increase the amount of logs you capture, but you would be constrained by the devices memory. If you open up your cfg file, you would have to add:

    /* ================ Logger configuration ================ */
    var LoggingSetup = xdc.useModule('ti.uia.sysbios.LoggingSetup'); // Add if you didn't already have it or an equivalent
    LoggingSetup.mainLoggerSize = 1024; // <- Update to a higher number

    This should help you capture more logs. You can export the captured logs by right clicking in the Printf Logs or Livve Session pane and going to Data->Export All...

    Gilbert