mirror of https://github.com/ArduPilot/ardupilot
HAL_SITL: link in StratoBlimp
This commit is contained in:
parent
6199147fe2
commit
4bb5a9ac52
|
@ -38,6 +38,8 @@
|
|||
#include <SITL/SIM_JSON.h>
|
||||
#include <SITL/SIM_Blimp.h>
|
||||
#include <SITL/SIM_NoVehicle.h>
|
||||
#include <SITL/SIM_StratoBlimp.h>
|
||||
|
||||
#include <AP_Filesystem/AP_Filesystem.h>
|
||||
|
||||
#include <AP_Vehicle/AP_Vehicle_Type.h>
|
||||
|
@ -184,6 +186,9 @@ static const struct {
|
|||
{ "JSON", JSON::create },
|
||||
{ "blimp", Blimp::create },
|
||||
{ "novehicle", NoVehicle::create },
|
||||
#if AP_SIM_STRATOBLIMP_ENABLED
|
||||
{ "stratoblimp", StratoBlimp::create },
|
||||
#endif
|
||||
};
|
||||
|
||||
void SITL_State::_set_signal_handlers(void) const
|
||||
|
|
Loading…
Reference in New Issue