这个代码怎么不对呢,麻烦大家帮我看看好吗,我一个人孤军奋战毕业设计,同学都是买的呢,HELP,谢谢各位大佬
#include "ds18b20.h"
#include "SysTick.h"
/*******************************************************************************
* oˉ êy Ãû : DS18B20_IO_IN
* oˉêy1|Äü : DS18B20_IOêäèëÅäÖÃ
* êä èë : ÎT
* êä 3ö : ÎT
*******************************************************************************/
void DS18B20_IO_IN(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
GPIO_InitStructure.GPIO_Pin=DS18B20_PIN;
GPIO_InitStructure.GPIO_Mode=GPIO_Mode_IPU;
GPIO_Init(DS18B20_PORT,&GPIO_InitStructure);
}
/*******************************************************************************
* oˉ êy Ãû : DS18B20_IO_OUT
* oˉêy1|Äü : DS18B20_IOêä3öÅäÖÃ
* êä èë : ÎT
* êä 3ö : ÎT
*******************************************************************************/
void DS18B20_IO_OUT(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
GPIO_InitStructure.GPIO_Pin=DS18B20_PIN;
GPIO_InitStructure.GPIO_Speed=GPIO_Speed_50MHz;
GPIO_InitStructure.GPIO_Mode=GPIO_Mode_Out_PP;
GPIO_Init(DS18B20_PORT,&GPIO_InitStructure);
}
/*******************************************************************************
* oˉ êy Ãû : DS18B20_Reset
* oˉêy1|Äü : ¸′λDS18B20
* êä èë : ÎT
* êä 3ö : ÎT
*******************************************************************************/
void DS18B20_Reset(void)
{
DS18B20_IO_OUT(); //SET PG11 OUTPUT
DS18B20_DQ_OUT=0; //à-μíDQ
delay_us(750); //à-μí750us
DS18B20_DQ_OUT=1; //DQ=1
delay_us(15); //15US
}
/*******************************************************************************
* oˉ êy Ãû : DS18B20_Check
* oˉêy1|Äü : ¼ì2aDS18B20êÇ·ñ′æÔú
* êä èë : ÎT
* êä 3ö : 1:Î′¼ì2aμ½DS18B20μÄ′æÔú£¬0:′æÔú
*******************************************************************************/
u8 DS18B20_Check(void)
{
u8 retry=0;
DS18B20_IO_IN();//SET PG11 INPUT
while (DS18B20_DQ_IN&&retry<200)
{
retry++;
delay_us(1);
};
if(retry>=200)return 1;
else retry=0;
while (!DS18B20_DQ_IN&&retry<240)
{
retry++;
delay_us(1);
};
if(retry>=240)return 1;
return 0;
}
/*******************************************************************************
* oˉ êy Ãû : DS18B20_Read_Bit
* oˉêy1|Äü : ′óDS18B20¶áè¡ò»¸öλ
* êä èë : ÎT
* êä 3ö : 1/0
*******************************************************************************/
u8 DS18B20_Read_Bit(void) // read one bit
{
u8 data;
DS18B20_IO_OUT();//SET PG11 OUTPUT
DS18B20_DQ_OUT=0;
delay_us(2);
DS18B20_DQ_OUT=1;
DS18B20_IO_IN();//SET PG11 INPUT
delay_us(12);
if(DS18B20_DQ_IN)data=1;
else data=0;
delay_us(50);
return data;
}
/*******************************************************************************
* oˉ êy Ãû : DS18B20_Read_Byte
* oˉêy1|Äü : ′óDS18B20¶áè¡ò»¸ö×Ö½ú
* êä èë : ÎT
* êä 3ö : ò»¸ö×Ö½úêy¾Y
*******************************************************************************/
//
//·μ»ØÖμ£o¶áμ½μÄêy¾Y
u8 DS18B20_Read_Byte(void) // read one byte
{
u8 i,j,dat;
dat=0;
for (i=1;i<=8;i++)
{
j=DS18B20_Read_Bit();
dat=(j<<7)|(dat>>1);
}
return dat;
}
/*******************************************************************************
* oˉ êy Ãû : DS18B20_Write_Byte
* oˉêy1|Äü : D′ò»¸ö×Ö½úμ½DS18B20
* êä èë : dat£oòaD′èëμÄ×Ö½ú
* êä 3ö : ÎT
*******************************************************************************/
void DS18B20_Write_Byte(u8 dat)
{
u8 j;
u8 testb;
DS18B20_IO_OUT();//SET PG11 OUTPUT;
for (j=1;j<=8;j++)
{
testb=dat&0x01;
dat=dat>>1;
if (testb)
{
DS18B20_DQ_OUT=0;// Write 1
delay_us(2);
DS18B20_DQ_OUT=1;
delay_us(60);
}
else
{
DS18B20_DQ_OUT=0;// Write 0
delay_us(60);
DS18B20_DQ_OUT=1;
delay_us(2);
}
}
}
/*******************************************************************************
* oˉ êy Ãû : DS18B20_Start
* oˉêy1|Äü : ¿aê¼Î¶è×a»»
* êä èë : ÎT
* êä 3ö : ÎT
*******************************************************************************/
void DS18B20_Start(void)// ds1820 start convert
{
DS18B20_Reset();
DS18B20_Check();
DS18B20_Write_Byte(0xcc);// skip rom
DS18B20_Write_Byte(0x44);// convert
}
/*******************************************************************************
* oˉ êy Ãû : DS18B20_Init
* oˉêy1|Äü : 3õê¼»ˉDS18B20μÄIO¿ú DQ í¬ê±¼ì2aDSμÄ′æÔú
* êä èë : ÎT
* êä 3ö : 1:2»′æÔú£¬0:′æÔú
*******************************************************************************/
u8 DS18B20_Init(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(DS18B20_PORT_RCC,ENABLE);
GPIO_InitStructure.GPIO_Pin=DS18B20_PIN;
GPIO_InitStructure.GPIO_Speed=GPIO_Speed_50MHz;
GPIO_InitStructure.GPIO_Mode=GPIO_Mode_Out_PP;
GPIO_Init(DS18B20_PORT,&GPIO_InitStructure);
DS18B20_Reset();
return DS18B20_Check();
}
/*******************************************************************************
* oˉ êy Ãû : DS18B20_GetTemperture
* oˉêy1|Äü : ′óds18b20μÃμ½Î¶èÖμ
* êä èë : ÎT
* êä 3ö : ζèêy¾Y
*******************************************************************************/
float DS18B20_GetTemperture(void)
{
u16 temp;
u8 a,b;
float value;
DS18B20_Start(); // ds1820 start convert
DS18B20_Reset();
DS18B20_Check();
DS18B20_Write_Byte(0xcc);// skip rom
DS18B20_Write_Byte(0xbe);// convert
a=DS18B20_Read_Byte(); // LSB
b=DS18B20_Read_Byte(); // MSB
temp=b;
temp=(temp<<8)+a;
if((temp&0xf800)==0xf800)
{
temp=(~temp)+1;//òòÎa¶áè¡μÄζèêÇêμ¼êζèμÄ21Â룬ËùòÔ¼õ1£¬Ôùè¡·′Çó3öÔ-Âë
value=temp*(-0.0625);
//áôὸöD¡êyμã¾í*100£¬+0.5êÇËÄéáÎåè룬òòÎaCóïÑÔ¸¡μãêy×a»»ÎaÕûDíμÄê±oò°ÑD¡êyμã
//oóÃæμÄêy×Ô¶ˉè¥μô£¬2»1üêÇ·ñ′óóú0.5£¬¶ø+0.5Ö®oó′óóú0.5μľíêǽø1áË£¬D¡óú0.5μľí
//Ëã¼óéÏ0.5£¬»1êÇÔúD¡êyμãoóÃæ¡
}
else
{
value=temp*0.0625;
}
return value;
}
|