summaryrefslogtreecommitdiff
path: root/core/SystemStatus.h
diff options
context:
space:
mode:
authorKatz Yamada <kyamada@codeaurora.org>2017-09-14 15:04:24 -0700
committerGerrit - the friendly Code Review server <code-review@localhost>2017-09-22 13:08:59 -0700
commitfe17363801963612a590674562a6489db9865bd0 (patch)
treec11e1e97cc585e4f7c1c0800c122694cf09b60d9 /core/SystemStatus.h
parent220b5cb5819185b907f97b68e5a31e8e9011ed5a (diff)
downloadgps-fe17363801963612a590674562a6489db9865bd0.tar.gz
Add support more bp amplitude in systemstatus
Add support of glo/bds/gal baseband processor amplitude in systemstatus. These values will be added in PQWM1 debug NMEA messasge. Change-Id: If880bdfa81b41a82bb133bda8a0b33862f3eade5 CRs-Fixed: 2091024
Diffstat (limited to 'core/SystemStatus.h')
-rw-r--r--core/SystemStatus.h14
1 files changed, 13 insertions, 1 deletions
diff --git a/core/SystemStatus.h b/core/SystemStatus.h
index 664296b..9ee85d3 100644
--- a/core/SystemStatus.h
+++ b/core/SystemStatus.h
@@ -150,6 +150,12 @@ public:
double mAgcGlo;
double mAgcBds;
double mAgcGal;
+ uint32_t mGloBpAmpI;
+ uint32_t mGloBpAmpQ;
+ uint32_t mBdsBpAmpI;
+ uint32_t mBdsBpAmpQ;
+ uint32_t mGalBpAmpI;
+ uint32_t mGalBpAmpQ;
inline SystemStatusRfAndParams() :
mPgaGain(0),
mGpsBpAmpI(0),
@@ -163,7 +169,13 @@ public:
mAgcGps(0),
mAgcGlo(0),
mAgcBds(0),
- mAgcGal(0) {}
+ mAgcGal(0),
+ mGloBpAmpI(0),
+ mGloBpAmpQ(0),
+ mBdsBpAmpI(0),
+ mBdsBpAmpQ(0),
+ mGalBpAmpI(0),
+ mGalBpAmpQ(0) {}
inline SystemStatusRfAndParams(const SystemStatusPQWM1& nmea);
bool equals(SystemStatusRfAndParams& peer);
void dump(void);