16 lines
309 B
C
16 lines
309 B
C
#ifndef _CHINESE_FONT_H_
|
|
#define _CHINESE_FONT_H_
|
|
|
|
#include "../lib/lib.h"
|
|
|
|
#define CHINESE_FONT_LEFT 1
|
|
#define CHINESE_FONT_RIGHT 1
|
|
#define CHINESE_FONT_WIDTH 16
|
|
#define CHINESE_FONT_HEIGHT 16
|
|
#define CHINESE_ENCODE_START 0x4e00
|
|
#define CHINESE_ENCODE_END 0x9fa5
|
|
|
|
extern uint8_t CHINESE_FONT_DATA[];
|
|
|
|
#endif
|