e86d701f121cc598cb6ad5a8ffdd4082a02991a4
[bertos.git] / bertos / drv / lcd_text.h
1 /**
2  * \file
3  * <!--
4  * This file is part of BeRTOS.
5  *
6  * Bertos is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  * As a special exception, you may use this file as part of a free software
21  * library without restriction.  Specifically, if other files instantiate
22  * templates or use macros or inline functions from this file, or you compile
23  * this file and link it with other files to produce an executable, this
24  * file does not by itself cause the resulting executable to be covered by
25  * the GNU General Public License.  This exception does not however
26  * invalidate any other reasons why the executable file might be covered by
27  * the GNU General Public License.
28  *
29  * Copyright 2005 Develer S.r.l. (http://www.develer.com/)
30  *
31  * -->
32  *
33  * \brief Generic text LCD driver (interface).
34  *
35  * \version $Id$
36  * \author Bernie Innocenti <bernie@codewiz.org>
37  * \author Stefano Fedrigo <aleph@develer.com>
38  */
39
40 #ifndef DRV_LCD_H
41 #define DRV_LCD_H
42
43 #include "lcd_hd44.h"
44
45 #include <cfg/macros.h>
46 #include <cfg/compiler.h>
47 #include <struct/list.h>
48
49 #include <stdarg.h> // vprintf()
50
51
52 /* flags for lcd_printf() */
53 #define LCD_NORMAL     0       /* Scrittura normale */
54 #define LCD_FILL       BV(0)   /* Fill rest of line with spaces */
55 #define LCD_CENTER     BV(1)   /* Center string in line */
56 #define LCD_NOCURSOR   BV(2)   /* Scrittura senza spostamento cursore */
57
58 /** Special priority value for lcd_setLayerDepth(). */
59 #define LAYER_HIDDEN   -127
60
61 /* Compute LCD address from x/y coordinates */
62 #define LCD_POS(x,y)  ((lcdpos_t)((uint8_t)(x) + (uint8_t)(y) * (uint8_t)LCD_COLS))
63 #define LCD_ROW0  (LCD_COLS * 0)
64 #define LCD_ROW1  (LCD_COLS * 1)
65 #define LCD_ROW2  (LCD_COLS * 2)
66 #define LCD_ROW3  (LCD_COLS * 3)
67
68 /**
69  * Overwrapping layer context.
70  */
71 typedef struct _Layer
72 {
73         /**
74          * Active layers are linked together in a list
75          * sorted in top to bottom order.
76          */
77         DECLARE_NODE_ANON(struct _Layer)
78
79         /** Current XY address into this layer, for write operations. */
80         lcdpos_t addr;
81
82         /** Priority of this layer (greater in front of lesser). */
83         char pri;
84
85         /**
86          * Layer backing store buffer.
87          *
88          * All writes through the layer are copied into this buffer.
89          * Characters cells with value 0 are transparent with respect
90          * to other layers in the background.
91          */
92         char buf[LCD_COLS * LCD_ROWS];
93 } Layer;
94
95
96 /* Global variables */
97 extern Layer *lcd_DefLayer;
98
99 /* Function prototypes */
100 extern void lcd_init(void);
101 extern void lcd_test(void);
102
103 extern void lcd_moveCursor(lcdpos_t addr);
104 extern char lcd_setCursor(char state);
105
106 extern void lcd_setAddr(Layer *layer, lcdpos_t addr);
107 extern void lcd_putChar(char c, Layer *layer);
108 extern int  lcd_vprintf(Layer *layer, lcdpos_t addr, uint8_t mode, const char *format, va_list ap) FORMAT(printf, 4, 0);
109 extern int  lcd_printf(Layer *layer, lcdpos_t addr, uint8_t mode, const char *format, ...) FORMAT(printf, 4, 5);
110 extern void lcd_clear(Layer *layer);
111 extern void lcd_layerSet(Layer *layer, char c);
112 extern void lcd_clearLine(Layer *layer, int y);
113
114 extern void lcd_setLayerDepth(Layer *layer, char pri);
115 extern Layer *lcd_newLayer(char pri);
116 extern void lcd_deleteLayer(Layer *layer);
117 extern void lcd_lock(void);
118 extern void lcd_unlock(void);
119
120 #endif /* DRV_LCD_H */