lcdfonts.c

来自「MP3播放器源代码, VS1003B」· C语言 代码 · 共 36 行

C
36
字号
/**\file lcdfonts.c LCD font tables *//* note: "code" is a SDCC-8051-specific pragma that makes   the compiler allocate space from ROM *//** Horizontal bar characters for volume setting etc */code const char lcdFont_barchars[49] =   {64, 16, 16, 16, 16, 16, 64, 64,   64, 24, 24, 24, 24, 24, 64, 64,   64, 28, 28, 28, 28, 28, 64, 64,   64, 30, 30, 30, 30, 30, 64, 64,   64, 31, 31, 31, 31, 31, 64, 64,    16, 24, 28, 30, 28, 24, 16, 64,   0};/** VLSI logo */code const char lcdFont_vlsichars[33] =   {29, 29, 29, 13,  5,  3,  1, 64,   28, 28, 28, 28, 28, 28, 31, 64,   14, 29, 28, 14,  1, 29, 14, 64,   28, 28, 28, 28, 28, 28, 28, 64, 0};/** Vertical bar characters for spectrum analyzer */code const char lcdFont_vertical_barchars[65] =  {64, 64, 64, 64, 64, 64, 64, 31,   64, 64, 64, 64, 64, 64, 31, 31,      64, 64, 64, 64, 64, 31, 31, 31,   64, 64, 64, 64, 31, 31, 31, 31,      64, 64, 64, 31, 31, 31, 31, 31,   64, 64, 31, 31, 31, 31, 31, 31,   64, 31, 31, 31, 31, 31, 31, 31,   31, 31, 31, 31, 31, 31, 31, 31,   0};

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?