Files
STM32F103/STM32F103C8T6/Drivers/BSP/LCD/hz16_data.h
2026-07-14 17:51:39 +08:00

16 lines
302 B
C
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/* 16×16 CJK 字库,由 font_gen.py 生成(自定义) */
#ifndef HZ16_DATA_H
#define HZ16_DATA_H
#include <stdint.h>
#define CJK_BYTES_PER_CHAR 32
#define CJK_WIDTH 16
#define CJK_HEIGHT 16
#define CJK_NUM_CHARS 18
const uint8_t* cjk_get_bitmap(uint16_t unicode);
#endif /* HZ16_DATA_H */