User manual

571
mikoPascal PRO for dsPIC30/33 and PIC24
MikroElektronika
T6963C_writeCommand
T6963C_setPtr
T6963C_waitReady
Prototype
procedure T6963C_writeCommand(mydata : byte);
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
procedure T6963C_setPtr(p : word; c : byte);
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
procedure 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.