2011-11-05 22:11:25 -03:00
|
|
|
|
2011-11-27 01:49:17 -04:00
|
|
|
#ifndef __AP_BARO_MS5611_H__
|
|
|
|
#define __AP_BARO_MS5611_H__
|
2011-11-05 22:11:25 -03:00
|
|
|
|
2011-11-30 00:31:10 -04:00
|
|
|
#include "AP_Baro.h"
|
2011-11-05 22:11:25 -03:00
|
|
|
|
2011-11-30 00:31:10 -04:00
|
|
|
class AP_Baro_MS5611 : public AP_Baro
|
2011-11-27 01:43:34 -04:00
|
|
|
{
|
2011-11-27 01:49:17 -04:00
|
|
|
public:
|
|
|
|
AP_Baro_MS5611() {} // Constructor
|
|
|
|
void init();
|
2011-11-30 00:31:10 -04:00
|
|
|
|
|
|
|
/* AP_Baro public interface: */
|
2011-11-27 01:49:17 -04:00
|
|
|
uint8_t read();
|
2011-11-30 00:31:10 -04:00
|
|
|
int32_t get_pressure(); // in mbar*100 units
|
|
|
|
int16_t get_temperature(); // in celsius degrees * 100 units
|
2011-11-27 01:49:17 -04:00
|
|
|
float get_altitude(); // in meter units
|
|
|
|
|
2011-11-30 00:31:10 -04:00
|
|
|
int32_t get_raw_pressure();
|
|
|
|
int32_t get_raw_temp();
|
|
|
|
|
2011-11-27 01:43:34 -04:00
|
|
|
private:
|
|
|
|
|
2011-11-27 01:49:17 -04:00
|
|
|
int16_t Temp;
|
|
|
|
int32_t Press;
|
|
|
|
int32_t Alt;
|
|
|
|
|
2011-11-30 00:31:10 -04:00
|
|
|
int32_t _raw_press;
|
|
|
|
int32_t _raw_temp;
|
2011-11-27 01:49:17 -04:00
|
|
|
// Internal calibration registers
|
|
|
|
uint16_t C1,C2,C3,C4,C5,C6;
|
|
|
|
uint32_t D1,D2;
|
|
|
|
void calculate();
|
|
|
|
uint8_t MS5611_Ready();
|
|
|
|
long MS5611_timer;
|
|
|
|
uint8_t MS5611_State;
|
2011-11-05 22:11:25 -03:00
|
|
|
};
|
|
|
|
|
2011-11-27 01:49:17 -04:00
|
|
|
#endif // __AP_BARO_MS5611_H__
|