Datasheet

SPI_T6963C_SetTxtPanel
SPI_T6963C_PanelFill
SPI_T6963C_GrFill
497
MIKROELEKTRONIKA - SOFTWARE AND HARDWARE SOLUTIONS FOR EMBEDDED WORLD
Libraries
mikroC PRO for AVR
CHAPTER 6
Prototype
void SPI_T6963C_SetTxtPanel(char n);
Returns Nothing.
Description
Compute start address for selected text panel and set appropriate internal point-
ers. All subsequent text operations will be preformed at this text panel.
Parameters :
`-
n: text panel number. Valid values: 0 and 1.
Requires Toshiba Glcd module needs to be initialized. See SPI_T6963C_Config routine.
Example
// set text panel 1 as current text panel.
SPI_T6963C_SetTxtPanel(1);
Prototype
void SPI_T6963C_PanelFill(unsigned char v);
Returns Nothing.
Description
Fill current panel in full (graphic+text) with appropriate value (0 to clear).
Parameters :
- v: value to fill panel with.
Requires Toshiba Glcd module needs to be initialized. See SPI_T6963C_Config routine.
Example
clear current panel
SPI_T6963C_PanelFill(0);
Prototype
void SPI_T6963C_GrFill(unsigned char v);
Returns Nothing.
Description
Fill current graphic panel with appropriate value (0 to clear).
Parameters :
- v: value to fill graphic panel with.
Requires Toshiba Glcd module needs to be initialized. See SPI_T6963C_Config routine.
Example
// clear current graphic panel
SPI_T6963C_GrFill(0);