
590
mikoC PRO for dsPIC
MikroElektronika
 Delay_ms(300);
 }
 /*
 * Move cursor, even if not visible
 */
 cposx++;
 if(cposx == SPI_T6963C_txtCols) {
 cposx = 0;
 cposy++;
 if(cposy == SPI_T6963C_grHeight / SPI_T6963C_CHARACTER_HEIGHT) {
 cposy = 0;
 }
 }
 SPI_T6963C_set_cursor(cposx, cposy);
 Delay_ms(100);
 }
}