ardupilot/libraries/AP_Baro/AP_Baro_MS5611.h

114 lines
3.1 KiB
C
Raw Normal View History

/// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
#ifndef __AP_BARO_MS5611_H__
#define __AP_BARO_MS5611_H__
2012-11-19 21:23:26 -04:00
#include <AP_HAL.h>
#include "AP_Baro.h"
/** Abstract serial device driver for MS5611. */
class AP_Baro_MS5611_Serial
{
public:
/** Initialize the driver. */
virtual void init() = 0;
/** Read a 16-bit value from register "reg". */
virtual uint16_t read_16bits(uint8_t reg) = 0;
/** Read a 24-bit value from the ADC. */
virtual uint32_t read_adc() = 0;
/** Write a single byte command. */
virtual void write(uint8_t reg) = 0;
2013-01-03 15:05:00 -04:00
/** Acquire the internal semaphore for this device.
* take_nonblocking should be used from the timer process,
* take_blocking from synchronous code (i.e. init) */
virtual bool sem_take_nonblocking() { return true; }
virtual bool sem_take_blocking() { return true; }
/** Release the internal semaphore for this device. */
2013-01-03 15:05:00 -04:00
virtual void sem_give() {}
};
/** SPI serial device. */
class AP_Baro_MS5611_SPI : public AP_Baro_MS5611_Serial
{
public:
virtual void init();
virtual uint16_t read_16bits(uint8_t reg);
virtual uint32_t read_adc();
virtual void write(uint8_t reg);
2013-01-03 15:05:00 -04:00
virtual bool sem_take_nonblocking();
virtual bool sem_take_blocking();
virtual void sem_give();
private:
AP_HAL::SPIDeviceDriver *_spi;
AP_HAL::Semaphore *_spi_sem;
};
/** I2C serial device. */
class AP_Baro_MS5611_I2C : public AP_Baro_MS5611_Serial
{
public:
virtual void init();
virtual uint16_t read_16bits(uint8_t reg);
virtual uint32_t read_adc();
virtual void write(uint8_t reg);
virtual bool sem_take_nonblocking();
virtual bool sem_take_blocking();
virtual void sem_give();
private:
AP_HAL::Semaphore *_i2c_sem;
};
class AP_Baro_MS5611 : public AP_Baro
{
public:
AP_Baro_MS5611(AP_Baro_MS5611_Serial *serial)
{
_serial = serial;
}
/* AP_Baro public interface: */
2012-10-11 14:53:21 -03:00
bool init();
uint8_t read();
float get_pressure(); // in mbar*100 units
float get_temperature(); // in celsius degrees
/* Serial port drivers to pass to "init". */
static AP_Baro_MS5611_SPI spi;
static AP_Baro_MS5611_I2C i2c;
private:
2014-02-08 02:47:45 -04:00
void _calculate();
/* Asynchronous handler functions: */
2013-09-28 03:30:26 -03:00
void _update();
/* Asynchronous state: */
static volatile bool _updated;
static volatile uint8_t _d1_count;
static volatile uint8_t _d2_count;
static volatile uint32_t _s_D1, _s_D2;
static uint8_t _state;
static uint32_t _timer;
static AP_Baro_MS5611_Serial *_serial;
/* Gates access to asynchronous state: */
static bool _sync_access;
float Temp;
float Press;
int32_t _raw_press;
int32_t _raw_temp;
// Internal calibration registers
uint16_t C1,C2,C3,C4,C5,C6;
float D1,D2;
2012-11-19 21:23:26 -04:00
};
#endif // __AP_BARO_MS5611_H__