HAL_SITL: added plane simulator

This commit is contained in:
Andrew Tridgell 2016-01-01 12:27:07 +11:00
parent 16e0a6d7b0
commit c6b6d7137d
1 changed files with 3 additions and 1 deletions

View File

@ -15,6 +15,7 @@
#include <SITL/SIM_Multicopter.h>
#include <SITL/SIM_Helicopter.h>
#include <SITL/SIM_Plane.h>
#include <SITL/SIM_Rover.h>
#include <SITL/SIM_CRRCSim.h>
#include <SITL/SIM_Gazebo.h>
@ -75,7 +76,8 @@ static const struct {
{ "gazebo", Gazebo::create },
{ "last_letter", last_letter::create },
{ "tracker", Tracker::create },
{ "balloon", Balloon::create }
{ "balloon", Balloon::create },
{ "plane", Plane::create },
};
void SITL_State::_parse_command_line(int argc, char * const argv[])