Add LocApi to get Zpp fix.
Added get zpp fix API so that different other features can make use of this feature in the AP space. Change-Id: I32e750626704c5d0069723ee1ca949fda4a5505e
This commit is contained in:
parent
e6ded1777c
commit
81c423125c
2 changed files with 6 additions and 0 deletions
|
@ -413,6 +413,10 @@ enum loc_api_adapter_err LocApiBase::
|
||||||
setAGLONASSProtocol(unsigned long aGlonassProtocol)
|
setAGLONASSProtocol(unsigned long aGlonassProtocol)
|
||||||
DEFAULT_IMPL(LOC_API_ADAPTER_ERR_SUCCESS)
|
DEFAULT_IMPL(LOC_API_ADAPTER_ERR_SUCCESS)
|
||||||
|
|
||||||
|
enum loc_api_adapter_err LocApiBase::
|
||||||
|
getZppFix(GpsLocation & zppLoc)
|
||||||
|
DEFAULT_IMPL(LOC_API_ADAPTER_ERR_SUCCESS)
|
||||||
|
|
||||||
int LocApiBase::
|
int LocApiBase::
|
||||||
initDataServiceClient()
|
initDataServiceClient()
|
||||||
DEFAULT_IMPL(-1)
|
DEFAULT_IMPL(-1)
|
||||||
|
|
|
@ -174,6 +174,8 @@ public:
|
||||||
setExtPowerConfig(int isBatteryCharging);
|
setExtPowerConfig(int isBatteryCharging);
|
||||||
virtual enum loc_api_adapter_err
|
virtual enum loc_api_adapter_err
|
||||||
setAGLONASSProtocol(unsigned long aGlonassProtocol);
|
setAGLONASSProtocol(unsigned long aGlonassProtocol);
|
||||||
|
virtual enum loc_api_adapter_err
|
||||||
|
getZppFix(GpsLocation & zppLoc);
|
||||||
virtual int initDataServiceClient();
|
virtual int initDataServiceClient();
|
||||||
virtual int openAndStartDataCall();
|
virtual int openAndStartDataCall();
|
||||||
virtual void stopDataCall();
|
virtual void stopDataCall();
|
||||||
|
|
Loading…
Reference in a new issue