11 lines
176 B
C
11 lines
176 B
C
#ifndef __LCD_DATA_H_
|
|
#define __LCD_DATA_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
/*ASCII字模数据声明*/
|
|
extern const uint8_t LCD_F8x16[][16];
|
|
extern const uint8_t LCD_F6x8[][6];
|
|
|
|
#endif
|