User manual

Table Of Contents
mikroC PRO for PIC32
MikroElektronika
541
T6963C_writeCommand
T6963C_setPtr
T6963C_waitReady
Prototype
void T6963C_writeCommand(unsigned char mydata);
Description Writes command to T6963C controller.
Parameters - mydata: command to be written
Returns Nothing.
Requires Toshiba Glcd module needs to be initialized. See the T6963C_init routine.
Example
T6963C_writeCommand(T6963C_CURSOR_POINTER_SET);
Notes None.
Prototype
void T6963C_setPtr(unsigned int p, unsigned char c);
Description Sets the memory pointer p for command p.
Parameters - p: address where command should be written
- c: command to be written
Returns Nothing.
Requires Toshiba Glcd module needs to be initialized. See the T6963C_init routine.
Example
T6963C_setPtr(T6963C_grHomeAddr + start, T6963C_ADDRESS_POINTER_SET);
Notes None.
Prototype
void T6963C_waitReady();
Description Pools the status byte, and loops until Toshiba Glcd module is ready.
Parameters None.
Returns Nothing.
Requires Toshiba Glcd module needs to be initialized. See the T6963C_init routine.
Example
T6963C_waitReady();
Notes None.