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
e28a6c9c
Unverified
Commit
e28a6c9c
authored
Mar 27, 2020
by
Don Gagne
Committed by
GitHub
Mar 27, 2020
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #8587 from dakejahl/pr-GPS_message_name_update
Update GPS struct name to match PX4
parents
7c143cc6
87cca121
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
Drivers
src/GPS/Drivers
+1
-1
GPSPositionMessage.h
src/GPS/GPSPositionMessage.h
+1
-1
GPSProvider.h
src/GPS/GPSProvider.h
+2
-2
vehicle_gps_position.h
src/GPS/vehicle_gps_position.h
+1
-1
No files found.
Drivers
@
2bfc6ffb
Subproject commit 2
a4865adc3808687d6c6f550f497a02eb920c382
Subproject commit 2
bfc6ffb3ba74b60deab5aef8e34c2cb909c4edc
src/GPS/GPSPositionMessage.h
View file @
e28a6c9c
...
...
@@ -20,7 +20,7 @@
*/
struct
GPSPositionMessage
{
vehicle_gps_position
_s
position_data
;
sensor_gps
_s
position_data
;
};
Q_DECLARE_METATYPE
(
GPSPositionMessage
);
...
...
src/GPS/GPSProvider.h
View file @
e28a6c9c
...
...
@@ -85,8 +85,8 @@ private:
float
_fixedBaseAltitudeMeters
;
float
_fixedBaseAccuracyMeters
;
struct
vehicle_gps_position_s
_reportGpsPos
;
struct
satellite_info_s
*
_pReportSatInfo
=
nullptr
;
struct
sensor_gps_s
_reportGpsPos
;
struct
satellite_info_s
*
_pReportSatInfo
=
nullptr
;
QSerialPort
*
_serial
=
nullptr
;
};
src/GPS/vehicle_gps_position.h
View file @
e28a6c9c
...
...
@@ -42,7 +42,7 @@
* and was manually copied here.
*/
struct
vehicle_gps_position
_s
{
struct
sensor_gps
_s
{
uint64_t
timestamp
;
uint64_t
time_utc_usec
;
int32_t
lat
;
...
...
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