1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-01-30 15:52:12 +01:00

OP-1589 Fixed file header and added Quad-H to export page.

This commit is contained in:
Fredrik Arvidsson 2014-11-01 11:57:48 +01:00
parent 97dad5ce71
commit 41e311b096
3 changed files with 11 additions and 6 deletions

View File

@ -1,11 +1,11 @@
/**
******************************************************************************
*
* @file airframestabfixedwingpage.cpp
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2012.
* @file airframeinitialtuningpage.cpp
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2014.
* @addtogroup
* @{
* @addtogroup AirframeStabFixedwingPage
* @addtogroup AirframeInitialTuningPage
* @{
* @brief
*****************************************************************************/

View File

@ -1,11 +1,11 @@
/**
******************************************************************************
*
* @file airframestabfixedwingpage.h
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2012.
* @file airframeinitialtuningpage.h
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2014.
* @addtogroup
* @{
* @addtogroup AirframeStabFixedwingPage
* @addtogroup AirframeInitialTuningPage
* @{
* @brief
*****************************************************************************/

View File

@ -112,6 +112,11 @@ QString VehicleTemplateExportDialog::setupVehicleType()
m_subType = VehicleConfigurationSource::MULTI_ROTOR_QUAD_X;
return tr("Multirotor - Quadrocopter X");
case SystemSettings::AIRFRAMETYPE_QUADH:
m_type = VehicleConfigurationSource::VEHICLE_MULTI;
m_subType = VehicleConfigurationSource::MULTI_ROTOR_QUAD_H;
return tr("Multirotor - Quadrocopter H");
case SystemSettings::AIRFRAMETYPE_QUADP:
m_type = VehicleConfigurationSource::VEHICLE_MULTI;
m_subType = VehicleConfigurationSource::MULTI_ROTOR_QUAD_PLUS;