forked from ros-drivers/gps_umd
-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added GPSExtendedStatus msg to allow for additional status enums (#93)
Co-authored-by: Alex Youngs <alexyoungs@hatchbed.com> Co-authored-by: David Anthony <djanthony@gmail.com>
- Loading branch information
1 parent
6b8c31f
commit 68e8398
Showing
2 changed files
with
10 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,6 +28,7 @@ catkin_python_setup() | |
add_message_files( | ||
FILES | ||
GPSStatus.msg | ||
GPSExtendedStatus.msg | ||
GPSFix.msg | ||
) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Extended Measurement status to use for GPSStatus.msg | ||
int16 STATUS_NO_FIX=-1 # Unable to fix position | ||
int16 STATUS_FIX=0 # Normal fix | ||
int16 STATUS_SBAS_FIX=1 # Fixed using a satellite-based augmentation system | ||
int16 STATUS_GBAS_FIX=2 # or a ground-based augmentation system | ||
int16 STATUS_DGPS_FIX=18 # Fixed with DGPS | ||
int16 STATUS_RTK_FIX=19 # Real-Time Kinematic, fixed integers | ||
int16 STATUS_RTK_FLOAT=20 # Real-Time Kinematic, float integers | ||
int16 STATUS_WAAS_FIX=33 # Fixed with WAAS |