/*#*
*#* $Log$
+ *#* 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
*#*
#include "font.h"
-const prog_uchar font[256 * 6] =
+const PROGMEM font[256 * 6] =
{
/* 0x00 */
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* */
0x0A, 0x09, 0x0D, 0x0A, 0x00, 0x00, /* ý */
0x1E, 0x1E, 0x1E, 0x1E, 0x1E, 0x00, /* þ */
0x00, 0x00, 0x00, 0x00, 0x00, 0x00 /* ÿ */
-};
+};
/*#*
*#* $Log$
+ *#* 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
*#*
#ifndef FONT_H
#define FONT_H
-#include "avr/pgmspace.h"
+#include "compiler.h" /* PROGMEM */
/* Font size (in pixel) */
#define FONT_WIDTH 6
#define FONT_HEIGHT 8
/*! Font table */
-extern const prog_uchar font[256 * FONT_WIDTH];
+extern const PROGMEM uint8_t font[256 * FONT_WIDTH];
#endif /* FONT_H */
/*#*
*#* $Log$
+ *#* Revision 1.9 2004/12/31 16:44:29 bernie
+ *#* Sanitize for non-Harvard processors.
+ *#*
*#* Revision 1.8 2004/11/16 21:16:28 bernie
*#* Update to new naming scheme in mware/gfx.c.
*#*
#include "gfx.h"
#include "font.h"
#include "text.h"
+
#include <debug.h>
+
/*!
* Flags degli stili algoritmici
*
/* Per ogni colonna di dot del glyph... */
for (i = 0; i < glyph_width; ++i)
{
- dots = pgm_read_byte(glyph);
+ dots = PGM_READ_CHAR(glyph);
/* Advance to next column in glyph.
* Expand: advances only once every two columns
}
else /* No style: fast vanilla copy of glyph to line buffer */
while (glyph_width--)
- *buf++ = pgm_read_byte(glyph++);
+ *buf++ = PGM_READ_CHAR(glyph++);
return c;
}
/*#*
*#* $Log$
+ *#* Revision 1.9 2004/12/31 16:44:29 bernie
+ *#* Sanitize for non-Harvard processors.
+ *#*
*#* Revision 1.8 2004/10/03 20:43:37 bernie
*#* Import changes from project_ks.
*#*
#ifndef MWARE_TEXT_H
#define MWARE_TEXT_H
-#include "compiler.h"
+#include <compiler.h>
+#include <macros.h> /* BV() */
+#include <cpu.h> /* CPU_HARVARD */
+
#include <stdarg.h>
/*!
int text_widthf(struct Bitmap *bm, const char * fmt, ...) FORMAT(__printf__, 2, 3);
/* Text formatting functions for program-memory strings (mware/text_format.c) */
-#if CPU_AVR
-#include <avr/pgmspace.h>
+#if CPU_HARVARD
int text_puts_P(const char * PROGMEM str, struct Bitmap *bm);
int text_vprintf_P(struct Bitmap *bm, const char * PROGMEM fmt, va_list ap);
int text_printf_P(struct Bitmap *bm, const char * PROGMEM fmt, ...) FORMAT(__printf__, 2, 3);
int text_xprintf_P(struct Bitmap *bm, uint8_t row, uint8_t col, uint16_t mode, const char * PROGMEM fmt, ...) FORMAT(__printf__, 5, 6);
int text_vwidthf_P(struct Bitmap *bm, const char * PROGMEM fmt, va_list ap);
int text_widthf_P(struct Bitmap *bm, const char * PROGMEM fmt, ...);
-#endif /* CPU_AVR */
+#endif /* CPU_HARVARD */
#endif /* MWARE_TEXT_H */