您的位置 首页 编程

MSP430与DS18B20数码管显现(中止法)

includemsp430x14xh>typedefunsignedcharuchar;typedefunsignedintuint;*****18B20部分的接口定义********defin

#include
typedef unsigned char uchar;
typedef unsigned int uint;
/*****18B20部分的接口界说********/
#define DQ1 P1OUT |= BIT6
#define DQ0 P1OUT &= ~BIT6
#define DQ_in P1DIR &= ~BIT6
#define DQ_out P1DIR |= BIT6
#define DQ_val (P1IN & BIT6)
/*****数码管部分的接口界说********/
#define wei_h P5OUT|= BIT5
#define wei_l P5OUT&= ~BIT5
#define duan_l P6OUT &= ~BIT6
#define duan_h P6OUT |= BIT6
//数码管七段码;0–f
uchar table[16] = {0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,
0x7f,0x6f,0x77,0x7c,0x39,0x5e,0x79,0x71};
uchar table1[16] = {0xbf,0x86,0xdb,0xcf,0xe6,0xed,0xfd,
0x87,0xff,0xef,0xf7,0xfc,0xb9,0xde,0xf9,0xf1};//有点
uchar tflag,num=0 ;
int tvalue;
uchar disdata[4];
/***********18B20部分程序******************/
/*******************************************
函数称号:DelayNus
功 能:完成N个微秒的延时
参 数:n–延时长度
返回值 :无
阐明 :定时器A的计数时钟是1MHz,CPU主频8MHz
所以经过定时器延时可以得到极为准确的
us级延时
********************************************/
void DelayNus(uint n)
{
CCR0 = n;
TACTL |= MC_1; //增计数到CCR0
while(!(TACTL & BIT0)); //等候
TACTL &= ~MC_1; //中止计数
TACTL &= ~BIT0; //铲除中止标志
}
/*******************************************
函数称号:Init_18B20
功 能:对DS18B20进行复位操作
参 数:无
返回值 :初始化状况标志:1–失利,0–成功
********************************************/
uchar Init_18B20(void)
{
uchar Error;

DQ_out;
_DINT();
DQ0;
DelayNus(500);
DQ1;
DelayNus(55);
DQ_in;
_NOP();
if(DQ_val)
{
Error = 1; //初始化失利
}
else
{
Error = 0; //初始化成功
}
DQ_out;
DQ1;
_EINT();

DelayNus(400);

return Error;//此处假如 Error = 1,后边就会呈现死循环,表明18B20或许坏了
}
/*******************************************
函数称号:Write_18B20
功 能:向DS18B20写入一个字节的数据
参 数:wdata–写入的数据
返回值 :无
********************************************/
void Write_18B20(uchar wdata)
{
uchar i;

_DINT();
for(i = 0; i < 8;i++)
{
DQ0;
DelayNus(6); //延时6us
if(wdata & 0X01) DQ1;
else DQ0;
wdata >>= 1;
DelayNus(50); //延时50us
DQ1;
DelayNus(10); //延时10us
}
_EINT();
}

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

为您推荐

联系我们

联系我们

在线咨询: QQ交谈

邮箱: kf@86ic.com

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

微信扫一扫关注我们

返回顶部