summaryrefslogtreecommitdiff
path: root/gps
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2010-04-16 02:10:08 -0400
committerEric S. Raymond <esr@thyrsus.com>2010-04-16 02:10:08 -0400
commit4e9796b59b6de9128d4be16fd297f41f982ea69d (patch)
treef9ccc2a061d5491f0458b215a3b544cfc59af8da /gps
parent9bca82dd25b7bff2f4b33207a786a1e85f44c1b1 (diff)
downloadgpsd-4e9796b59b6de9128d4be16fd297f41f982ea69d.tar.gz
Change the value of the (never shipped) ATTITUDE_SET flag.
Strictly cosmetic, but I wouldn't have gotten to do it after 2.93 without breaking binary compatibility. All regression tests pass.
Diffstat (limited to 'gps')
-rwxr-xr-xgps/gps.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/gps/gps.py b/gps/gps.py
index 79194fa5..b9a11f9f 100755
--- a/gps/gps.py
+++ b/gps/gps.py
@@ -33,7 +33,7 @@ DOP_SET = 0x00000400
VERSION_SET = 0x00000800
HERR_SET = 0x00001000
VERR_SET = 0x00002000
-UNUSED1_SET = 0x00004000
+ATTITUDE_SET = 0x00004000
POLICY_SET = 0x00008000
SATELLITE_SET = 0x00010000
RAW_SET = 0x00020000
@@ -49,7 +49,6 @@ RTCM2_SET = 0x04000000
RTCM3_SET = 0x08000000
AIS_SET = 0x10000000
PACKET_SET = 0x20000000
-ATTITUDE_SET = 0x40000000
AUXDATA_SET = 0x80000000
UNION_SET = (RTCM2_SET|RTCM3_SET|AIS_SET|VERSION_SET|DEVICELIST_SET|ERROR_SET)