共2条
1/1 1 跳转至页
AVR,DS18B20 哪位大侠有用AVR操纵DS18B20的C源程序啊?

问
我正在用mega16操纵DS18B20,但是现在用ICCAVR怎么也写不出可以正常工作的程序。不知哪位大侠有这方面的经验啊?
答 1:
这是某位网友的作品(可能就是在21ic下载的,我借助它编写了PPC8260上面读DS2520的程序,不敢掠美,特希望作者现一下身)
#include "io2313.h"
#include "macros.h"
#define BOOL unsigned char
#define TRUE 1
#define FALSE 0
#define SET_BIT(x, y) (x|=(1<<y))
#define CLR_BIT(x, y) (x&=~(1<<y))
#define GET_BIT(x, y) ((x&(1<<y))>>y)
#define PULLING_LOW() SET_BIT(DDRD, 0)
#define PULLING_UP() CLR_BIT(DDRD, 0)
#define READ_DQ() GET_BIT(PIND, 0)
#define SKIP_ROM 0xCC
#define READ_RAM 0xBE
#define CONVERT_T 0x44
void ShortDelay(unsigned char tt)
{
asm("_L2: subi R16,1"); // 1t
asm(" nop") // 1t
asm(" brne _L2"); // 2t/1t
asm(" nop"); // 1t
asm(" ret"); // 4t
}
unsigned char W1_Reset()
{
unsigned char c;
PULLING_LOW();
ShortDelay(198); // 500us
ShortDelay(198);
ShortDelay(198);
ShortDelay(198);
ShortDelay(198);
PULLING_UP();
ShortDelay(148); // 75us
c = READ_DQ();
if (c == 0x01)
{
return FALSE;
}
ShortDelay(198); // 300us
ShortDelay(198);
ShortDelay(198);
c = READ_DQ();
if (c == 0x00)
{
return FALSE;
}
return TRUE;
}
unsigned char W1_BitIO(unsigned char b)
{
if (b)
{
PULLING_LOW();
ShortDelay(2); //2us
PULLING_UP();
ShortDelay(18); //10us
b = READ_DQ();
ShortDelay(118); //60us
}
else
{
PULLING_LOW();
ShortDelay(2); //2us
PULLING_LOW();
ShortDelay(18); //10us
b = READ_DQ();
ShortDelay(118); //60us
PULLING_UP();
}
return b;
}
unsigned char W1_SendByte(unsigned char c)
{
unsigned char i = 8;
do
{
c = c>>1|(W1_BitIO(c&1)?0x80:0);
} while(--i);
return c;
}
unsigned char W1_ReadByte()
{
return W1_SendByte(0xFF);
}
unsigned char W1_Command(unsigned c)
{
if (W1_Reset())
{
W1_SendByte(SKIP_ROM);
W1_SendByte(c);
return 1;
}
else
{
return 0;
}
}
int ReadTemperature()
{
union
{
unsigned char c[2];
int i;
} temp;
if (W1_Command(READ_RAM))
{
temp.c[0] = W1_ReadByte();
temp.c[1] = W1_ReadByte();
if (W1_Command(CONVERT_T))
{
;
}
else
{
return -1000;
}
return (int)(temp.i*5/4+1)/2;
}
else
{
return -1000;
}
}
答 2: 谢谢hudaidai了,也感谢原作者。谢谢两位了,我来用用看吧! 答 3: thank very much 答 4: 有本介绍icc的书上有现成的原程序 答 5: 我的网上有
#include "io2313.h"
#include "macros.h"
#define BOOL unsigned char
#define TRUE 1
#define FALSE 0
#define SET_BIT(x, y) (x|=(1<<y))
#define CLR_BIT(x, y) (x&=~(1<<y))
#define GET_BIT(x, y) ((x&(1<<y))>>y)
#define PULLING_LOW() SET_BIT(DDRD, 0)
#define PULLING_UP() CLR_BIT(DDRD, 0)
#define READ_DQ() GET_BIT(PIND, 0)
#define SKIP_ROM 0xCC
#define READ_RAM 0xBE
#define CONVERT_T 0x44
void ShortDelay(unsigned char tt)
{
asm("_L2: subi R16,1"); // 1t
asm(" nop") // 1t
asm(" brne _L2"); // 2t/1t
asm(" nop"); // 1t
asm(" ret"); // 4t
}
unsigned char W1_Reset()
{
unsigned char c;
PULLING_LOW();
ShortDelay(198); // 500us
ShortDelay(198);
ShortDelay(198);
ShortDelay(198);
ShortDelay(198);
PULLING_UP();
ShortDelay(148); // 75us
c = READ_DQ();
if (c == 0x01)
{
return FALSE;
}
ShortDelay(198); // 300us
ShortDelay(198);
ShortDelay(198);
c = READ_DQ();
if (c == 0x00)
{
return FALSE;
}
return TRUE;
}
unsigned char W1_BitIO(unsigned char b)
{
if (b)
{
PULLING_LOW();
ShortDelay(2); //2us
PULLING_UP();
ShortDelay(18); //10us
b = READ_DQ();
ShortDelay(118); //60us
}
else
{
PULLING_LOW();
ShortDelay(2); //2us
PULLING_LOW();
ShortDelay(18); //10us
b = READ_DQ();
ShortDelay(118); //60us
PULLING_UP();
}
return b;
}
unsigned char W1_SendByte(unsigned char c)
{
unsigned char i = 8;
do
{
c = c>>1|(W1_BitIO(c&1)?0x80:0);
} while(--i);
return c;
}
unsigned char W1_ReadByte()
{
return W1_SendByte(0xFF);
}
unsigned char W1_Command(unsigned c)
{
if (W1_Reset())
{
W1_SendByte(SKIP_ROM);
W1_SendByte(c);
return 1;
}
else
{
return 0;
}
}
int ReadTemperature()
{
union
{
unsigned char c[2];
int i;
} temp;
if (W1_Command(READ_RAM))
{
temp.c[0] = W1_ReadByte();
temp.c[1] = W1_ReadByte();
if (W1_Command(CONVERT_T))
{
;
}
else
{
return -1000;
}
return (int)(temp.i*5/4+1)/2;
}
else
{
return -1000;
}
}
答 2: 谢谢hudaidai了,也感谢原作者。谢谢两位了,我来用用看吧! 答 3: thank very much 答 4: 有本介绍icc的书上有现成的原程序 答 5: 我的网上有
共2条
1/1 1 跳转至页
回复
有奖活动 | |
---|---|
【EEPW电子工程师创研计划】技术变现通道已开启~ | |
发原创文章 【每月瓜分千元赏金 凭实力攒钱买好礼~】 | |
【EEPW在线】E起听工程师的声音! | |
“我踩过的那些坑”主题活动——第001期 | |
高校联络员开始招募啦!有惊喜!! | |
【工程师专属福利】每天30秒,积分轻松拿!EEPW宠粉打卡计划启动! | |
送您一块开发板,2025年“我要开发板活动”又开始了! | |
打赏了!打赏了!打赏了! |
打赏帖 | |
---|---|
【我踩过的那些坑】结构堵孔导致的喇叭无声问题被打赏50分 | |
【我踩过的那些坑】分享一下调试一款AD芯片的遇到的“坑”被打赏50分 | |
电流检测模块MAX4080S被打赏10分 | |
【我踩过的那些坑】calloc和malloc错误使用导致跑飞问题排查被打赏50分 | |
多组DCTODC电源方案被打赏50分 | |
【我踩过的那些坑】STM32cubeMX软件的使用过程中的“坑”被打赏50分 | |
新手必看!C语言精华知识:表驱动法被打赏50分 | |
【我踩过的那些坑】杜绑线问题被打赏50分 | |
【我踩过的那些坑】STM32的硬件通讯调试过程的“坑”被打赏50分 | |
【我踩过的那些坑】晶振使用的问题被打赏100分 |