找回密码
 注册会员
更新自动建库工具PCB Footprint Expert 2024.04 Pro / Library Expert 破解版

外部中断唤醒掉电模式问题 请教

[复制链接]
admin 发表于 2012-9-2 05:57:04 | 显示全部楼层 |阅读模式

本文包含原理图、PCB、源代码、封装库、中英文PDF等资源

您需要 登录 才可以下载或查看,没有账号?注册会员

×
我的任务是用数码管走秒表 在几秒后进入掉电模式 经中断唤醒 结果程序在进入掉电模式后 尽管外部中断了可是数码管一直没有走 请高手指出问题所在 谢谢
#include <REGX51.H>
#define uchar unsigned char
#define uint unsigned int
uchar num,num1;
uchar code table[]={0x3f,0x06,0x5b,0x4f,
0x66,0x6d,0x7d,0x07,
0x7f,0x6f,0x77,0x7c,
0x39,0x5e,0x79,0x71};
void delay1(uint z)
{ uint x,y;
for(x=z;x>0;x--)
for(y=120;y>0;y--);
}
void init()
{ TMOD=0x01;
TH0=(65536-50000)/256;
TL0=(65536-50000)%256;
EA=1;
ET0=1;
EX0=1;
TR0=1;
}
void display(uchar shi,uchar ge)
{ P1=0xfe;
P0=table[shi];
delay1(1);
P1=0xFD;
P0=table[ge];
delay1(1);
}
void main()
{ init();
while(1)
{ if(num1>20)
num1=0;
if(num1==5)
{ ET0=0;
PCON=0x02;
};
display(num1/10,num1%10);

}
}
void T0_time() interrupt 1
{ TH0=(65536-50000)/256;
TL0=(65536-50000)%256;
num++;
if(num==20)
{ num1++;
num=0;
}
}
void T0_int() interrupt 0
{ PCON=0;
ET0=1;
}
*滑块验证:
您需要登录后才可以回帖 登录 | 注册会员

本版积分规则

QQ|手机版|MCU资讯论坛 ( 京ICP备18035221号-2 )|网站地图

GMT+8, 2024-11-24 01:42 , Processed in 0.049956 second(s), 8 queries , Redis On.

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表