You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
515 B

/// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
14 years ago
#ifndef __AP_BARO__HIL_H__
#define __AP_BARO__HIL_H__
#include "AP_Baro.h"
class AP_Baro_HIL : public AP_Baro
14 years ago
{
private:
uint8_t BMP085_State;
float Temp;
float Press;
float _pressure_sum;
float _temperature_sum;
volatile uint8_t _count;
public:
bool init();
uint8_t read();
float get_pressure();
float get_temperature();
void setHIL(float altitude_msl);
14 years ago
};
#endif // __AP_BARO__HIL_H__