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.

19 lines
291 B

#ifndef __AP_BARO_H__
#define __AP_BARO_H__
class AP_Baro
{
public:
AP_Baro() {}
virtual void init() = 0;
virtual uint8_t update() = 0;
virtual int32_t get_pressure() = 0;
virtual float get_temp() = 0;
};
#include "AP_Baro_MS5611.h"
#endif // __AP_BARO_H__