Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Q
qgroundcontrol
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
66e05199
Commit
66e05199
authored
Feb 26, 2017
by
Don Gagne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add Mixers tuning page
parent
b1686c1f
Changes
9
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
165 additions
and
0 deletions
+165
-0
qgroundcontrol.pro
qgroundcontrol.pro
+2
-0
qgroundcontrol.qrc
qgroundcontrol.qrc
+1
-0
APMAutoPilotPlugin.cc
src/AutoPilotPlugins/APM/APMAutoPilotPlugin.cc
+6
-0
APMAutoPilotPlugin.h
src/AutoPilotPlugins/APM/APMAutoPilotPlugin.h
+3
-0
MixersComponent.cc
src/AutoPilotPlugins/Common/MixersComponent.cc
+64
-0
MixersComponent.h
src/AutoPilotPlugins/Common/MixersComponent.h
+42
-0
MixersComponent.qml
src/AutoPilotPlugins/Common/MixersComponent.qml
+38
-0
PX4AutoPilotPlugin.cc
src/AutoPilotPlugins/PX4/PX4AutoPilotPlugin.cc
+6
-0
PX4AutoPilotPlugin.h
src/AutoPilotPlugins/PX4/PX4AutoPilotPlugin.h
+3
-0
No files found.
qgroundcontrol.pro
View file @
66e05199
...
...
@@ -750,6 +750,7 @@ HEADERS+= \
src/AutoPilotPlugins/AutoPilotPlugin.h \
src/AutoPilotPlugins/Common/ESP8266Component.h \
src/AutoPilotPlugins/Common/ESP8266ComponentController.h \
src/AutoPilotPlugins/Common/MixersComponent.h \
src/AutoPilotPlugins/Common/MotorComponent.h \
src/AutoPilotPlugins/Common/RadioComponentController.h \
src/AutoPilotPlugins/Generic/GenericAutoPilotPlugin.h \
...
...
@@ -771,6 +772,7 @@ SOURCES += \
src/AutoPilotPlugins/AutoPilotPlugin.cc \
src/AutoPilotPlugins/Common/ESP8266Component.cc \
src/AutoPilotPlugins/Common/ESP8266ComponentController.cc \
src/AutoPilotPlugins/Common/MixersComponent.cc \
src/AutoPilotPlugins/Common/MotorComponent.cc \
src/AutoPilotPlugins/Common/RadioComponentController.cc \
src/AutoPilotPlugins/Generic/GenericAutoPilotPlugin.cc \
...
...
qgroundcontrol.qrc
View file @
66e05199
...
...
@@ -39,6 +39,7 @@
<file alias="MavlinkSettings.qml">src/ui/preferences/MavlinkSettings.qml</file>
<file alias="MissionEditor.qml">src/MissionEditor/MissionEditor.qml</file>
<file alias="MissionSettingsEditor.qml">src/MissionEditor/MissionSettingsEditor.qml</file>
<file alias="MixersComponent.qml">src/AutoPilotPlugins/Common/MixersComponent.qml</file>
<file alias="MockLink.qml">src/ui/preferences/MockLink.qml</file>
<file alias="MockLinkSettings.qml">src/ui/preferences/MockLinkSettings.qml</file>
<file alias="MultiVehicleView.qml">src/MultiVehicle/MultiVehicleView.qml</file>
...
...
src/AutoPilotPlugins/APM/APMAutoPilotPlugin.cc
View file @
66e05199
...
...
@@ -28,6 +28,7 @@
#include "APMLightsComponent.h"
#include "APMSubFrameComponent.h"
#include "ESP8266Component.h"
#include "MixersComponent.h"
/// This is the AutoPilotPlugin implementatin for the MAV_AUTOPILOT_ARDUPILOT type.
APMAutoPilotPlugin
::
APMAutoPilotPlugin
(
Vehicle
*
vehicle
,
QObject
*
parent
)
...
...
@@ -49,6 +50,7 @@ APMAutoPilotPlugin::APMAutoPilotPlugin(Vehicle* vehicle, QObject* parent)
,
_tuningComponent
(
NULL
)
,
_airframeFacts
(
new
APMAirframeLoader
(
this
,
vehicle
->
uas
(),
this
))
,
_esp8266Component
(
NULL
)
,
_mixersComponent
(
NULL
)
{
APMAirframeLoader
::
loadAirframeFactMetaData
();
}
...
...
@@ -102,6 +104,10 @@ const QVariantList& APMAutoPilotPlugin::vehicleComponents(void)
_tuningComponent
->
setupTriggerSignals
();
_components
.
append
(
QVariant
::
fromValue
((
VehicleComponent
*
)
_tuningComponent
));
_mixersComponent
=
new
MixersComponent
(
_vehicle
,
this
);
_mixersComponent
->
setupTriggerSignals
();
_components
.
append
(
QVariant
::
fromValue
((
VehicleComponent
*
)
_mixersComponent
));
_cameraComponent
=
new
APMCameraComponent
(
_vehicle
,
this
);
_cameraComponent
->
setupTriggerSignals
();
_components
.
append
(
QVariant
::
fromValue
((
VehicleComponent
*
)
_cameraComponent
));
...
...
src/AutoPilotPlugins/APM/APMAutoPilotPlugin.h
View file @
66e05199
...
...
@@ -27,6 +27,7 @@ class APMCameraComponent;
class
APMLightsComponent
;
class
APMSubFrameComponent
;
class
ESP8266Component
;
class
MixersComponent
;
/// This is the APM specific implementation of the AutoPilot class.
class
APMAutoPilotPlugin
:
public
AutoPilotPlugin
...
...
@@ -55,6 +56,7 @@ public:
APMSensorsComponent
*
sensorsComponent
(
void
)
const
{
return
_sensorsComponent
;
}
APMTuningComponent
*
tuningComponent
(
void
)
const
{
return
_tuningComponent
;
}
ESP8266Component
*
esp8266Component
(
void
)
const
{
return
_esp8266Component
;
}
MixersComponent
*
mixersComponent
(
void
)
{
return
_mixersComponent
;
}
private:
bool
_incorrectParameterVersion
;
///< true: parameter version incorrect, setup not allowed
...
...
@@ -76,6 +78,7 @@ private:
APMTuningComponent
*
_tuningComponent
;
APMAirframeLoader
*
_airframeFacts
;
ESP8266Component
*
_esp8266Component
;
MixersComponent
*
_mixersComponent
;
};
#endif
src/AutoPilotPlugins/Common/MixersComponent.cc
0 → 100644
View file @
66e05199
/****************************************************************************
*
* (c) 2009-2016 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
*
* QGroundControl is licensed according to the terms in the file
* COPYING.md in the root of the source code directory.
*
****************************************************************************/
#include "MixersComponent.h"
#include "APMAutoPilotPlugin.h"
#include "APMAirframeComponent.h"
#include "ParameterManager.h"
MixersComponent
::
MixersComponent
(
Vehicle
*
vehicle
,
AutoPilotPlugin
*
autopilot
,
QObject
*
parent
)
:
VehicleComponent
(
vehicle
,
autopilot
,
parent
)
,
_name
(
tr
(
"Mixers"
))
{
}
QString
MixersComponent
::
name
(
void
)
const
{
return
_name
;
}
QString
MixersComponent
::
description
(
void
)
const
{
return
tr
(
"Mixers tuning is used to blah, blah, blah... [WIP]"
);
}
QString
MixersComponent
::
iconResource
(
void
)
const
{
return
QStringLiteral
(
"/qmlimages/TuningComponentIcon.png"
);
}
bool
MixersComponent
::
requiresSetup
(
void
)
const
{
return
false
;
}
bool
MixersComponent
::
setupComplete
(
void
)
const
{
return
true
;
}
QStringList
MixersComponent
::
setupCompleteChangedTriggerList
(
void
)
const
{
return
QStringList
();
}
QUrl
MixersComponent
::
setupSource
(
void
)
const
{
return
QUrl
::
fromUserInput
(
QStringLiteral
(
"qrc:/qml/MixersComponent.qml"
));
}
QUrl
MixersComponent
::
summaryQmlSource
(
void
)
const
{
return
QUrl
();
}
QString
MixersComponent
::
prerequisiteSetup
(
void
)
const
{
return
QString
();
}
src/AutoPilotPlugins/Common/MixersComponent.h
0 → 100644
View file @
66e05199
/****************************************************************************
*
* (c) 2009-2016 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
*
* QGroundControl is licensed according to the terms in the file
* COPYING.md in the root of the source code directory.
*
****************************************************************************/
#ifndef MixersComponent_H
#define MixersComponent_H
#include "VehicleComponent.h"
// Mixers Tuning vehicle component
class
MixersComponent
:
public
VehicleComponent
{
Q_OBJECT
public:
MixersComponent
(
Vehicle
*
vehicle
,
AutoPilotPlugin
*
autopilot
,
QObject
*
parent
=
NULL
);
// Virtuals from VehicleComponent
QStringList
setupCompleteChangedTriggerList
(
void
)
const
final
;
// Virtuals from VehicleComponent
QString
name
(
void
)
const
final
;
QString
description
(
void
)
const
final
;
QString
iconResource
(
void
)
const
final
;
bool
requiresSetup
(
void
)
const
final
;
bool
setupComplete
(
void
)
const
final
;
QUrl
setupSource
(
void
)
const
final
;
QUrl
summaryQmlSource
(
void
)
const
final
;
QString
prerequisiteSetup
(
void
)
const
final
;
bool
allowSetupWhileArmed
(
void
)
const
final
{
return
true
;
}
private:
const
QString
_name
;
QVariantList
_summaryItems
;
};
#endif
src/AutoPilotPlugins/Common/MixersComponent.qml
0 → 100644
View file @
66e05199
/****************************************************************************
*
* (c) 2009-2016 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
*
* QGroundControl is licensed according to the terms in the file
* COPYING.md in the root of the source code directory.
*
****************************************************************************/
import
QtQuick
2.5
import
QtQuick
.
Controls
1.4
import
QGroundControl
.
FactSystem
1.0
import
QGroundControl
.
FactControls
1.0
import
QGroundControl
.
Palette
1.0
import
QGroundControl
.
Controls
1.0
import
QGroundControl
.
ScreenTools
1.0
// Mixer Tuning setup page
SetupPage
{
id
:
tuningPage
pageComponent
:
tuningPageComponent
Component
{
id
:
tuningPageComponent
Column
{
width
:
availableWidth
spacing
:
_margins
FactPanelController
{
id
:
controller
;
factPanel
:
tuningPage
.
viewPanel
}
QGCPalette
{
id
:
palette
;
colorGroupEnabled
:
true
}
QGCLabel
{
text
:
qsTr
(
"
Lot of Qml code goes here...
"
)
}
}
// Column
}
// Component
}
// SetupView
src/AutoPilotPlugins/PX4/PX4AutoPilotPlugin.cc
View file @
66e05199
...
...
@@ -31,6 +31,8 @@ PX4AutoPilotPlugin::PX4AutoPilotPlugin(Vehicle* vehicle, QObject* parent)
,
_safetyComponent
(
NULL
)
,
_powerComponent
(
NULL
)
,
_motorComponent
(
NULL
)
,
_tuningComponent
(
NULL
)
,
_mixersComponent
(
NULL
)
,
_incorrectParameterVersion
(
false
)
{
Q_ASSERT
(
vehicle
);
...
...
@@ -89,6 +91,10 @@ const QVariantList& PX4AutoPilotPlugin::vehicleComponents(void)
_tuningComponent
->
setupTriggerSignals
();
_components
.
append
(
QVariant
::
fromValue
((
VehicleComponent
*
)
_tuningComponent
));
_mixersComponent
=
new
MixersComponent
(
_vehicle
,
this
);
_mixersComponent
->
setupTriggerSignals
();
_components
.
append
(
QVariant
::
fromValue
((
VehicleComponent
*
)
_mixersComponent
));
//-- Is there support for cameras?
if
(
_vehicle
->
parameterManager
()
->
parameterExists
(
_vehicle
->
id
(),
"TRIG_MODE"
))
{
_cameraComponent
=
new
CameraComponent
(
_vehicle
,
this
);
...
...
src/AutoPilotPlugins/PX4/PX4AutoPilotPlugin.h
View file @
66e05199
...
...
@@ -23,6 +23,7 @@
#include "PowerComponent.h"
#include "MotorComponent.h"
#include "PX4TuningComponent.h"
#include "MixersComponent.h"
#include "Vehicle.h"
#include <QImage>
...
...
@@ -54,6 +55,7 @@ public:
PowerComponent
*
powerComponent
(
void
)
{
return
_powerComponent
;
}
MotorComponent
*
motorComponent
(
void
)
{
return
_motorComponent
;
}
PX4TuningComponent
*
tuningComponent
(
void
)
{
return
_tuningComponent
;
}
MixersComponent
*
mixersComponent
(
void
)
{
return
_mixersComponent
;
}
private:
PX4AirframeLoader
*
_airframeFacts
;
...
...
@@ -68,6 +70,7 @@ private:
PowerComponent
*
_powerComponent
;
MotorComponent
*
_motorComponent
;
PX4TuningComponent
*
_tuningComponent
;
MixersComponent
*
_mixersComponent
;
bool
_incorrectParameterVersion
;
///< true: parameter version incorrect, setup not allowed
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment