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
238a8e45
Commit
238a8e45
authored
Jun 22, 2010
by
pixhawk
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of pixhawk.ethz.ch:qgroundcontrol
parents
a076f256
45819b13
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
0 deletions
+17
-0
UASControlWidget.cc
src/ui/uas/UASControlWidget.cc
+17
-0
No files found.
src/ui/uas/UASControlWidget.cc
View file @
238a8e45
...
...
@@ -47,12 +47,16 @@ This file is part of the PIXHAWK project
#define CONTROL_MODE_GUIDED "MODE GUIDED"
#define CONTROL_MODE_AUTO "MODE AUTO"
#define CONTROL_MODE_TEST1 "MODE TEST1"
#define CONTROL_MODE_TEST2 "MODE TEST2"
#define CONTROL_MODE_TEST3 "MODE TEST3"
#define CONTROL_MODE_LOCKED_INDEX 2
#define CONTROL_MODE_MANUAL_INDEX 3
#define CONTROL_MODE_GUIDED_INDEX 4
#define CONTROL_MODE_AUTO_INDEX 5
#define CONTROL_MODE_TEST1_INDEX 6
#define CONTROL_MODE_TEST2_INDEX 7
#define CONTROL_MODE_TEST3_INDEX 8
UASControlWidget
::
UASControlWidget
(
QWidget
*
parent
)
:
QWidget
(
parent
),
uas
(
NULL
),
...
...
@@ -61,12 +65,15 @@ UASControlWidget::UASControlWidget(QWidget *parent) : QWidget(parent),
ui
.
setupUi
(
this
);
connect
(
UASManager
::
instance
(),
SIGNAL
(
activeUASSet
(
UASInterface
*
)),
this
,
SLOT
(
setUAS
(
UASInterface
*
)));
ui
.
modeComboBox
->
clear
();
ui
.
modeComboBox
->
insertItem
(
0
,
"Select.."
);
ui
.
modeComboBox
->
insertItem
(
CONTROL_MODE_LOCKED_INDEX
,
CONTROL_MODE_LOCKED
);
ui
.
modeComboBox
->
insertItem
(
CONTROL_MODE_MANUAL_INDEX
,
CONTROL_MODE_MANUAL
);
ui
.
modeComboBox
->
insertItem
(
CONTROL_MODE_GUIDED_INDEX
,
CONTROL_MODE_GUIDED
);
ui
.
modeComboBox
->
insertItem
(
CONTROL_MODE_AUTO_INDEX
,
CONTROL_MODE_AUTO
);
ui
.
modeComboBox
->
insertItem
(
CONTROL_MODE_TEST1_INDEX
,
CONTROL_MODE_TEST1
);
ui
.
modeComboBox
->
insertItem
(
CONTROL_MODE_TEST2_INDEX
,
CONTROL_MODE_TEST2
);
ui
.
modeComboBox
->
insertItem
(
CONTROL_MODE_TEST3_INDEX
,
CONTROL_MODE_TEST3
);
ui
.
modeComboBox
->
setCurrentIndex
(
0
);
}
...
...
@@ -156,6 +163,16 @@ void UASControlWidget::setMode(int mode)
uasMode
=
(
unsigned
int
)
MAV_MODE_TEST1
;
ui
.
modeComboBox
->
setCurrentIndex
(
mode
);
}
else
if
(
mode
==
CONTROL_MODE_TEST2_INDEX
)
{
uasMode
=
(
unsigned
int
)
MAV_MODE_TEST2
;
ui
.
modeComboBox
->
setCurrentIndex
(
mode
);
}
else
if
(
mode
==
CONTROL_MODE_TEST3_INDEX
)
{
uasMode
=
(
unsigned
int
)
MAV_MODE_TEST3
;
ui
.
modeComboBox
->
setCurrentIndex
(
mode
);
}
else
{
qDebug
()
<<
"ERROR! MODE NOT FOUND"
;
...
...
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