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
6402c298
Commit
6402c298
authored
Oct 29, 2014
by
Don Gagne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow Advanced Config for all firmware types
parent
757ccb25
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
44 deletions
+17
-44
QGCConfigView.cc
src/ui/QGCConfigView.cc
+12
-41
QGCPX4VehicleConfig.cc
src/ui/QGCPX4VehicleConfig.cc
+5
-3
No files found.
src/ui/QGCConfigView.cc
View file @
6402c298
...
...
@@ -2,8 +2,6 @@
#include "ui_QGCConfigView.h"
#include "UASManager.h"
#include "QGCPX4VehicleConfig.h"
#include "QGCVehicleConfig.h"
#include "QGCPX4VehicleConfig.h"
#include "MainWindow.h"
QGCConfigView
::
QGCConfigView
(
QWidget
*
parent
)
:
...
...
@@ -16,22 +14,13 @@ QGCConfigView::QGCConfigView(QWidget *parent) :
connect
(
UASManager
::
instance
(),
SIGNAL
(
activeUASSet
(
UASInterface
*
)),
this
,
SLOT
(
activeUASChanged
(
UASInterface
*
)));
// The config screens are required for firmware uploading
if
(
MainWindow
::
instance
()
->
getCustomMode
()
==
MainWindow
::
CUSTOM_MODE_PX4
)
{
ui
->
gridLayout
->
removeWidget
(
ui
->
waitingLabel
);
ui
->
waitingLabel
->
setVisible
(
false
);
delete
ui
->
waitingLabel
;
ui
->
waitingLabel
=
NULL
;
config
=
new
QGCPX4VehicleConfig
();
ui
->
gridLayout
->
addWidget
(
config
);
}
else
{
//don't show a configuration widget if no vehicle is connected
//show a placeholder informational widget instead
}
ui
->
gridLayout
->
removeWidget
(
ui
->
waitingLabel
);
ui
->
waitingLabel
->
setVisible
(
false
);
delete
ui
->
waitingLabel
;
ui
->
waitingLabel
=
NULL
;
config
=
new
QGCPX4VehicleConfig
();
ui
->
gridLayout
->
addWidget
(
config
);
}
QGCConfigView
::~
QGCConfigView
()
...
...
@@ -68,30 +57,12 @@ void QGCConfigView::activeUASChanged(UASInterface* uas)
}
}
int
autopilotType
=
mav
->
getAutopilotType
();
switch
(
autopilotType
)
{
case
MAV_AUTOPILOT_PX4
:
{
QGCPX4VehicleConfig
*
px4config
=
qobject_cast
<
QGCPX4VehicleConfig
*>
(
config
);
if
(
!
px4config
)
{
if
(
config
)
delete
config
;
config
=
new
QGCPX4VehicleConfig
();
ui
->
gridLayout
->
addWidget
(
config
);
}
}
break
;
default:
{
QGCVehicleConfig
*
generalconfig
=
qobject_cast
<
QGCVehicleConfig
*>
(
config
);
if
(
!
generalconfig
)
{
if
(
config
)
delete
config
;
config
=
new
QGCVehicleConfig
();
ui
->
gridLayout
->
addWidget
(
config
);
}
}
break
;
QGCPX4VehicleConfig
*
px4config
=
qobject_cast
<
QGCPX4VehicleConfig
*>
(
config
);
if
(
!
px4config
)
{
if
(
config
)
delete
config
;
config
=
new
QGCPX4VehicleConfig
();
ui
->
gridLayout
->
addWidget
(
config
);
}
}
else
{
...
...
src/ui/QGCPX4VehicleConfig.cc
View file @
6402c298
...
...
@@ -270,10 +270,12 @@ void QGCPX4VehicleConfig::setActiveUAS(UASInterface* active)
// Since a system is now connected, enable the VehicleConfig UI.
// Enable buttons
bool
px4Firmware
=
mav
->
getAutopilotType
()
==
MAV_AUTOPILOT_PIXHAWK
;
ui
->
airframeMenuButton
->
setEnabled
(
px4Firmware
);
ui
->
sensorMenuButton
->
setEnabled
(
px4Firmware
);
ui
->
rcMenuButton
->
setEnabled
(
px4Firmware
);
ui
->
advancedMenuButton
->
setEnabled
(
true
);
ui
->
airframeMenuButton
->
setEnabled
(
true
);
ui
->
sensorMenuButton
->
setEnabled
(
true
);
ui
->
rcMenuButton
->
setEnabled
(
true
);
}
void
QGCPX4VehicleConfig
::
parameterChanged
(
int
uas
,
int
component
,
QString
parameterName
,
QVariant
value
)
...
...
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