📄 lcd.h
字号:
#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
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -