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.

18 lines
316 B

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