/**************************************************************************/
typedef struct
{
- const uint8_t heightPages; // height, in pages (8 pixels), of the font's characters
+ const uint8_t height; // height of the font's characters
const uint8_t startChar; // the first character in the font (e.g. in charInfo and data)
+ const uint8_t endChar; // the last character in the font (e.g. in charInfo and data)
const FONT_CHAR_INFO* charInfo; // pointer to array of char information
const uint8_t* data; // pointer to generated array of character visual representation
} FONT_INFO;