ardupilot/libraries/AP_Baro/AP_Baro_HIL.h

29 lines
575 B
C
Raw Normal View History

/// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
2011-10-13 11:22:03 -03:00
#ifndef __AP_BARO__HIL_H__
#define __AP_BARO__HIL_H__
#include "AP_Baro.h"
class AP_Baro_HIL : public AP_Baro
2011-10-13 11:22:03 -03:00
{
private:
uint8_t BMP085_State;
float Temp;
float Press;
int32_t _pressure_sum;
int32_t _temperature_sum;
uint8_t _count;
public:
2012-10-11 14:53:21 -03:00
bool init();
uint8_t read();
float get_pressure();
float get_temperature();
int32_t get_raw_pressure();
int32_t get_raw_temp();
void setHIL(float Temp, float Press);
2011-10-13 11:22:03 -03:00
};
#endif // __AP_BARO__HIL_H__