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
bb0c43c9
Commit
bb0c43c9
authored
Aug 11, 2015
by
Lorenz Meier
Browse files
Linechart: Output log format with 15 digits precision
parent
f7e8ba99
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/ui/linechart/LinechartWidget.cc
View file @
bb0c43c9
...
...
@@ -373,7 +373,8 @@ void LinechartWidget::appendData(int uasId, const QString& curve, const QString&
qint64
time
=
usec
-
logStartTime
;
if
(
time
<
0
)
time
=
0
;
logFile
->
write
(
QString
(
QString
::
number
(
time
)
+
"
\t
"
+
QString
::
number
(
uasId
)
+
"
\t
"
+
curve
+
"
\t
"
+
QString
::
number
(
value
)
+
"
\n
"
).
toLatin1
());
QString
line
=
QString
(
"%1
\t
%2
\t
%3
\t
%4
\n
"
).
arg
(
time
).
arg
(
uasId
).
arg
(
curve
).
arg
(
value
,
0
,
'e'
,
15
);
logFile
->
write
(
line
.
toLatin1
());
}
}
}
...
...
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