新闻中心

EEPW首页>嵌入式系统>设计应用> AT89C2051利用中断产生PWM

AT89C2051利用中断产生PWM

作者: 时间:2016-11-25 来源:网络 收藏
原理图


本文引用地址: //m.amcfsurvey.com/article/201611/321335.htm

#include "REG2051.H"
#include "intrins.h"
#define uint unsigned int
#define uchar unsigned char


const TH_600=0xfd;
const TL_600=0xd4;
const TH_1200=0xfb;
const TL_1200=0x7c;
const TH_2400=0xf6;
const TL_2400=0xa0;

sbit PWM=P3^7;
bit ld=0; //上一次发送的数据
uchar _pool[10];//数据头
uchar _length;//当前数组长度
uchar _index;//当前索引
uchar _bit_index;//位索引


void onKeyDown(uchar,uchar);
void push(uchar);
void init();

void main(){
unsigned int r,c,prsd;
init();
while(1){
P1=0x0f;
if(P1!=0x0f){
r=~P1-0xf0;
P1=0xf0;
c=~(P1>>4)-0xf0;
if(!prsd){
onKeyDown(r,c);
prsd=1;
}
}else{
prsd=0;
}
}
}

void init(){
_length=0;

PWM=0;//启动时低电平
TMOD=0x01;
TH0=0x9E;
TL0=0x57;
ET0=1;
TF0=1;
TR0=1;//打开计时器
}

void push(uchar xcode){
_pool[_length]=xcode;
_length++;
}

void reset(){
_index=0;
_length=0;
_bit_index=0;
}

void onKeyDown(uchar row,uchar column){
unsigned char xcode;
reset();
push(0xaa);//压入地址码
xcode=row<<4+column;
push(xcode); //压入键盘数据
EA=1;
while(EA);
}

void timer_pwm() interrupt 1{
uchar current,tmp;
if(PWM){
PWM=~PWM;
TH0=TH_600;
TL0=TL_600;
}else{
if(_index==_length){
EA=0;
}else{
PWM=~PWM;
_bit_index++;
current=_pool[_index];
tmp=current<<_bit_index;
ld=CY;
if(ld){
TH0=TH_1200;
TL0=TL_1200;
}else{
TH0=TH_600;
TL0=TL_600;
}
}
if(_bit_index==8){
_bit_index=0;
_index++;
}
}
}


上一页 1 2 下一页

关键词:AT89C2051中断PW

评论


技术专区

关闭