2015-12-01 12:07:15 -04:00
|
|
|
#pragma once
|
2011-11-27 00:42:52 -04:00
|
|
|
|
2022-01-26 23:58:56 -04:00
|
|
|
#include "AP_Baro_Backend.h"
|
|
|
|
|
|
|
|
#if AP_BARO_BMP085_ENABLED
|
|
|
|
|
2015-07-11 17:00:57 -03:00
|
|
|
#include <AP_HAL/AP_HAL.h>
|
2015-11-30 15:25:00 -04:00
|
|
|
#include <AP_HAL/I2CDevice.h>
|
|
|
|
#include <AP_HAL/utility/OwnPtr.h>
|
2015-07-12 22:40:36 -03:00
|
|
|
#include <Filter/Filter.h>
|
2015-11-30 15:25:00 -04:00
|
|
|
|
2018-01-22 05:31:01 -04:00
|
|
|
#ifndef HAL_BARO_BMP085_I2C_ADDR
|
2018-02-04 20:33:00 -04:00
|
|
|
#define HAL_BARO_BMP085_I2C_ADDR (0x77)
|
2018-01-22 05:31:01 -04:00
|
|
|
#endif
|
|
|
|
|
2018-02-04 20:33:00 -04:00
|
|
|
class AP_Baro_BMP085 : public AP_Baro_Backend {
|
2012-08-17 03:09:24 -03:00
|
|
|
public:
|
2018-01-22 05:31:01 -04:00
|
|
|
AP_Baro_BMP085(AP_Baro &baro, AP_HAL::OwnPtr<AP_HAL::Device> dev);
|
2011-11-30 00:31:40 -04:00
|
|
|
|
|
|
|
/* AP_Baro public interface: */
|
2018-11-07 08:11:28 -04:00
|
|
|
void update() override;
|
2018-02-04 20:33:00 -04:00
|
|
|
|
2018-01-22 05:31:01 -04:00
|
|
|
static AP_Baro_Backend *probe(AP_Baro &baro, AP_HAL::OwnPtr<AP_HAL::Device> dev);
|
2018-02-04 20:33:00 -04:00
|
|
|
|
2011-11-30 00:31:40 -04:00
|
|
|
|
2012-08-17 03:09:24 -03:00
|
|
|
private:
|
2018-01-22 05:31:01 -04:00
|
|
|
bool _init();
|
|
|
|
|
2015-11-23 10:11:40 -04:00
|
|
|
void _cmd_read_pressure();
|
|
|
|
void _cmd_read_temp();
|
|
|
|
bool _read_pressure();
|
|
|
|
void _read_temp();
|
|
|
|
void _calculate();
|
2015-11-23 10:25:10 -04:00
|
|
|
bool _data_ready();
|
2015-01-05 07:00:32 -04:00
|
|
|
|
2017-01-13 15:26:14 -04:00
|
|
|
void _timer(void);
|
|
|
|
|
2018-01-22 05:31:01 -04:00
|
|
|
uint16_t _read_prom_word(uint8_t word);
|
|
|
|
bool _read_prom(uint16_t *prom);
|
|
|
|
|
|
|
|
|
|
|
|
AP_HAL::OwnPtr<AP_HAL::Device> _dev;
|
2015-07-11 17:00:57 -03:00
|
|
|
AP_HAL::DigitalSource *_eoc;
|
2015-11-30 15:25:00 -04:00
|
|
|
|
2015-11-23 10:11:40 -04:00
|
|
|
uint8_t _instance;
|
2015-07-12 22:40:36 -03:00
|
|
|
bool _has_sample;
|
2015-11-23 10:11:40 -04:00
|
|
|
|
|
|
|
// Boards with no EOC pin: use times instead
|
|
|
|
uint32_t _last_press_read_command_time;
|
|
|
|
uint32_t _last_temp_read_command_time;
|
2015-12-01 12:07:15 -04:00
|
|
|
|
2011-11-27 00:42:52 -04:00
|
|
|
// State machine
|
2016-05-04 21:39:39 -03:00
|
|
|
uint8_t _state;
|
2015-01-05 07:00:32 -04:00
|
|
|
|
2012-08-17 03:09:24 -03:00
|
|
|
// Internal calibration registers
|
2015-11-23 10:11:40 -04:00
|
|
|
int16_t ac1, ac2, ac3, b1, b2, mb, mc, md;
|
|
|
|
uint16_t ac4, ac5, ac6;
|
|
|
|
|
|
|
|
int32_t _raw_pressure;
|
|
|
|
int32_t _raw_temp;
|
2015-07-11 19:14:41 -03:00
|
|
|
int32_t _temp;
|
2015-07-12 22:40:36 -03:00
|
|
|
AverageIntegralFilter<int32_t, int32_t, 10> _pressure_filter;
|
2018-02-04 20:33:00 -04:00
|
|
|
|
2018-01-22 05:31:01 -04:00
|
|
|
uint8_t _vers;
|
2018-02-04 20:33:00 -04:00
|
|
|
uint8_t _type;
|
2011-11-27 00:42:52 -04:00
|
|
|
};
|
2022-01-26 23:58:56 -04:00
|
|
|
|
|
|
|
#endif // AP_BARO_BMP085_ENABLED
|