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
3239118e
Unverified
Commit
3239118e
authored
Jul 13, 2018
by
Beat Küng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
GPS: update submodule & account for changed interface
parent
e3833aa5
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
1 deletion
+7
-1
qgroundcontrol.pro
qgroundcontrol.pro
+4
-0
Drivers
src/GPS/Drivers
+1
-1
GPSProvider.cc
src/GPS/GPSProvider.cc
+1
-0
vehicle_gps_position.h
src/GPS/vehicle_gps_position.h
+1
-0
No files found.
qgroundcontrol.pro
View file @
3239118e
...
...
@@ -642,6 +642,8 @@ HEADERS += \
src
/
AnalyzeView
/
GeoTagController
.
h
\
src
/
AnalyzeView
/
MavlinkConsoleController
.
h
\
src
/
GPS
/
Drivers
/
src
/
gps_helper
.
h
\
src
/
GPS
/
Drivers
/
src
/
rtcm
.
h
\
src
/
GPS
/
Drivers
/
src
/
ashtech
.
h
\
src
/
GPS
/
Drivers
/
src
/
ubx
.
h
\
src
/
GPS
/
GPSManager
.
h
\
src
/
GPS
/
GPSPositionMessage
.
h
\
...
...
@@ -823,6 +825,8 @@ SOURCES += \
src
/
AnalyzeView
/
GeoTagController
.
cc
\
src
/
AnalyzeView
/
MavlinkConsoleController
.
cc
\
src
/
GPS
/
Drivers
/
src
/
gps_helper
.
cpp
\
src
/
GPS
/
Drivers
/
src
/
rtcm
.
cpp
\
src
/
GPS
/
Drivers
/
src
/
ashtech
.
cpp
\
src
/
GPS
/
Drivers
/
src
/
ubx
.
cpp
\
src
/
GPS
/
GPSManager
.
cc
\
src
/
GPS
/
GPSProvider
.
cc
\
...
...
Drivers
@
ecc26a43
Subproject commit
41223e860e0f3b7fed5075be8ac17ecb7e07e428
Subproject commit
ecc26a43033fc1b9a3dc6dae053d28438aa2f6a1
src/GPS/GPSProvider.cc
View file @
3239118e
...
...
@@ -63,6 +63,7 @@ void GPSProvider::run()
}
gpsDriver
=
new
GPSDriverUBX
(
GPSDriverUBX
::
Interface
::
UART
,
&
callbackEntry
,
this
,
&
_reportGpsPos
,
_pReportSatInfo
);
baudrate
=
0
;
// auto-configure
gpsDriver
->
setSurveyInSpecs
(
_surveyInAccMeters
*
10000
,
_surveryInDurationSecs
);
if
(
gpsDriver
->
configure
(
baudrate
,
GPSDriverUBX
::
OutputMode
::
RTCM
)
==
0
)
{
...
...
src/GPS/vehicle_gps_position.h
View file @
3239118e
...
...
@@ -63,6 +63,7 @@ struct vehicle_gps_position_s {
float
vel_d_m_s
;
float
cog_rad
;
int32_t
timestamp_time_relative
;
float
heading
;
uint8_t
fix_type
;
bool
vel_ned_valid
;
uint8_t
satellites_used
;
...
...
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