AP_HAL_SITL: Added support for blimp simulator

This commit is contained in:
Michelle Rossouw 2021-03-18 14:12:54 +11:00 committed by Andrew Tridgell
parent b98bbcb678
commit d06161e8ee
2 changed files with 4 additions and 1 deletions

View File

@ -69,7 +69,8 @@ public:
ArduCopter,
Rover,
ArduPlane,
ArduSub
ArduSub,
Blimp
};
int gps_pipe(uint8_t index);

View File

@ -35,6 +35,7 @@
#include <SITL/SIM_Scrimmage.h>
#include <SITL/SIM_Webots.h>
#include <SITL/SIM_JSON.h>
#include <SITL/SIM_Blimp.h>
#include <AP_Filesystem/AP_Filesystem.h>
#include <signal.h>
@ -157,6 +158,7 @@ static const struct {
{ "scrimmage", Scrimmage::create },
{ "webots", Webots::create },
{ "JSON", JSON::create },
{ "blimp", Blimp::create },
};
void SITL_State::_set_signal_handlers(void) const