Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
8fb943eb
Commit
8fb943eb
authored
Apr 14, 2010
by
lm
Browse files
Fixed temp and baro mixup
parent
076cef43
Changes
3
Hide whitespace changes
Inline
Side-by-side
qgroundcontrol.pri
View file @
8fb943eb
...
...
@@ -73,7 +73,7 @@ macx {
DESTDIR = $$BASEDIR/bin/mac
INCLUDEPATH += -framework SDL \
$$BASEDIR/../mavlink/
src
$$BASEDIR/../mavlink/
include
LIBS += -framework IOKit \
-framework SDL \
...
...
qgroundcontrol.pro
View file @
8fb943eb
...
...
@@ -30,9 +30,9 @@ DEPENDPATH += . \
lib
/
QMapControl
/
src
INCLUDEPATH
+=
.
\
lib
/
QMapControl
\
..
/
mavlink
/
src
\
MAVLink
/
src
\
mavlink
/
src
..
/
mavlink
/
include
\
MAVLink
/
include
\
mavlink
/
include
#
Input
FORMS
+=
src
/
ui
/
MainWindow
.
ui
\
...
...
src/uas/UAS.cc
View file @
8fb943eb
...
...
@@ -265,7 +265,7 @@ void UAS::receiveMessage(LinkInterface* link, mavlink_message_t message)
emit
valueChanged
(
uasId
,
"Mag. Y"
,
raw
.
ymag
,
time
);
emit
valueChanged
(
uasId
,
"Mag. Z"
,
raw
.
zmag
,
time
);
emit
valueChanged
(
uasId
,
"Pressure"
,
raw
.
baro
,
time
);
emit
valueChanged
(
uasId
,
"Temperature"
,
raw
.
baro
,
time
);
emit
valueChanged
(
uasId
,
"Temperature"
,
raw
.
temp
,
time
);
}
break
;
case
MAVLINK_MSG_ID_ATTITUDE
:
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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