Datasheet

SPI_T6963C_Cursor_Blink
Library Example
The following drawing demo tests advanced routines of the SPI T6963C Glcd library. Hardware
configurations in this example are made for the T6963C 240x128 display, EasyAVR5 board and
ATmega16.
#include "__SPIT6963C.h"
/*
* bitmap pictures stored in ROM
*/
extern const code char me[] ;
extern const code char einstein[] ;
// Port Expander module connections
sbit SPExpanderRST at PORTB.B0;
sbit SPExpanderCS at PORTB.B1;
sbit SPExpanderRST_Direction at DDRB.B0;
sbit SPExpanderCS_Direction at DDRB.B1;
// End Port Expander module connections
void main() {
char txt1[] = " EINSTEIN WOULD HAVE LIKED mE";
char txt[] = " Glcd LIBRARY DEMO, WELCOME !";
500
MIKROELEKTRONIKA - SOFTWARE AND HARDWARE SOLUTIONS FOR EMBEDDED WORLD
Libraries
mikroC PRO for AVR
CHAPTER 6
Prototype
void SPI_T6963C_Cursor_Blink(char n);
Returns Nothing.
Description
Enable/disable cursor blinking.
Parameters :
-
n: cursor blinking enable/disable parameter. Valid values: 0 (disable
cursor blinking) and 1 (enable cursor blinking).
Requires Toshiba Glcd module needs to be initialized. See SPI_T6963C_Config routine.
Example
// enable cursor blinking
SPI_T6963C_Cursor_Blink(1);