Browse Source

SITL: support octaquad in quadplane sim

mission-4.1.18
Andrew Tridgell 9 years ago
parent
commit
b0ac6c26e0
  1. 2
      libraries/SITL/SIM_QuadPlane.cpp

2
libraries/SITL/SIM_QuadPlane.cpp

@ -35,6 +35,8 @@ QuadPlane::QuadPlane(const char *home_str, const char *frame_str) : @@ -35,6 +35,8 @@ QuadPlane::QuadPlane(const char *home_str, const char *frame_str) :
if (strstr(frame_str, "-octa-quad")) {
frame_type = "octa-quad";
} else if (strstr(frame_str, "-octaquad")) {
frame_type = "octa-quad";
} else if (strstr(frame_str, "-octa")) {
frame_type = "octa";
} else if (strstr(frame_str, "-hexax")) {

Loading…
Cancel
Save