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