summaryrefslogtreecommitdiff
path: root/android/2.0
diff options
context:
space:
mode:
authorqctecmdr <qctecmdr@localhost>2019-06-05 22:06:13 -0700
committerGerrit - the friendly Code Review server <code-review@localhost>2019-06-05 22:06:13 -0700
commit9fc8d7444d5f68d3978973dacf7618293f1fd4cd (patch)
treeffe5bf589f9594dedbce4bfd3c6ecff6b15a98fe /android/2.0
parent22e008e8d1a85c90056dd528ed12061afb3b538a (diff)
parent2e7c04a82d85a3ddec7a7a024e00f65e1ee0b0c3 (diff)
downloadgps-9fc8d7444d5f68d3978973dacf7618293f1fd4cd.tar.gz
Merge "Update SystemStatus with battery info in HealthHAL"
Diffstat (limited to 'android/2.0')
-rw-r--r--android/2.0/Gnss.cpp9
1 files changed, 7 insertions, 2 deletions
diff --git a/android/2.0/Gnss.cpp b/android/2.0/Gnss.cpp
index be4efac..4fa5b63 100644
--- a/android/2.0/Gnss.cpp
+++ b/android/2.0/Gnss.cpp
@@ -41,7 +41,7 @@ namespace V2_0 {
namespace implementation {
using ::android::hardware::gnss::visibility_control::V1_0::implementation::GnssVisibilityControl;
-
+static sp<Gnss> sGnss;
static std::string getVersionString() {
static std::string version;
if (!version.empty())
@@ -88,10 +88,14 @@ void Gnss::GnssDeathRecipient::serviceDied(uint64_t cookie, const wp<IBase>& who
}
void location_on_battery_status_changed(bool charging) {
- LOC_LOGd("%s: battery status changed to %s charging", __func__, charging ? "" : "not ");
+ LOC_LOGd("battery status changed to %s charging", charging ? "" : "not");
+ if (sGnss != nullptr) {
+ sGnss->getGnssInterface()->updateBatteryStatus(charging);
+ }
}
Gnss::Gnss() {
ENTRY_LOG_CALLFLOW();
+ sGnss = this;
// register health client to listen on battery change
loc_extn_battery_properties_listener_init(location_on_battery_status_changed);
// clear pending GnssConfig
@@ -105,6 +109,7 @@ Gnss::~Gnss() {
delete mApi;
mApi = nullptr;
}
+ sGnss = nullptr;
}
GnssAPIClient* Gnss::getApi() {