summaryrefslogtreecommitdiff
path: root/core/SystemStatus.h
diff options
context:
space:
mode:
authorKevin Tang <quic_zhikait@quicinc.com>2019-09-10 15:06:01 -0700
committerWayne Lin <waynewhlin@google.com>2019-10-02 12:23:41 +0800
commit5aa8de4a0f30c9507de5fcdab29caeb962356c1a (patch)
treeec3216c9aa23a029d3355d2f6a9f7049246f9fe4 /core/SystemStatus.h
parent6c4d159942ff43c743759a0ec7ced6190504e217 (diff)
downloadgps-5aa8de4a0f30c9507de5fcdab29caeb962356c1a.tar.gz
Support PQWP7 parsing without NAVIC
Support PQWP7 NMEA parsing for older GNSS engine without NAVIC support. Bug:141735605 Test: build pass and no PQWP7 error when tracking CRs-Fixed: 2516292 Change-Id: I62bd4467f15b8c5fc77e7c979eefb146276ff2a0
Diffstat (limited to 'core/SystemStatus.h')
-rw-r--r--core/SystemStatus.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/SystemStatus.h b/core/SystemStatus.h
index d119a1c..2cfb25d 100644
--- a/core/SystemStatus.h
+++ b/core/SystemStatus.h
@@ -59,7 +59,8 @@
#define BDS_NUM (37)
#define GAL_NUM (36)
#define NAVIC_NUM (14)
-#define SV_ALL_NUM (GPS_NUM+GLO_NUM+QZSS_NUM+BDS_NUM+GAL_NUM+NAVIC_NUM) //=148
+#define SV_ALL_NUM_MIN (GPS_NUM + GLO_NUM + QZSS_NUM + BDS_NUM + GAL_NUM) //=134
+#define SV_ALL_NUM (SV_ALL_NUM_MIN + NAVIC_NUM) //=148
namespace loc_core
{