mirror of https://github.com/ArduPilot/ardupilot
AP_HAL_SITL: Added support for blimp simulator
This commit is contained in:
parent
b98bbcb678
commit
d06161e8ee
|
@ -69,7 +69,8 @@ public:
|
|||
ArduCopter,
|
||||
Rover,
|
||||
ArduPlane,
|
||||
ArduSub
|
||||
ArduSub,
|
||||
Blimp
|
||||
};
|
||||
|
||||
int gps_pipe(uint8_t index);
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue