Decouple position inject request from assist data
Add LOC_API_ADAPTER_BIT_POSITION_INJECTION_REQUEST mask bit to decouple from LOC_API_ADAPTER_BIT_ASSISTANCE_DATA_REQUEST. Change-Id: I4c2f8439dca9ea3b4d56a3cd00da88e4488717bf CRs-fixed: 2044870
This commit is contained in:
parent
9546df2965
commit
d9f26fc543
1 changed files with 2 additions and 0 deletions
|
@ -491,6 +491,7 @@ enum loc_api_adapter_event_index {
|
|||
LOC_API_ADAPTER_REQUEST_TIMEZONE, // Timezone injection request
|
||||
LOC_API_ADAPTER_REPORT_GENFENCE_DWELL_REPORT, // Geofence dwell report
|
||||
LOC_API_ADAPTER_REQUEST_SRN_DATA, // request srn data from AP
|
||||
LOC_API_ADAPTER_REQUEST_POSITION_INJECTION, // Position injection request
|
||||
LOC_API_ADAPTER_EVENT_MAX
|
||||
};
|
||||
|
||||
|
@ -524,6 +525,7 @@ enum loc_api_adapter_event_index {
|
|||
#define LOC_API_ADAPTER_BIT_REQUEST_TIMEZONE (1<<LOC_API_ADAPTER_REQUEST_TIMEZONE)
|
||||
#define LOC_API_ADAPTER_BIT_REPORT_GENFENCE_DWELL (1<<LOC_API_ADAPTER_REPORT_GENFENCE_DWELL_REPORT)
|
||||
#define LOC_API_ADAPTER_BIT_REQUEST_SRN_DATA (1<<LOC_API_ADAPTER_REQUEST_SRN_DATA)
|
||||
#define LOC_API_ADAPTER_BIT_POSITION_INJECTION_REQUEST (1<<LOC_API_ADAPTER_REQUEST_POSITION_INJECTION)
|
||||
|
||||
|
||||
typedef unsigned int LOC_API_ADAPTER_EVENT_MASK_T;
|
||||
|
|
Loading…
Reference in a new issue