cf639365b5ba3234b37632c4b37b2bc08726518c
[bertos.git] / mware / font.h
1 /*!
2  * \file
3  * <!--
4  * Copyright (C) 2003,2004 Develer S.r.l. (http://www.develer.com/)
5  * All Rights Reserved.
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.1  2004/05/23 15:43:16  bernie
18  * Import mware modules.
19  *
20  * Revision 1.2  2004/03/24 15:48:53  bernie
21  * Remove Copyright messages from Doxygen output
22  *
23  * Revision 1.1  2004/01/13 12:15:28  aleph
24  * Move font table in program memory; add font.h
25  *
26  */
27 #ifndef FONT_H
28 #define FONT_H
29
30 #include "avr/pgmspace.h"
31
32 /* Font size (in pixel) */
33 #define FONT_WIDTH 6
34 #define FONT_HEIGHT 8
35
36 /*! Font table */
37 extern const prog_uchar font[256 * FONT_WIDTH];
38
39 #endif /* FONT_H */