OpenEdv-开源电子网

 找回密码
 立即注册
正点原子全套STM32/Linux/FPGA开发资料,上千讲STM32视频教程免费下载...
查看: 5546|回复: 4

最近刚玩了一下GY-68 BMP180分享一下

[复制链接]

4

主题

9

帖子

0

精华

初级会员

Rank: 2

积分
108
金钱
108
注册时间
2018-10-9
在线时间
17 小时
发表于 2019-8-8 16:01:23 | 显示全部楼层 |阅读模式

用的STM32系列 验证成功。。。。。

GY-68 BMP180 说明: BMP180是功能兼容的继承BMP085,新一代的高 精密数字压力传感器的消费应用。BMP180的超低功耗、低压电子产品被优化用于手机, pda, GPS导航设备和户外设备。低空噪音只有0.25米 快速转换时间,BMP180提供优越的性能。I2C接口易于实现 系统集成与微控制器。

相关程序源码如下:



器件实物:

BST-BMP180-DS000-07.pdf (1.61 MB, 下载次数: 75)

正点原子逻辑分析仪DL16劲爆上市
回复

使用道具 举报

4

主题

9

帖子

0

精华

初级会员

Rank: 2

积分
108
金钱
108
注册时间
2018-10-9
在线时间
17 小时
 楼主| 发表于 2019-8-8 16:42:23 | 显示全部楼层
本帖最后由 骑驴看你笑 于 2019-8-8 16:45 编辑

相关代码如下:请见谅,谢谢
/******************************************************
Function    :Init_BMP180
Input       :BMP180_info type point
Output      :p->ExistFlag  存在标志位
             p->Version    版本号
Return      :N/A
Description :初始化
Note        :N/A
******************************************************/


u8 BMP180Init(BMP180_info *p)  
{  
        u8 Ex_Flag=0;
       
        IIC_Init();
       
    if(BMP180AddressReadByte(BMP180_ID_REGISTER_ADDRESS)== BMP180_ID_FIXED_VALUE)  
    {//存在  
       p->ExistFlag= BMP180_EXISTENCE ;  
         
      
                BMP180ReadCalibrateParam(p);  
  
        p->Version = BMP180AddressReadByte(BMP180_VERSION_REGISTER_ADDRESS);  //版本号
    }  
    else  
    {//不存在  
        p->ExistFlag = BMP180_NOT_EXISTENCE ;  
    }


        Ex_Flag =  p->ExistFlag;
        return  Ex_Flag;
}


/******************************************************
Function    :BMP180ReadCalibrateParam
Input       :BMP180_info type point
Output      :AC1,AC3,AC3,AC4,AC5,AC6,B1,B2,MB,MC,MD
Return      :N/A
Description :读取校正参数
Note        :N/A
******************************************************/  
static void BMP180ReadCalibrateParam(BMP180_info *p)  
{  
    p->cal_param.AC1= BMP180AddressRead2Byte(0xAA);  
    p->cal_param.AC2= BMP180AddressRead2Byte(0xAC);  
    p->cal_param.AC3= BMP180AddressRead2Byte(0xAE);  
    p->cal_param.AC4= BMP180AddressRead2Byte(0xB0);  
    p->cal_param.AC5= BMP180AddressRead2Byte(0xB2);  
    p->cal_param.AC6= BMP180AddressRead2Byte(0xB4);  
    p->cal_param.B1=  BMP180AddressRead2Byte(0xB6);  
    p->cal_param.B2=  BMP180AddressRead2Byte(0xB8);  
    p->cal_param.MB=  BMP180AddressRead2Byte(0xBA);  
    p->cal_param.MC=  BMP180AddressRead2Byte(0xBC);  
    p->cal_param.MD=  BMP180AddressRead2Byte(0xBE);  
}
/******************************************************
Function    :BMP180Convert
Input       :BMP180_info type point
Output      :temp->UnsetTemperature 未经过校正的温度值
             temp->UnsetGasPress    未经过校正的气压值
             temp->Temperature      校正后的温度值
             temp->GasPress         校正后的气压值
             temp->Altitude         海拔计算值
Return      :N/A
Description :温度值、气压值的校正和海拔的计算
Note        :N/A
******************************************************/  
void BMP180Convert(BMP180_info *temp)  
{     
    long x1, x2, B5, B6, x3, B3, p;  
    unsigned long b4, b7;  
  
    //未校正的温度值  
    temp->UnsetTemperature = BMP180ReadUnsetTemperature();  
    //未校正的气压值  
    temp->UnsetGasPress = BMP180ReadUnsetPressure();  
  
    //温度校正  
    x1 = ((temp->UnsetTemperature) - temp->cal_param.AC6) * (temp->cal_param.AC5) >> 15;  
    x2 = ((long)(temp->cal_param.MC) << 11) / (x1 + temp->cal_param.MD);  
    B5 = x1 + x2;  
    temp->Temperature= ((B5 + 8) >> 4)*0.1;  
  
    //气压校正
    B6 = B5- 4000;  
    x1 = ((long)(temp->cal_param.B2) * (B6 * B6 >> 12)) >> 11;  
    x2 = ((long)temp->cal_param.AC2) * B6 >> 11;  
    x3 = x1 + x2;  
    B3 = ((((long)(temp->cal_param.AC1) * 4 + x3)<<OSS) + 2)/4;  
    x1 = ((long)temp->cal_param.AC3) * B6 >> 13;  
    x2 = ((long)(temp->cal_param.B1) * (B6 * B6 >> 12)) >> 16;  
    x3 = ((x1 + x2) + 2) >> 2;  
    b4 = ((long)(temp->cal_param.AC4) * (unsigned long) (x3 + 32768)) >> 15;  
    b7 = ((unsigned long)(temp->UnsetGasPress) - B3) * (50000 >> OSS);  
    if( b7 < 0x80000000)  
    {  
         p = (b7 * 2) / b4 ;  
    }  
    else  
    {  
         p = (b7 / b4) * 2;  
    }  
    x1 = (p >> 8) * (p >> 8);  
    x1 = ((long)x1 * 3038) >> 16;  
    x2 = (-7357 * p) >> 16;  
    temp->GasPress= p + ((x1 + x2 + 3791) >> 4);  


    //海拔计算  
    temp->Altitude =(44330.0 * (1.0-pow((float)(temp->GasPress) / 101325.0, 1.0/5.255)) );  
       
}
回复 支持 反对

使用道具 举报

0

主题

3

帖子

0

精华

新手上路

积分
34
金钱
34
注册时间
2020-5-3
在线时间
5 小时
发表于 2021-5-28 10:14:47 | 显示全部楼层
蝴蝶飞拉打扫房间爱丽丝
回复 支持 反对

使用道具 举报

0

主题

2

帖子

0

精华

新手入门

积分
10
金钱
10
注册时间
2021-7-3
在线时间
2 小时
发表于 2021-7-7 18:20:55 | 显示全部楼层
dalapdalap
回复 支持 反对

使用道具 举报

0

主题

4

帖子

0

精华

初级会员

Rank: 2

积分
154
金钱
154
注册时间
2016-1-4
在线时间
37 小时
发表于 2024-6-19 15:22:59 | 显示全部楼层
发下文字看看代码
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则



关闭

原子哥极力推荐上一条 /2 下一条

正点原子公众号

QQ|手机版|OpenEdv-开源电子网 ( 粤ICP备12000418号-1 )

GMT+8, 2024-11-22 11:12

Powered by OpenEdv-开源电子网

© 2001-2030 OpenEdv-开源电子网

快速回复 返回顶部 返回列表