Datasheet

T6963C_WriteCommand
T6963C_SetPtr
T6963C_WaitReady
511
MIKROELEKTRONIKA - SOFTWARE AND HARDWARE SOLUTIONS FOR EMBEDDED WORLD
Libraries
mikroC PRO for AVR
CHAPTER 6
Prototype
void T6963C_WriteCommand(unsigned char mydata);
Returns Nothing.
Description
Writes command to T6963C controller.
Parameters :
- mydata: command to be written
Requires Toshiba GLCD module needs to be initialized. See the T6963C_Init routine.
Example
T6963C_WriteCommand(T6963C_CURSOR_POINTER_SET);
Prototype
void T6963C_SetPtr(unsigned int p, unsigned char c);
Returns Nothing.
Description
Sets the memory pointer p for command c.
Parameters :
- p: address where command should be written
- c: command to be written
Requires Toshiba GLCD module needs to be initialized. See the T6963C_Init routine.
Example
T6963C_SetPtr(T6963C_grHomeAddr + start,
T6963C_ADDRESS_POINTER_SET);
Prototype
void T6963C_WaitReady(void);
Returns Nothing.
Description Pools the status byte, and loops until Toshiba GLCD module is ready.
Requires Toshiba GLCD module needs to be initialized. See the T6963C_Init routine.
Example
T6963C_WaitReady();