Tool/software:
I created this very basic program to test if I could print debugging information to the CCS console.
The output in the CIO shows:
[Cortex_M3_0] Hello world 0!
Hello world 1!
Hello world 2!
Hello world 3!
Hello world 4!
When I clear the console I don't see any more output. When I reboot (before or after clearing the console) I also don't sget any more output.
I wonder if the CIO is configured incorrectly in CCS and only receives / processes the first 5 lines.
void *mainThread(void *arg0)
{
Board_init();
Display_Params params;
Display_Params_init(¶ms);
Display_Handle display;
display = Display_open(Display_Type_HOST, ¶ms);
int i=0;
while(1) {
Display_printf(display, i, 0, "Hello world %u!", i);
i++;
}
return NULL;
}