Add new event mask for timezone
Modem sends this event to request for injection of timezone and offset from UTC Change-Id: Ie94f660efc3163cbde243a9bccb94d37785349b3 CRs-fixed: 846501
This commit is contained in:
parent
9eb36c357a
commit
4e8b3506bf
1 changed files with 2 additions and 2 deletions
|
@ -372,7 +372,7 @@ enum loc_api_adapter_event_index {
|
|||
LOC_API_ADAPTER_GDT_UPLOAD_BEGIN_REQ, // GDT upload start request
|
||||
LOC_API_ADAPTER_GDT_UPLOAD_END_REQ, // GDT upload end request
|
||||
LOC_API_ADAPTER_GNSS_MEASUREMENT, // GNSS Measurement report
|
||||
|
||||
LOC_API_ADAPTER_REQUEST_TIMEZONE, // Timezone injection request
|
||||
LOC_API_ADAPTER_EVENT_MAX
|
||||
};
|
||||
|
||||
|
@ -401,6 +401,7 @@ enum loc_api_adapter_event_index {
|
|||
#define LOC_API_ADAPTER_BIT_GDT_UPLOAD_BEGIN_REQ (1<<LOC_API_ADAPTER_GDT_UPLOAD_BEGIN_REQ)
|
||||
#define LOC_API_ADAPTER_BIT_GDT_UPLOAD_END_REQ (1<<LOC_API_ADAPTER_GDT_UPLOAD_END_REQ)
|
||||
#define LOC_API_ADAPTER_BIT_GNSS_MEASUREMENT (1<<LOC_API_ADAPTER_GNSS_MEASUREMENT)
|
||||
#define LOC_API_ADAPTER_BIT_REQUEST_TIMEZONE (1<<LOC_API_ADAPTER_REQUEST_TIMEZONE)
|
||||
|
||||
typedef unsigned int LOC_API_ADAPTER_EVENT_MASK_T;
|
||||
|
||||
|
@ -422,4 +423,3 @@ typedef uint32_t LOC_GPS_LOCK_MASK;
|
|||
#endif /* __cplusplus */
|
||||
|
||||
#endif /* GPS_EXTENDED_C_H */
|
||||
|
||||
|
|
Loading…
Reference in a new issue