X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Ffonts%2Ffixed6x8.c;h=35b056db9e6bd10e12bde8c5f4e8ca5f0053f1ec;hb=4cc44c9888a0336b9d01121ec0b7ad95f4a76195;hp=978cdf2ad6865035155f2cc21038abbb7aae3994;hpb=8c3c4f75ac5e265868dbeb2e4f9f1a3e1a31deff;p=bertos.git diff --git a/bertos/fonts/fixed6x8.c b/bertos/fonts/fixed6x8.c index 978cdf2a..35b056db 100644 --- a/bertos/fonts/fixed6x8.c +++ b/bertos/fonts/fixed6x8.c @@ -27,18 +27,19 @@ * the GNU General Public License. * * Copyright 2003, 2004, 2005 Develer S.r.l. (http://www.develer.com/) - * Copyright 2001 Bernardo Innocenti + * Copyright 2001 Bernie Innocenti * * --> * + * \brief Font 8x6 IBM-PC 8bit + * * \version $Id$ * - * \author Bernardo Innocenti + * \author Bernie Innocenti * - * \brief Font 8x6 IBM-PC 8bit */ -#include "font.h" +#include static const PROGMEM uint8_t default_font_glyphs[256 * 6] = { @@ -332,6 +333,8 @@ static const PROGMEM uint8_t default_font_glyphs[256 * 6] = 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 /* ΓΏ */ }; + +#ifndef default_font struct Font default_font = { /* .glyph = */ default_font_glyphs, @@ -339,3 +342,4 @@ struct Font default_font = /* .height = */ 8 }; +#endif