lcd.h
来自「嵌入式下实验的新的驱动设计源代码」· C头文件 代码 · 共 58 行
H
58 行
#ifndef _LCD_H#define _LCD_Htypedef struct{ short x; short y; short a; short b; unsigned char c; int xorm;} ellipse_str_t;typedef struct{ short x1; short y1; short x2; short y2; int c;} rect_t;typedef struct{ short x; short y1; short y2; unsigned char c; int xorm;} vline_t;typedef struct{ short x; short y; unsigned char c; int xorm;} bigpixel_t;typedef struct{ short x; short y; unsigned char *buf;} textout_t;typedef struct{ short x0; short y0; short width; short height; unsigned char *pcc; int xorm;} chinese_t;#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?