您的位置 首页 产品

DAC0832数模转化试验

#includereg52.h>#includeintrins.h>#defineucharunsignedchar#defineuintunsignedintuchartt;uintte

#include

#include
#define uchar unsigned char
#define uint unsigned int
uchar tt;
uint temp;

void delay(uint z)
{
uint x,y;
for(x=110;x>0;x–)
for(y=z;y>0;y–);
}
void main()
{
TMOD=0x01;
TH0=(65536-50000)/256;
TL0=(65536-50000)%256;
EA=1;
ET0=1;
TR0=1;
while(1)
{

for(temp=0x80;temp<0xff;temp++)
{
P0=temp;
delay(10);

}
for(temp=0xff;temp>0x80;temp–)
{
P0=temp;
delay(10);
}

}
}

void timer0() interrupt 1
{
TH0=(65536-50000)/256;
TL0=(65536-50000)%256;
tt++;
}

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

为您推荐

联系我们

联系我们

在线咨询: QQ交谈

邮箱: kf@86ic.com

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

微信扫一扫关注我们

返回顶部