HAL_SITL: enable morse simulator backend

This commit is contained in:
Andrew Tridgell 2018-12-03 09:36:17 +11:00
parent eb851cf1a6
commit d46c48e28c
1 changed files with 2 additions and 0 deletions

View File

@ -29,6 +29,7 @@
#include <SITL/SIM_Calibration.h>
#include <SITL/SIM_XPlane.h>
#include <SITL/SIM_Submarine.h>
#include <SITL/SIM_Morse.h>
extern const AP_HAL::HAL& hal;
@ -112,6 +113,7 @@ static const struct {
{ "plane", Plane::create },
{ "calibration", Calibration::create },
{ "vectored", Submarine::create },
{ "morse", Morse::create },
};
void SITL_State::_set_signal_handlers(void) const