| 1234567891011121314151617181920 |
- #ifndef QC12864B_H
- #define QC12864B_H
- #include "sys.h"
- #include "main.h"
- #define SCLK PAout->b0 //时钟信号
- #define SID PAout->b1 //数据信号
- #define CS PAout->b2 //片选信号
- #define CH PAout->b3 //并行、串行选择信号
- #define RST PAout->b4 //复位信号
- extern char QC12864B_String[4][2 * 8 + 1];
- void LcdInit ( void );
- void LcdPrint ( u8 X, uc8 *s );
- void LcdRefresh ( void );
- #endif
|