c51-Problem with ds1820 - no value for the temperature

Status
Not open for further replies.

onde

Junior Member level 1
Joined
Nov 29, 2002
Messages
18
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
88
c51 ds1820

Can you tell me why the following Programm prints no value for the temperature via serial port ?

#include <reg517a.h>
#include <stdio.h>

void ini_ser1(void);

void ini_ser1(void)
{
S0CON = 0x5E; /* Ser.- Mode 1, 8bit, 1 Stopbit */
BD = 1; /* Baudrategenerator activ */
PCON = 0x80; /* SMOD = 1; 9600baud,12MHz */
}


//DS1820 C51

sbit DQ = P5^0;

typedef unsigned char byte;
typedef unsigned int word;

void delay(word useconds)
{
for(;useconds>0;useconds--);
}

byte ow_reset(void)
{
byte presence;
DQ = 1; //pull DQ line low
delay(29); // leave it low for 480us
DQ = 1; // allow line to return high
delay(3); // wait for presence
presence = DQ; // get presence signal
delay(25); // wait for end of timeslot
return(presence); // presence signal returned
} // 0=presence, 1 = no part

byte read_byte(void)
{
byte i;
byte value = 0;
for (i=8;i>0;i--)
{
value>>=1;
DQ = 0; // pull DQ low to start timeslot
DQ = 1; // then return high
delay(1); //for (i=0; i<3; i++);
if(DQ)value|=0x80;
delay(6); // wait for rest of timeslot
}
return(value);
}


void write_byte(char val)
{
byte i;
for (i=8; i>0; i--) // writes byte, one bit at a time
{
DQ = 0; // pull DQ low to start timeslot
DQ = val&0x01;
delay(5); // hold value for remainder of timeslot
DQ = 1;
val=val/2;
}
delay(5);
}

char Read_Temperature(void)
{
union{
byte c[2];
int x;
}temp;

ow_reset();
write_byte(0xCC); // Skip ROM
write_byte(0xBE); // Read Scratch Pad
temp.c[1]=read_byte();
temp.c[0]=read_byte();
ow_reset();
write_byte(0xCC); //Skip ROM
write_byte(0x44); // Start Conversion
return temp.x/2;
}

main()
{

ini_ser1();
while(1)
{
char c;
c=Read_Temperature();
printf("Temperature: %c\n",c);
}
}
 

Status
Not open for further replies.
Cookies are required to use this site. You must accept them to continue using the site. Learn more…