/* SITL handling This simulates a barometer Andrew Tridgell November 2011 */ #include #include #if CONFIG_HAL_BOARD == HAL_BOARD_AVR_SITL #include "AP_HAL_AVR_SITL.h" using namespace AVR_SITL; extern const AP_HAL::HAL& hal; #include #include #include #include #include /* setup the barometer with new input altitude is in meters */ void SITL_State::_update_barometer(float altitude) { static uint32_t last_update; if (_barometer == NULL) { // this sketch doesn't use a barometer return; } // 80Hz, to match the real APM2 barometer if (hal.scheduler->millis() - last_update < 12) { return; } last_update = hal.scheduler->millis(); _barometer->setHIL(altitude); } #endif