Update to new naming scheme in mware/gfx.c.
[bertos.git] / mware / font.h
1 /*!
2  * \file
3  * <!--
4  * Copyright 2003,2004 Develer S.r.l. (http://www.develer.com/)
5  * This file is part of DevLib - See devlib/README for information.
6  * -->
7  *
8  * \version $Id$
9  *
10  * \author Stefano Fedrigo <aleph@develer.com>
11  *
12  * \brief Font 8x6 IBM-PC 8bit
13  */
14
15 /*#*
16  *#* $Log$
17  *#* Revision 1.3  2004/08/25 14:12:09  rasky
18  *#* Aggiornato il comment block dei log RCS
19  *#*
20  *#* Revision 1.2  2004/06/03 11:27:09  bernie
21  *#* Add dual-license information.
22  *#*
23  *#* Revision 1.1  2004/05/23 15:43:16  bernie
24  *#* Import mware modules.
25  *#*
26  *#* Revision 1.2  2004/03/24 15:48:53  bernie
27  *#* Remove Copyright messages from Doxygen output
28  *#*
29  *#* Revision 1.1  2004/01/13 12:15:28  aleph
30  *#* Move font table in program memory; add font.h
31  *#*
32  *#*/
33 #ifndef FONT_H
34 #define FONT_H
35
36 #include "avr/pgmspace.h"
37
38 /* Font size (in pixel) */
39 #define FONT_WIDTH 6
40 #define FONT_HEIGHT 8
41
42 /*! Font table */
43 extern const prog_uchar font[256 * FONT_WIDTH];
44
45 #endif /* FONT_H */