LCD.h
资源名称:str711USB.rar [点击查看]
上传用户:yyyd609
上传日期:2022-07-18
资源大小:183k
文件大小:0k
源码类别:
微处理器开发
开发平台:
C/C++
- #ifndef __LCD_H__
- #define __LCD_H__
- #include "71x_lib.h"
- #define LCD_CMD_PORT (*(vu8*)0x66000000)
- #define LCD_DAT_PORT (*(vu8*)0x6600EFFF)
- void LCD_Init(void);
- void LCD_Goto(int line, int col);
- void LCD_Putc(char c);
- void LCD_Puts(const char *s);
- void LCD_Printf(const char *format, ...);
- #endif