AP_Baro_HIL.h 316 B

1234567891011121314151617
  1. /*
  2. dummy backend for HIL (and SITL). This doesn't actually need to do
  3. any work, as setHIL() is in the frontend
  4. */
  5. #pragma once
  6. #include "AP_Baro_Backend.h"
  7. class AP_Baro_HIL : public AP_Baro_Backend
  8. {
  9. public:
  10. AP_Baro_HIL(AP_Baro &baro);
  11. void update(void) override;
  12. private:
  13. uint8_t _instance;
  14. };