📄 lcdchar.h
字号:
/*
*************************************************************************
* Copyright (c) 2003, The Lab of Embedded System and Net Security,WHUT..
* All rights reserved.
*
* Filename: lcdchar.h
* Discription: This file deals with lcd text output
*
* version: 1.0
* Author: Qiu Yanfei <qyfhm@tom.com>
* Accomplished Date: 2004/7/28 19:55:00
*************************************************************************
*/
#ifndef __LCDCHAR_H__
#define __LCDCHAR_H__
#include "..\cpu\def.h"
//the height of a char
#define CHAR_HEIGHT 16
//the width of a char
#define CHAR_WIDTH 8
// the width of a chinese
#define CHINESE_WIDTH 16
void LCD_SetOutWindow(S32 x0, S32 y0, S32 x1, S32 y1, U8 bkColor, U8 frntColor);
void LCD_Printf(char *fmt,...);
void LCD_SendString(char *pt);
void setcolor(unsigned char color);
U8 getcolor(void);
U8 getbkcolor(void);
void gotoxy(unsigned int x,unsigned int y);
void setbkcolor(unsigned char color);
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -