User manual

Table Of Contents
mikroC PRO for PIC32
MikroElektronika
527
SPI_T6963C_panelFill
SPI_T6963C_grFill
SPI_T6963C_txtFill
Prototype
void SPI_T6963C_panelFill(unsigned char v);
Description Fill current panel in full (graphic+text) with appropriate value (0 to clear).
Parameters - v: value to ll panel with.
Returns Nothing.
Requires Toshiba Glcd module needs to be initialized. See SPI_T6963C_Cong routine.
Example
clear current panel
SPI_T6963C_panelFill(0);
Notes None.
Prototype
void SPI_T6963C_grFill(unsigned char v);
Description Fill current graphic panel with appropriate value (0 to clear).
Parameters - v: value to ll graphic panel with.
Returns Nothing.
Requires Toshiba Glcd module needs to be initialized. See SPI_T6963C_Cong routine.
Example
// clear current graphic panel
SPI_T6963C_grFill(0);
Notes None.
Prototype
void SPI_T6963C_txtFill(unsigned char v);
Description Fill current text panel with appropriate value (0 to clear).
Parameters - v: this value increased by 32 will be used to ll text panel.
Returns Nothing.
Requires Toshiba Glcd module needs to be initialized. See SPI_T6963C_Cong routine.
Example
// clear current text panel
SPI_T6963C_txtFill(0);
Notes None.