firmware/T6963.h
author root@rika
Thu, 23 Apr 2009 20:55:41 +0200
changeset 33 7a0c4b0354ba
parent 2 2f55e5dd591d
permissions -rw-r--r--
updated documentation
     1 /*
     2  * Project Frontplatte
     3  *
     4  * t6963.h  -  Controll a t6963c display
     5  *
     6  * This file is released under the GNU General Public License. Refer
     7  * to the COPYING file distributed with this package.
     8  *
     9  * (c) 2007 Carsten Presser cpresser AT fsing.uni-sb.de
    10  */
    11 
    12 #ifndef t6963_h
    13 #define t6963_h
    14 
    15 
    16 #define MODE_DATA		0       //Daten vom/zum Display
    17 #define MODE_COMMAND	1       //Kommando/BusyCheck zum/vom Display
    18 
    19 #define MODE_NOAUTO		0
    20 #define MODE_AUTO		1
    21 
    22 void lcd_InitDisplay(void);
    23 void lcd_ClearScreen(void);
    24 void lcd_WriteByte(unsigned char dat);
    25 void lcd_SetAutomode(unsigned char mode);
    26 void lcd_WriteCommand(unsigned char comand);
    27 void lcd_WriteData(unsigned char comand);
    28 
    29 #endif // t6963_h