X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=mware%2Ffont.c;h=bd19f0aff4f5b70d39bb9c9e19a6e25d130525c9;hb=13ec95fc46065b689287f537b61f2e6607be1653;hp=b8e4fef9927f35e237519a1535cb292405824504;hpb=277b540c0764dd376dcf583acdc97a2b2fd3d8e6;p=bertos.git diff --git a/mware/font.c b/mware/font.c index b8e4fef9..bd19f0af 100755 --- a/mware/font.c +++ b/mware/font.c @@ -15,6 +15,12 @@ /*#* *#* $Log$ + *#* Revision 1.5 2005/01/08 09:20:38 bernie + *#* Add missing type in declaration. + *#* + *#* Revision 1.4 2004/12/31 16:42:55 bernie + *#* Sanitize for non-Harvard processors. + *#* *#* Revision 1.3 2004/08/25 14:12:09 rasky *#* Aggiornato il comment block dei log RCS *#* @@ -43,7 +49,7 @@ #include "font.h" -const prog_uchar font[256 * 6] = +const PROGMEM uint8_t font[256 * 6] = { /* 0x00 */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* */ @@ -333,4 +339,4 @@ const prog_uchar font[256 * 6] = 0x0A, 0x09, 0x0D, 0x0A, 0x00, 0x00, /* ý */ 0x1E, 0x1E, 0x1E, 0x1E, 0x1E, 0x00, /* þ */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 /* ÿ */ -}; +};