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
6472f48b
Commit
6472f48b
authored
Feb 02, 2023
by
Léo-Paul Géneau
👾
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove roll, pitch and throttle from logs
parent
f28e5544
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
mavsdk_wrapper.cpp
mavsdk_wrapper.cpp
+3
-4
No files found.
mavsdk_wrapper.cpp
View file @
6472f48b
...
...
@@ -142,15 +142,14 @@ int mavsdk_start(const char * url, const char * log_file, int timeout) {
log
(
"Subscribing to raw GPS..."
);
telemetry
->
subscribe_raw_gps
([](
Telemetry
::
RawGps
gps
)
{
std
::
ostringstream
oss
;
Telemetry
::
EulerAngle
euler_angle
=
telemetry
->
attitude_euler
();
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
;
<<
telemetry
->
attitude_euler
()
.
yaw_deg
<<
";"
<<
metrics
.
airspeed_m_s
<<
";"
<<
metrics
.
climb_rate_m_s
;
log
(
oss
.
str
());
});
...
...
@@ -164,7 +163,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);
yaw(°);air speed (m/s
);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