Can someone please guide me how to view my Log_printfs on CCS v6? I am trying to get a Hello, World program running that uses LOG_printf (&trace, "hello world!"); from example code. Where do I view the output? I am using an eZDSP 5515 board.
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.
Can someone please guide me how to view my Log_printfs on CCS v6? I am trying to get a Hello, World program running that uses LOG_printf (&trace, "hello world!"); from example code. Where do I view the output? I am using an eZDSP 5515 board.
In your picture, I see that you are still at the beginning of main(). You did not yet execute the log_printf function. I'm not sure if the log_printf buffer will get flushed after stepping over the call or if you have to run your program to completion. Try the former and if you still see nothing, then try the latter.
thanks
ki