I am trying to get started with DSP/BIOS. I am using CCSv4 and following sample projects. Firstly, I tried simple hello word project which simply calls LOG_printf() only:
LOG_printf(&trace,"Hello Word");
However, I couldn't see "Hello Word" in both Printf Logs and Raw Logs. Then, I switched to task example. In that example there are 3 running tasks. Each task runs a loop and there is only a LOG_printf() statement in loop. In total, log_printf() is called 15 times. However, I observed only 14 printf logs. Then, I returned to hello world project and add few LOG_printf() statements.
LOG_printf(&trace,"Hello Word");LOG_printf(&trace,"test1");LOG_printf(&trace,"test2");LOG_printf(&trace,"test3");
Then, I got the "test1","test2","test3" logs. It seems that first call of LOG_printf() is problematic or do i miss something?
Thanks!