Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: MAX17055 MAX32620FTHR MAX77650 SerialGPS
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
Generated on Thu Jul 14 2022 11:13:12 by
1.7.2