Skip to content

Commit

Permalink
Added RTK fix/float enums (#94)
Browse files Browse the repository at this point in the history
Co-authored-by: Alex Youngs <[email protected]>
  • Loading branch information
agyoungs and agyoungs authored May 9, 2024
1 parent c30407a commit f7fe32f
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions gps_msgs/msg/GPSStatus.msg
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,14 @@ int32[] satellite_visible_azimuth # Azimuth of satellites
int32[] satellite_visible_snr # Signal-to-noise ratios (dB)

# Measurement status
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_WAAS_FIX=33 # Fixed with WAAS
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
int16 status

uint16 SOURCE_NONE=0 # No information is available
Expand Down

0 comments on commit f7fe32f

Please sign in to comment.