ardupilot/libraries/AP_Baro/AP_Baro_BMP280.h

38 lines
816 B
C
Raw Normal View History

2016-12-29 10:45:02 -04:00
#pragma once
#include <AP_HAL/AP_HAL.h>
#include <AP_HAL/Device.h>
#include <AP_HAL/utility/OwnPtr.h>
#include "AP_Baro_Backend.h"
class AP_Baro_BMP280 : public AP_Baro_Backend
{
public:
AP_Baro_BMP280(AP_Baro &baro, AP_HAL::OwnPtr<AP_HAL::Device> dev);
/* AP_Baro public interface: */
void update();
static AP_Baro_Backend *probe(AP_Baro &baro, AP_HAL::OwnPtr<AP_HAL::Device> dev);
private:
bool _init(void);
2017-01-13 21:53:48 -04:00
void _timer(void);
2016-12-29 10:45:02 -04:00
void _update_temperature(int32_t);
void _update_pressure(int32_t);
AP_HAL::OwnPtr<AP_HAL::Device> _dev;
bool _has_sample;
uint8_t _instance;
int32_t _t_fine;
float _pressure;
float _temperature;
// Internal calibration registers
int16_t _t2, _t3, _p2, _p3, _p4, _p5, _p6, _p7, _p8, _p9;
uint16_t _t1, _p1;
};