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
1755f202
Commit
1755f202
authored
Aug 31, 2010
by
pixhawk
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of pixhawk.ethz.ch:qgroundcontrol
parents
e709a225
78f5f68a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
12 deletions
+8
-12
PxQuadMAV.cc
src/uas/PxQuadMAV.cc
+0
-1
QGCParamWidget.cc
src/ui/QGCParamWidget.cc
+1
-4
UASControlWidget.cc
src/ui/uas/UASControlWidget.cc
+7
-7
No files found.
src/uas/PxQuadMAV.cc
View file @
1755f202
...
...
@@ -139,7 +139,6 @@ void PxQuadMAV::receiveMessage(LinkInterface* link, mavlink_message_t message)
emit
errCountChanged
(
uasId
,
"IMU"
,
"SPI0"
,
status
.
spi0_err_count
);
emit
errCountChanged
(
uasId
,
"IMU"
,
"SPI1"
,
status
.
spi1_err_count
);
emit
errCountChanged
(
uasId
,
"IMU"
,
"UART"
,
status
.
uart_total_err_count
);
qDebug
()
<<
"System Load:"
<<
status
.
load
;
emit
UAS
::
valueChanged
(
this
,
"Load"
,
((
float
)
status
.
load
)
/
1000.0
f
,
MG
::
TIME
::
getGroundTimeNow
());
}
break
;
...
...
src/ui/QGCParamWidget.cc
View file @
1755f202
...
...
@@ -2,9 +2,7 @@
QGroundControl Open Source Ground Control Station
(c) 2009, 2010 QGROUNDCONTROL/PIXHAWK PROJECT
<http://www.qgroundcontrol.org>
<http://pixhawk.ethz.ch>
(c) 2009, 2010 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
This file is part of the QGROUNDCONTROL project
...
...
@@ -22,7 +20,6 @@ This file is part of the QGROUNDCONTROL project
along with QGROUNDCONTROL. If not, see <http://www.gnu.org/licenses/>.
======================================================================*/
/**
* @file
* @brief Implementation of class QGCParamWidget
...
...
src/ui/uas/UASControlWidget.cc
View file @
1755f202
...
...
@@ -51,13 +51,13 @@ This file is part of the PIXHAWK project
#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
#define CONTROL_MODE_LOCKED_INDEX
1
#define CONTROL_MODE_MANUAL_INDEX
2
#define CONTROL_MODE_GUIDED_INDEX
3
#define CONTROL_MODE_AUTO_INDEX
4
#define CONTROL_MODE_TEST1_INDEX
5
#define CONTROL_MODE_TEST2_INDEX
6
#define CONTROL_MODE_TEST3_INDEX
7
UASControlWidget
::
UASControlWidget
(
QWidget
*
parent
)
:
QWidget
(
parent
),
uas
(
0
),
...
...
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