百度网盘下载地址(988):点击下载
#include "reg51.h"
#include "intrins.h"
#define uint unsigned int /* 宏定义 */
#define uchar unsigned char /* 宏定义 */
sbit RS = P3 ^ 2; /* 液晶控制端口 */
sbit RW = P3 ^ 1; /* 液晶控制端口 */
sbit EN = P3 ^ 0; /* 液晶控制端口 */
sbit Bullet_one = P0 ^ 0; /* 子弹打破杜邦线1 */
sbit Bullet_two = P0 ^ 1; /* 子弹打破杜邦线2 */
uchar shi, fen, miao;
uchar count = 0, num = 0;
uchar code table[] = " >Time Measure<";
bit flag = 0; /* 计时开始标志位 */
bit one = 1; /* 子弹判断标志位 */
void Read_Busy() /* 忙检测函数,判断bit7是0,允许执行;1禁止 */
{
unsigned char sta; /* */
P1 = 0xff;
RS = 0;
RW = 1;
do