Datasheet

SPI_T6963C_SetBit
SPI_T6963C_NegBit
495
MIKROELEKTRONIKA - SOFTWARE AND HARDWARE SOLUTIONS FOR EMBEDDED WORLD
Libraries
mikroC PRO for AVR
CHAPTER 6
Prototype
void SPI_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 SPI_T6963C_Config routine.
Example
// set bits 0 and 1 on control port
SPI_T6963C_SetBit(0x03);
Prototype
void SPI_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 SPI_T6963C_Config routine.
Example
// negate bits 0 and 1 on control port
SPI_T6963C_NegBit(0x03);