We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91fef14 commit d407bd0Copy full SHA for d407bd0
sensor_msgs/msg/NavSatStatus.msg
@@ -4,16 +4,18 @@
4
# type and the last time differential corrections were received. A
5
# fix is valid when status >= STATUS_FIX.
6
7
+int8 STATUS_UNKNOWN = -2 # status is not yet set
8
int8 STATUS_NO_FIX = -1 # unable to fix position
9
int8 STATUS_FIX = 0 # unaugmented fix
10
int8 STATUS_SBAS_FIX = 1 # with satellite-based augmentation
11
int8 STATUS_GBAS_FIX = 2 # with ground-based augmentation
12
-int8 status
13
+int8 status -2 # STATUS_UNKNOWN
14
15
# Bits defining which Global Navigation Satellite System signals were
16
# used by the receiver.
17
18
+uint16 SERVICE_UNKNOWN = 0 # Remember service is a bitfield, so checking (service & SERVICE_UNKNOWN) will not work. Use == instead.
19
uint16 SERVICE_GPS = 1
20
uint16 SERVICE_GLONASS = 2
21
uint16 SERVICE_COMPASS = 4 # includes BeiDou.
0 commit comments