REVISION
Definition in file font.h.
#include "../feature.h"
Include dependency graph for font.h:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Data Structures | |
| struct | st_FONT |
| Font Structure Definition. More... | |
Enumerations | |
| enum | LCD_FONT { FONT_BR17 = 0, FONT_CLOCK8 = 1, FONT_MAIN14 = 2, FONT_MODE6 = 3, FONT_TITLE10 = 4, FONT_FM32 = 5, FONT_USER = 6, FONT_NULL = 0x7fff } |
| LCD Font Enumeration. More... | |
|
|
LCD Font Enumeration. DO NOT MODIFY THE ODER OF THIS DEFINITION. THIS HAS BEEN REFERENCED IN USER INTERFACE CODE.
Definition at line 37 of file font.h. Referenced by LCD_printFld(). 00037 {
00038 #ifdef BOOTLOADER
00039 FONT_MAIN14
00040 #else
00041 FONT_BR17 = 0,
00042 FONT_CLOCK8 = 1,
00043 FONT_MAIN14 = 2,
00044 FONT_MODE6 = 3,
00045 FONT_TITLE10= 4,
00046 FONT_FM32 = 5,
00047 FONT_USER = 6,
00048 #endif
00049 FONT_NULL = 0x7fff
00050 } LCD_FONT;
|
1.3.9.1