AP_HAL_SITL: add Webots support

This commit is contained in:
mhefny 2019-08-14 14:40:25 +02:00 committed by Andrew Tridgell
parent 28b0b86487
commit c1c32ab615
1 changed files with 3 additions and 0 deletions

View File

@ -31,6 +31,7 @@
#include <SITL/SIM_Morse.h>
#include <SITL/SIM_AirSim.h>
#include <SITL/SIM_Scrimmage.h>
#include <SITL/SIM_Webots.h>
#include <signal.h>
#include <stdio.h>
@ -135,6 +136,8 @@ static const struct {
{ "morse", Morse::create },
{ "airsim", AirSim::create},
{ "scrimmage", Scrimmage::create },
{ "webots", Webots::create },
};
void SITL_State::_set_signal_handlers(void) const