Dimiter K / Mbed OS MAX32620FTHR_GPS_Tracker

Dependencies:   MAX17055 MAX32620FTHR MAX77650 SerialGPS

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers fonts.h Source File

fonts.h

00001 
00002 /* Define to prevent recursive inclusion -------------------------------------*/
00003 #ifndef __FONTS_H
00004 #define __FONTS_H
00005 
00006 
00007 /* Includes ------------------------------------------------------------------*/
00008 #include <stdint.h>
00009 
00010 /* Max size of bitmap will based on a font24 (17x24) */
00011 #define MAX_HEIGHT_FONT         24
00012 #define MAX_WIDTH_FONT          17
00013 #define OFFSET_BITMAP           54
00014 
00015 
00016 typedef struct _tFont
00017 {    
00018   const uint8_t *table;
00019   uint16_t Width;
00020   uint16_t Height;
00021   
00022 } sFONT;
00023 
00024 //#include "font8.h"
00025 //#include "font12.h"
00026 //#include "font16.h"
00027 //#include "font20.h"
00028 //#include "font24.h"
00029 
00030 
00031 extern sFONT Font24;
00032 extern sFONT Font20;
00033 extern sFONT Font16;
00034 extern sFONT Font12;
00035 extern sFONT Font8;
00036 
00037 
00038   
00039 #endif /* __FONTS_H */
00040