123456789101112131415161718192021222324252627282930 |
- #pragma once
- #include "AP_WindVane_Backend.h"
- class AP_WindVane_SITL : public AP_WindVane_Backend
- {
- public:
-
- AP_WindVane_SITL(AP_WindVane &frontend);
-
- #if CONFIG_HAL_BOARD == HAL_BOARD_SITL
- void update_direction() override;
- void update_speed() override;
- #endif
- };
|