2011-12-28 05:32:21 -04:00
|
|
|
/// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
2015-12-01 12:07:15 -04:00
|
|
|
#pragma once
|
2011-11-05 22:11:25 -03:00
|
|
|
|
2015-12-01 12:07:15 -04:00
|
|
|
#include "AP_Baro_Backend.h"
|
2011-11-05 22:11:25 -03:00
|
|
|
|
2015-08-11 03:28:42 -03:00
|
|
|
#include <AP_HAL/AP_HAL.h>
|
2016-01-04 09:59:19 -04:00
|
|
|
#include <AP_HAL/Device.h>
|
2013-01-03 14:06:22 -04:00
|
|
|
|
2015-07-10 00:56:06 -03:00
|
|
|
class AP_Baro_MS56XX : public AP_Baro_Backend
|
2011-11-27 01:43:34 -04:00
|
|
|
{
|
2012-08-17 03:09:24 -03:00
|
|
|
public:
|
2014-10-19 16:22:51 -03:00
|
|
|
void update();
|
2015-01-06 01:28:11 -04:00
|
|
|
void accumulate();
|
2013-01-03 14:06:22 -04:00
|
|
|
|
2015-11-26 10:56:10 -04:00
|
|
|
protected:
|
2016-01-04 09:59:19 -04:00
|
|
|
AP_Baro_MS56XX(AP_Baro &baro, AP_HAL::OwnPtr<AP_HAL::Device> dev, bool use_timer);
|
2015-11-26 10:56:10 -04:00
|
|
|
void _init();
|
|
|
|
|
2015-07-10 00:56:06 -03:00
|
|
|
virtual void _calculate() = 0;
|
2015-11-26 10:56:10 -04:00
|
|
|
virtual bool _read_prom(uint16_t prom[8]);
|
2016-01-04 09:59:19 -04:00
|
|
|
|
|
|
|
uint16_t _read_prom_word(uint8_t word);
|
|
|
|
uint32_t _read_adc();
|
|
|
|
|
2015-11-26 10:56:10 -04:00
|
|
|
void _timer();
|
2015-11-04 18:17:38 -04:00
|
|
|
|
2016-01-04 09:59:19 -04:00
|
|
|
AP_HAL::OwnPtr<AP_HAL::Device> _dev;
|
2014-07-07 00:11:41 -03:00
|
|
|
|
2012-08-17 03:09:24 -03:00
|
|
|
/* Asynchronous state: */
|
2014-10-19 16:22:51 -03:00
|
|
|
volatile bool _updated;
|
|
|
|
volatile uint8_t _d1_count;
|
|
|
|
volatile uint8_t _d2_count;
|
|
|
|
volatile uint32_t _s_D1, _s_D2;
|
|
|
|
uint8_t _state;
|
|
|
|
uint32_t _last_timer;
|
2015-08-03 13:16:01 -03:00
|
|
|
bool _timesliced;
|
2012-11-19 21:23:26 -04:00
|
|
|
|
2015-01-06 01:28:11 -04:00
|
|
|
bool _use_timer;
|
|
|
|
|
2014-10-19 16:22:51 -03:00
|
|
|
// Internal calibration registers
|
2015-12-07 16:23:48 -04:00
|
|
|
uint16_t _c1,_c2,_c3,_c4,_c5,_c6;
|
2016-01-02 10:01:42 -04:00
|
|
|
float _D1, _D2;
|
2015-07-10 00:56:06 -03:00
|
|
|
uint8_t _instance;
|
2011-11-05 22:11:25 -03:00
|
|
|
};
|
|
|
|
|
2015-07-10 00:56:06 -03:00
|
|
|
class AP_Baro_MS5611 : public AP_Baro_MS56XX
|
|
|
|
{
|
|
|
|
public:
|
2016-01-04 09:59:19 -04:00
|
|
|
AP_Baro_MS5611(AP_Baro &baro, AP_HAL::OwnPtr<AP_HAL::Device> dev, bool use_timer);
|
|
|
|
protected:
|
2015-07-10 00:56:06 -03:00
|
|
|
void _calculate();
|
|
|
|
};
|
|
|
|
|
|
|
|
class AP_Baro_MS5607 : public AP_Baro_MS56XX
|
|
|
|
{
|
|
|
|
public:
|
2016-01-04 09:59:19 -04:00
|
|
|
AP_Baro_MS5607(AP_Baro &baro, AP_HAL::OwnPtr<AP_HAL::Device> dev, bool use_timer);
|
|
|
|
protected:
|
2015-07-10 00:56:06 -03:00
|
|
|
void _calculate();
|
|
|
|
};
|
2015-09-28 15:31:12 -03:00
|
|
|
|
|
|
|
class AP_Baro_MS5637 : public AP_Baro_MS56XX
|
|
|
|
{
|
|
|
|
public:
|
2016-01-04 09:59:19 -04:00
|
|
|
AP_Baro_MS5637(AP_Baro &baro, AP_HAL::OwnPtr<AP_HAL::Device> dev, bool use_timer);
|
|
|
|
protected:
|
2015-09-28 15:31:12 -03:00
|
|
|
void _calculate();
|
2015-11-26 10:56:10 -04:00
|
|
|
bool _read_prom(uint16_t prom[8]) override;
|
2015-09-28 15:31:12 -03:00
|
|
|
};
|