LCD.h
上传用户:yyyd609
上传日期:2022-07-18
资源大小:183k
文件大小:0k
源码类别:

微处理器开发

开发平台:

C/C++

  1. #ifndef __LCD_H__
  2. #define __LCD_H__
  3. #include "71x_lib.h"
  4. #define LCD_CMD_PORT (*(vu8*)0x66000000)
  5. #define LCD_DAT_PORT (*(vu8*)0x6600EFFF)
  6. void LCD_Init(void);
  7. void LCD_Goto(int line, int col);
  8. void LCD_Putc(char c);
  9. void LCD_Puts(const char *s);
  10. void LCD_Printf(const char *format, ...);
  11. #endif