ardupilot/libraries/AP_Baro/AP_Baro_HIL.h

18 lines
307 B
C
Raw Normal View History

/*
dummy backend for HIL (and SITL). This doesn't actually need to do
any work, as setHIL() is in the frontend
*/
#pragma once
2011-10-13 11:22:03 -03:00
#include "AP_Baro_Backend.h"
class AP_Baro_HIL : public AP_Baro_Backend
2011-10-13 11:22:03 -03:00
{
public:
AP_Baro_HIL(AP_Baro &baro);
void update(void);
private:
uint8_t _instance;
2011-10-13 11:22:03 -03:00
};