AP_HAL_SITL: Add support for Sub

This commit is contained in:
Jacob Walser 2017-02-03 15:18:26 +11:00 committed by Andrew Tridgell
parent 613bc46592
commit e7caf05238

View File

@ -26,6 +26,7 @@
#include <SITL/SIM_FlightAxis.h>
#include <SITL/SIM_Calibration.h>
#include <SITL/SIM_XPlane.h>
#include <SITL/SIM_Submarine.h>
extern const AP_HAL::HAL& hal;
@ -91,6 +92,7 @@ static const struct {
{ "balloon", Balloon::create },
{ "plane", Plane::create },
{ "calibration", Calibration::create },
{ "vectored", Submarine::create },
};
void SITL_State::_set_signal_handlers(void) const