//打开串口调试程序,将波特率设置为2400,无奇偶校验
#include <REG52.H> /* special function register declarations */
/* for the intended 8051 derivative */
#include <stdio.h> /* prototype declarations for I/O functions */
#ifdef MONITOR51 /* Debugging with Monitor-51 needs */
char code reserve [3] _at_ 0x23; /* space for serial interrupt if */
#endif /* Stop Exection with Serial Intr. */
/* is enabled */
sbit KEY=P3^2;
void delay(unsigned int U)
{
while(--U);
}
/*------------------------------------------------
The main C function. Program execution starts
here after stack initialization.
------------------------------------------------*/
void main (void)
{
/*------------------------------------------------
Setup the serial port for 1200 baud at 11.0592MHz.
------------------------------------------------*/
#ifndef MONITOR51
SCON = 0x50; /* SCON: mode 1, 8-bit UART, enable rcvr */
TMOD |= 0x20; /* TMOD: timer 1, mode 2, 8-bit reload */
TH1 = 0xf3; /* TH1: reload value for 2400 baud @ 12MHz */
TR1 = 1; /* TR1: timer 1 run */
TI = 1; /* TI: set TI to send first char of UART */
#endif
/*------------------------------------------------
Note that an embedded program never exits (because
there is no operating system to return to). It
must loop and execute forever.
------------------------------------------------*/
while (1)
{
if(!KEY)
{
delay(10000);
if(!KEY)
{
printf ("This programer test ok!\n");
printf ("12:25:26\n");
}
}
}
}
没有合适的资源?快使用搜索试试~ 我知道了~
资源推荐
资源详情
资源评论
收起资源包目录
51与pc通信.zip (30个子文件)
51与pc通信
23-串口通信(数据通信)
串口通讯.OBJ 2KB
串口通讯.LST 4KB
串口通信.M51 7KB
串口通信.lnp 45B
串口通信.plg 171B
串口通信.Uv2 2KB
rs232.c 2KB
rs232.LST 6KB
串口通讯.c 2KB
串口通信.Opt 1KB
rs232.OBJ 5KB
串口通信_Uv2.Bak 2KB
串口通信.hex 811B
串口通信_Opt.Bak 1KB
串口通信 5KB
23-串口通信(遥控)
串口通讯.OBJ 2KB
串口通讯.LST 4KB
串口通信.M51 6KB
串口通信.lnp 45B
串口通信.plg 175B
串口通信.Uv2 2KB
rs232.c 1KB
rs232.LST 4KB
串口通讯.c 2KB
串口通信.Opt 1017B
rs232.OBJ 4KB
串口通信_Uv2.Bak 2KB
串口通信.hex 531B
串口通信_Opt.Bak 1020B
串口通信 4KB
共 30 条
- 1
资源评论
- lc_ocircuit2013-04-04很好很强大,如果注释是中文的就更好了
- hustmurphy2017-06-23使用资料,感谢分享,很好很强大啊
- DoubleY19122018-04-16资源很好,对我很有帮助
snail_dongbin
- 粉丝: 195
- 资源: 21
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功