X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=mware%2Ffont.h;h=829c263f191bdae92f851902dfb55805ba9dc7d4;hb=72f7d07b915bc6a874ec820de585c6d017c81a94;hp=afdd39c097a039bbca5bd2e309685b845f302cde;hpb=489911fbfa0f1490b44f7868cc4286bd5a466341;p=bertos.git diff --git a/mware/font.h b/mware/font.h index afdd39c0..829c263f 100755 --- a/mware/font.h +++ b/mware/font.h @@ -1,8 +1,8 @@ /*! * \file * * * \version $Id$ @@ -14,6 +14,12 @@ /*#* *#* $Log$ + *#* Revision 1.6 2005/04/11 19:10:28 bernie + *#* Include top-level headers from cfg/ subdir. + *#* + *#* Revision 1.5 2005/03/01 23:26:45 bernie + *#* Use new CPU-neutral program-memory API. + *#* *#* Revision 1.4 2004/12/31 16:42:55 bernie *#* Sanitize for non-Harvard processors. *#* @@ -33,16 +39,21 @@ *#* Move font table in program memory; add font.h *#* *#*/ -#ifndef FONT_H -#define FONT_H +#ifndef MWARE_FONT_H +#define MWARE_FONT_H -#include "compiler.h" /* PROGMEM */ +#include /* uint8_t */ +#include /* PROGMEM */ -/* Font size (in pixel) */ -#define FONT_WIDTH 6 -#define FONT_HEIGHT 8 +/*! + * \name Font size (in pixel) + * \{ + */ +#define FONT_WIDTH 6 +#define FONT_HEIGHT 8 +/* \} */ /*! Font table */ extern const PROGMEM uint8_t font[256 * FONT_WIDTH]; -#endif /* FONT_H */ +#endif /* MWARE_FONT_H */