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.

LAUNCHXL-CC1310: Console IO output only displays 5 lines, then nothing, when printing to host display.

Part Number: LAUNCHXL-CC1310

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(&params);
    Display_Handle display;
    display = Display_open(Display_Type_HOST, &params);

    int i=0;
    while(1) {
        Display_printf(display, i, 0, "Hello world %u!", i);
        i++;
    }

    return NULL;
}