User manual

Table Of Contents
528
mikoC PRO for PIC32
MikroElektronika
SPI_T6963C_cursor_height
SPI_T6963C_graphics
SPI_T6963C_text
Prototype
void SPI_T6963C_cursor_height(unsigned char n);
Description Set cursor size.
Parameters - n: cursor height. Valid values: 0..7.
Returns Nothing.
Requires Toshiba Glcd module needs to be initialized. See SPI_T6963C_Cong routine.
Example
SPI_T6963C_cursor_height(7);
Notes None.
Prototype
void SPI_T6963C_graphics(unsigned int n);
Description Enable/disable graphic displaying.
Parameters - n: graphic enable/disable parameter. Valid values: 0 (disable graphic dispaying) and 1 (enable
graphic displaying).
Returns Nothing.
Requires Toshiba Glcd module needs to be initialized. See SPI_T6963C_Cong routine.
Example
// enable graphic displaying
SPI_T6963C_graphics(1);
Notes None.
Prototype
void SPI_T6963C_text(unsigned int n);
Description Enable/disable text displaying.
Parameters - n: text enable/disable parameter. Valid values: 0 (disable text dispaying) and 1 (enable text
displaying).
Returns Nothing.
Requires Toshiba Glcd module needs to be initialized. See SPI_T6963C_Cong routine.
Example
// enable text displaying
SPI_T6963C_text(1);
Notes None.