User manual

Table Of Contents
550
mikoC PRO for PIC32
MikroElektronika
T6963C_negBit
T6963C_displayGrPanel
T6963C_displayTxtPanel
Prototype
void T6963C_negBit(unsigned int b);
Description Negates control port bit(s).
Parameters - b: bit mask. The function will negate bit x on control port if bit x in bit mask is set to 1.
Returns Nothing.
Requires Toshiba Glcd module needs to be initialized. See the T6963C_init routine.
Example
// negate bits 0 and 1 on control port
T6963C_negBit(0x0003);
Notes None.
Prototype
void T6963C_displayGrPanel(unsigned int n);
Description Display selected graphic panel.
Parameters - n: graphic panel number. Valid values: 0 and 1.
Returns Nothing.
Requires Toshiba Glcd module needs to be initialized. See the T6963C_init routine.
Example
// display graphic panel 1
T6963C_displayGrPanel(1);
Notes None.
Prototype
void T6963C_displayTxtPanel(unsigned int n);
Description Display selected text panel.
Parameters - n: text panel number. Valid values: 0 and 1.
Returns Nothing.
Requires Toshiba Glcd module needs to be initialized. See the T6963C_init routine.
Example
// display text panel 1
T6963C_displayTxtPanel(1);
Notes None.