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.

SIMPLELINK-CC2640R2-SDK: v2.30: Use Display_print0 with \n\r ?

Part Number: SIMPLELINK-CC2640R2-SDK

Hi,

    I want to print to Tera Term next line by next line using \n\r with Display_print0() but unable to do so. It still print according to row and column 0,0. How do use Display_print0() to print to Tera Term next line by next line using \n\r? Here is my test code below.

    Display_print0(dispHandle, 0, 0, "Line 1\r\n");
    Display_print0(dispHandle, 0, 0, "Line 2\r\n");
    Display_print0(dispHandle, 0, 0, "Line 3\r\n");

-kel