您的位置 首页 方案

AT89C2051使用中止发生PWM

原理图includeREG2051HincludeintrinshdefineuintunsignedintdefineucharunsignedcharconstTH_600=0xfd;const

原理图

#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++;
}
}
}

声明:本文内容来自网络转载或用户投稿,文章版权归原作者和原出处所有。文中观点,不代表本站立场。若有侵权请联系本站删除(kf@86ic.com)https://www.86ic.net/fangan/259223.html

为您推荐

联系我们

联系我们

在线咨询: QQ交谈

邮箱: kf@86ic.com

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

返回顶部