<html>
<head>
<title>标准库函数 - UpdateLCD</title>
<meta http-equiv="Content-Type" contents="text/html;charset=gb2312">
<link rel="stylesheet" href="clib.css">
</head>
<body>
<table border=0 cellpadding=0 cellspacing=0 bgcolor=#FFFFFF>
<tr><td width=150 valign=top>
<!-- begin left nav -->
<!-- begin logo -->
<table border=0 cellpadding=0 cellspacing=0 bgcolor=#FFFFFF>
<tbody>
<tr>
<td><a href="../clib.html"><img border=0 width=150 height=65 src="images/system.gif"></a></td>
</tr>
</tbody>
</table>
<!-- end logo -->
<!-- begin function list -->
<table border=0 cellpadding=5 cellspacing=0 bgcolor=#FFFFFF width=150>
<tbody>
<tr>
<td>
请选定要查看的函数
</td>
</tr>
<tr>
<td>
<ul>
<li><a href="ClearScreen.html">ClearScreen</a></li>
<li><a href="DispBCD.html">DispBCD</a></li>
<li><a href="SetScrollBar.html">SetScrollBar</a></li>
<li><a href="TextOut.html">TextOut</a></li>
<font color=red>
<li><a href="UpdateLCD.html">UpdateLCD</a></li>
</font>
<li><a href="bell.html">bell</a></li>
<li><a href="block.html">block</a></li>
<li><a href="clrscr.html">clrscr</a></li>
<li><a href="cursor.html">cursor</a></li>
<li><a href="delay.html">delay</a></li>
<li><a href="get_chi_font.html">get_chi_font</a></li>
<li><a href="get_eng_font.html">get_eng_font</a></li>
<li><a href="getkey.html">getkey</a></li>
<li><a href="getpixel.html">getpixel</a></li>
<li><a href="gotoxy.html">gotoxy</a></li>
<li><a href="line.html">line</a></li>
<li><a href="move.html">move</a></li>
<li><a href="noidle.html">noidle</a></li>
<li><a href="outtextxy.html">outtextxy</a></li>
<li><a href="putpixel.html">putpixel</a></li>
<li><a href="pyfc.html">pyfc</a></li>
<li><a href="rectangle.html">rectangle</a></li>
<li><a href="sleep.html">sleep</a></li>
<li><a href="textmode.html">textmode</a></li>
<li><a href="time.html">time</a></li>
<li><a href="write_chi_font.html">write_chi_font</a></li>
<li><a href="write_eng_font.html">write_eng_font</a></li>
</ul>
</td>
</tr>
<tr>
<td>目前共有27个函数</td>
</tr>
</tbody>
</table>
<!-- end function list -->
</td>
<td>
<table border=0 cellpadding=0 cellspacing=0 width=600 height=500>
<tbody>
<tr>
<td width=1 bgcolor=#649ACC><img border=0 width=1 height=1 src="images/null.gif"></td>
<td>
<!-- beging of middle part -->
<div>
<table border=0 cellpadding=0 cellspacing=0 width=100% height=500>
<tbody>
<tr><td height=1 width=1 bgcolor=#649ACC><img border=0 width=1 height=1 src="images/null.gif"></td></tr>
<tr><td height=62 valign=bottom><b><font size=5>TextOut</font></b></td></tr>
<tr><td>
<table border=0 cellpadding=0 cellspacing=0 height=1 width=100%>
<tbody>
<tr>
<td height=1 width=150 bgcolor=#649ACC><img border=0 width=1 height=1 src="images/null.gif"></td>
<td height=1 bgcolor=#ffffff><img src="images/null.gif" border=0 width=1 height=1></td>
</tr>
</tbody>
</table>
</td></tr>
<tr><td>
<div>
<!-- begin main body -->
<table border=0 cellpadding=5 cellspacing=5>
<tr><td>
<pre>
原型:extern void UpdateLCD(unsigned int mode);
用法:#include <system.h>
功能:以指定模式刷新屏幕
说明:文曲星屏幕可以按大行(行高16点)或小行(行高8点)显示。
以CC300的屏幕为例,液晶分辨率为112*48即横向可显示112点,纵向可显示48点
由于一个大行占据16点,小行占据8点,故可显示48/16=3大行,或48/8=6小行。
大行和小行可以同屏显示。具体哪一行为大行,娜一行为小行由mode来决定。
mode低字节从bit7-bit0每一位代表一行,为1表示大行,为0表示小行。举例如下:
mode值 对应二进制值 屏幕显示状态
0xE0 11100000 三大行
0xC0 11000000 两大行,两小行
0x80 10000000 一大行,四小行
0x00 00000000 六小行
0x20 00100000 两小行,一大行,两小行
0x40 01000000 一小行,一大行,三小行
...
以此类推。
举例:
// TextOut.c
#include <system.h>
main()
{
clrscr();
printf("Line 1\n");
printf("Line 2\n");
printf("Line 3\n");
printf("Line 4\n");
printf("Line 5\n");
printf("Line 6\n");
UpdateLCD(0x00); // all are visible
getchar();
UpdateLCD(0xE0); // only first 3 lines visible
getchar();
UpdateLCD(0x40); // line 6 invisible
getchar();
UpdateLCD(0x20); // line 6 invisible
getchar();
return 0;
}
相关函数:<a href="textmode.html">textmode</a>
</pre>
</td></tr>
</table>
<!-- end main body -->
</td></tr>
<tr><td height=1 width=1 bgcolor=#649ACC><img border=0 width=1 height=1 src="images/null.gif"></td></tr>
</tbody>
</table>
</div>
<!-- end of middle part -->
</td>
<td width=1 bgcolor=#649ACC><img border=0 width=1 height=1 src="images/null.gif"></td>
</tr>
</tbody>
</table>
</td>
</tr>
</table>
</body>
</html>
没有合适的资源?快使用搜索试试~ 我知道了~
C语言运行时库
共140个文件
html:112个
gif:18个
css:8个
4星 · 超过85%的资源 需积分: 14 34 下载量 163 浏览量
2010-06-09
20:50:11
上传
评论
收藏 179KB RAR 举报
温馨提示
C语言运行时库C语言运行时库C语言运行时库C语言运行时库C语言运行时库C语言运行时库C语言运行时库C语言运行时库C语言运行时库C语言运行时库C语言运行时库C语言运行时库C语言运行时库C语言运行时库C语言运行时库C语言运行时库C语言运行时库C语言运行时库
资源推荐
资源详情
资源评论
收起资源包目录
C语言运行时库C语言运行时库 (140个子文件)
clib.css 243B
clib.css 243B
clib.css 243B
clib.css 243B
clib.css 243B
clib.css 243B
clib.css 243B
clib.css 243B
Thumbs.db 6KB
Thumbs.db 6KB
stdio.gif 3KB
memory.gif 3KB
system.gif 3KB
stdlib.gif 3KB
string.gif 3KB
math.gif 3KB
ctype.gif 3KB
folder.gif 3KB
logo.gif 2KB
clib.gif 613B
null.gif 43B
null.gif 43B
null.gif 43B
null.gif 43B
null.gif 43B
null.gif 43B
null.gif 43B
null.gif 43B
UpdateLCD.html 5KB
get_eng_font.html 5KB
get_chi_font.html 5KB
time.html 5KB
strncmp.html 5KB
strncpy.html 5KB
write_eng_font.html 5KB
strncmpi.html 5KB
strnicmp.html 5KB
strcmpi.html 5KB
stricmp.html 5KB
memicmp.html 5KB
printf.html 5KB
bcmp.html 5KB
strtok.html 5KB
strpbrk.html 5KB
memcmp.html 5KB
strcmp.html 5KB
memccpy.html 5KB
outtextxy.html 5KB
TextOut.html 5KB
bcopy.html 5KB
rectangle.html 5KB
strstr.html 5KB
memchr.html 5KB
pyfc.html 5KB
strcpy.html 5KB
memmove.html 5KB
noidle.html 5KB
gotoxy.html 5KB
move.html 5KB
line.html 5KB
memcpy.html 5KB
strncat.html 5KB
block.html 5KB
putpixel.html 5KB
bzero.html 5KB
write_chi_font.html 5KB
strcspn.html 5KB
movmem.html 5KB
strcat.html 5KB
stpcpy.html 5KB
strchr.html 5KB
strdup.html 5KB
setmem.html 5KB
memset.html 5KB
getpixel.html 5KB
strset.html 4KB
strrev.html 4KB
DispBCD.html 4KB
strupr.html 4KB
strlwr.html 4KB
textmode.html 4KB
strlen.html 4KB
clrscr.html 4KB
ClearScreen.html 4KB
SetScrollBar.html 4KB
bell.html 4KB
cursor.html 4KB
delay.html 4KB
sleep.html 4KB
getkey.html 4KB
atan2.html 4KB
sin.html 4KB
tan.html 4KB
asin.html 4KB
acos.html 4KB
cos.html 4KB
atan.html 4KB
floor.html 4KB
ceil.html 4KB
fabs.html 4KB
共 140 条
- 1
- 2
资源评论
- 被称作王的男人2017-06-02这个资源不错,挺全,学习C库函数的实现!
- sxgtc2019-04-29确定是运行时库么?
- Neverlandcc2015-06-09还行,C语言库函数,可以好好看看
- elevenilyyi2011-09-13这个资源不错,挺全,学习C库函数的实现!
隽永Jasen
- 粉丝: 53
- 资源: 52
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功