2012-08-17 00:47:31 +02:00
|
|
|
/**
|
|
|
|
******************************************************************************
|
|
|
|
*
|
|
|
|
* @file vehicleconfigurationsource.h
|
|
|
|
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2012.
|
|
|
|
* @addtogroup
|
|
|
|
* @{
|
|
|
|
* @addtogroup VehicleConfigurationSource
|
|
|
|
* @{
|
|
|
|
* @brief
|
|
|
|
*****************************************************************************/
|
|
|
|
/*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
|
|
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
* for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef VEHICLECONFIGURATIONSOURCE_H
|
|
|
|
#define VEHICLECONFIGURATIONSOURCE_H
|
|
|
|
|
|
|
|
#include <QString>
|
2012-09-04 01:28:28 +02:00
|
|
|
#include "actuatorsettings.h"
|
2012-08-17 00:47:31 +02:00
|
|
|
|
|
|
|
struct accelGyroBias {
|
|
|
|
float m_accelerometerXBias;
|
|
|
|
float m_accelerometerYBias;
|
|
|
|
float m_accelerometerZBias;
|
|
|
|
|
|
|
|
float m_gyroXBias;
|
|
|
|
float m_gyroYBias;
|
|
|
|
float m_gyroZBias;
|
|
|
|
};
|
|
|
|
|
2012-09-04 01:28:28 +02:00
|
|
|
struct actuatorChannelSettings {
|
2012-09-05 00:58:53 +02:00
|
|
|
quint16 channelMin;
|
|
|
|
quint16 channelNeutral;
|
|
|
|
quint16 channelMax;
|
|
|
|
|
|
|
|
//Default values
|
2012-09-13 23:49:08 +02:00
|
|
|
actuatorChannelSettings(): channelMin(1000), channelNeutral(1080), channelMax(1900) {}
|
2012-09-04 01:28:28 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-08-17 00:47:31 +02:00
|
|
|
class VehicleConfigurationSource
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
VehicleConfigurationSource();
|
|
|
|
|
|
|
|
enum CONTROLLER_TYPE {CONTROLLER_UNKNOWN, CONTROLLER_CC, CONTROLLER_CC3D, CONTROLLER_REVO, CONTROLLER_PIPX};
|
|
|
|
enum VEHICLE_TYPE {VEHICLE_UNKNOWN, VEHICLE_MULTI, VEHICLE_FIXEDWING, VEHICLE_HELI, VEHICLE_SURFACE};
|
|
|
|
enum VEHICLE_SUB_TYPE {MULTI_ROTOR_UNKNOWN, MULTI_ROTOR_TRI_Y, MULTI_ROTOR_QUAD_X, MULTI_ROTOR_QUAD_PLUS,
|
|
|
|
MULTI_ROTOR_HEXA, MULTI_ROTOR_HEXA_H, MULTI_ROTOR_HEXA_COAX_Y, MULTI_ROTOR_OCTO,
|
|
|
|
MULTI_ROTOR_OCTO_V, MULTI_ROTOR_OCTO_COAX_X, MULTI_ROTOR_OCTO_COAX_PLUS, FIXED_WING_AILERON,
|
|
|
|
FIXED_WING_VTAIL, HELI_CCPM};
|
|
|
|
enum ESC_TYPE {ESC_RAPID, ESC_LEGACY, ESC_UNKNOWN};
|
|
|
|
enum INPUT_TYPE {INPUT_PWM, INPUT_PPM, INPUT_SBUS, INPUT_DSM, INPUT_UNKNOWN};
|
|
|
|
|
|
|
|
virtual VehicleConfigurationSource::CONTROLLER_TYPE getControllerType() const = 0;
|
|
|
|
virtual VehicleConfigurationSource::VEHICLE_TYPE getVehicleType() const = 0;
|
|
|
|
virtual VehicleConfigurationSource::VEHICLE_SUB_TYPE getVehicleSubType() const = 0;
|
|
|
|
virtual VehicleConfigurationSource::INPUT_TYPE getInputType() const = 0;
|
|
|
|
virtual VehicleConfigurationSource::ESC_TYPE getESCType() const = 0;
|
|
|
|
|
2012-08-27 07:19:46 +02:00
|
|
|
virtual bool isLevellingPerformed() const = 0;
|
2012-08-17 00:47:31 +02:00
|
|
|
virtual accelGyroBias getLevellingBias() const = 0;
|
|
|
|
|
2012-08-27 07:19:46 +02:00
|
|
|
virtual bool isMotorCalibrationPerformed() const = 0;
|
2012-09-09 23:44:42 +02:00
|
|
|
virtual QList<actuatorChannelSettings> getActuatorSettings() const = 0;
|
2012-08-17 00:47:31 +02:00
|
|
|
|
2012-09-16 15:14:47 +02:00
|
|
|
virtual bool isRestartNeeded() const = 0;
|
|
|
|
|
2012-08-27 07:19:46 +02:00
|
|
|
virtual QString getSummaryText() = 0;
|
2012-08-17 00:47:31 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // VEHICLECONFIGURATIONSOURCE_H
|