mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-04 15:08:28 -04:00
9250053bfe
Incomplete and does not work.
19 lines
291 B
C++
19 lines
291 B
C++
|
|
#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__
|