Datasheet
T6963C_SetBit
T6963C_NegBit
519
MIKROELEKTRONIKA - SOFTWARE AND HARDWARE SOLUTIONS FOR EMBEDDED WORLD
Libraries
mikroC PRO for AVR
CHAPTER 6
Prototype
void T6963C_SetBit(char b);
Returns Nothing.
Description
Sets control port bit(s).
Parameters :
- b: bit mask. The function will set bit x on control port if bit x in bit
mask is set to 1.
Requires Toshiba GLCD module needs to be initialized. See the T6963C_Init routine.
Example
// set bits 0 and 1 on control port
T6963C_SetBit(0x03);
Prototype
void T6963C_NegBit(char b);
Returns Nothing.
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.
Requires Toshiba GLCD module needs to be initialized. See the T6963C_Init routine.
Example
// negate bits 0 and 1 on control port
T6963C_NegBit(0x03);