Versión de Firmware con funciones de RAM incorporadas.

Dependencies:   mbed

Fork of VmRecorderV1dot1 by virtualmech

Doggy/xfont.h

Committer:
JuanManuelAmador
Date:
2015-07-14
Revision:
2:e818c80e6d5c
Parent:
0:3d456b8ce449

File content as of revision 2:e818c80e6d5c:

#ifndef FONT_H
#define FONT_H

typedef struct {
    unsigned char   cod; // unicode value
    unsigned char   wid; // data width in pixels
    unsigned char   hei; // data height in pixels (multiple of 8)
    unsigned char   tlc; // form allows left top crening
    unsigned char   trc; // form allows right top crening
    unsigned char   blc; // form allows left bottom crening
    unsigned char   brc; // form allows right bottom crening
    const char*     bmp;
} XGlyph;

#endif