Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Q
qjs-wrapper
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
qjs-wrapper
Commits
f28e5544
Commit
f28e5544
authored
Feb 01, 2023
by
Léo-Paul Géneau
👾
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
trim whitespaces in logs
parent
6dd2502f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
mavsdk_wrapper.cpp
mavsdk_wrapper.cpp
+6
-6
No files found.
mavsdk_wrapper.cpp
View file @
f28e5544
...
...
@@ -146,11 +146,11 @@ int mavsdk_start(const char * url, const char * log_file, int timeout) {
Telemetry
::
FixedwingMetrics
metrics
=
telemetry
->
fixedwing_metrics
();
Telemetry
::
Position
position
=
telemetry
->
position
();
oss
<<
gps
.
timestamp_us
<<
";
"
<<
gps
.
latitude_deg
<<
";
"
<<
gps
.
longitude_deg
<<
";
"
<<
gps
.
absolute_altitude_m
<<
";
"
<<
position
.
relative_altitude_m
<<
";
"
<<
euler_angle
.
pitch_deg
<<
";
"
<<
euler_angle
.
roll_deg
<<
"; "
<<
euler_angle
.
yaw_deg
<<
";
"
<<
metrics
.
airspeed_m_s
<<
";
"
<<
metrics
.
throttle_percentage
<<
";
"
<<
metrics
.
climb_rate_m_s
;
oss
<<
gps
.
timestamp_us
<<
";"
<<
gps
.
latitude_deg
<<
";
"
<<
gps
.
longitude_deg
<<
";
"
<<
gps
.
absolute_altitude_m
<<
";
"
<<
position
.
relative_altitude_m
<<
";
"
<<
euler_angle
.
pitch_deg
<<
";
"
<<
euler_angle
.
roll_deg
<<
";"
<<
euler_angle
.
yaw_deg
<<
";
"
<<
metrics
.
airspeed_m_s
<<
";
"
<<
metrics
.
throttle_percentage
<<
";
"
<<
metrics
.
climb_rate_m_s
;
log
(
oss
.
str
());
});
...
...
@@ -164,7 +164,7 @@ int mavsdk_start(const char * url, const char * log_file, int timeout) {
log
(
"MAVSDK started..."
);
mavsdk_started
=
1
;
log
(
"timestamp;
latitude; longitude; AMSL (m); rel altitude (m); pitch (°); roll(°); yaw(°); air speed (m/s); throttle(%);
climb rate(m/s)"
);
log
(
"timestamp;
latitude;longitude;AMSL (m);rel altitude (m);pitch (°);roll(°);yaw(°);air speed (m/s);throttle(%);
climb rate(m/s)"
);
return
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