#pragma once #include "AP_Compass.h" #include "AP_Compass_Backend.h" #if CONFIG_HAL_BOARD == HAL_BOARD_SITL #include #include #include #include #define SITL_NUM_COMPASSES 3 class AP_Compass_SITL : public AP_Compass_Backend { public: AP_Compass_SITL(); void read(void) override; private: uint8_t _compass_instance[SITL_NUM_COMPASSES]; SITL::SITL *_sitl; // delay buffer variables struct readings_compass { uint32_t time; Vector3f data; }; uint8_t store_index; uint32_t last_store_time; static const uint8_t buffer_length = 50; VectorN buffer; void _timer(); uint32_t _last_sample_time; void _setup_eliptical_correcion(); Matrix3f _eliptical_corr; Vector3f _last_dia; Vector3f _last_odi; }; #endif // CONFIG_HAL_BOARD