summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@aleksander.es>2018-07-02 00:25:54 +0200
committerDan Williams <dcbw@redhat.com>2018-08-21 13:26:08 +0000
commit091bf4dbd811a7e556613397cd0efa7b8998a2cd (patch)
treeecdd13be2c2a4b1ed3b3f14577ae726df9f48952 /include
parent0798f32362f0a9664e65de13c66d3767fc7ddf6d (diff)
downloadModemManager-091bf4dbd811a7e556613397cd0efa7b8998a2cd.tar.gz
api: support location assistance data
Sometimes SUPL-server based A-GPS is not possible, e.g. if the module doesn't have Internet connectivity. In such cases, the modem may support injecting additional "assistance data" that may be downloaded from the Internet using external means (e.g. WiFi), in order to keep having a quick time to first fix. We now support using this location assistance data, with the following new API elements: * A new mask of supported assistance data types is provided in the SupportedAssistanceData property. * A new list of URLs from where the aassistance data may be downloaded is also provided in a new AssistanceDataServers property. * A new InjectAssistanceData() method is provided, to perform the data injection in the module once it's been downloaded to the host system.
Diffstat (limited to 'include')
-rw-r--r--include/ModemManager-enums.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/ModemManager-enums.h b/include/ModemManager-enums.h
index 10166d24d..60bbb027f 100644
--- a/include/ModemManager-enums.h
+++ b/include/ModemManager-enums.h
@@ -911,6 +911,18 @@ typedef enum { /*< underscore_name=mm_modem_location_source >*/
} MMModemLocationSource;
/**
+ * MMModemLocationAssistanceDataType:
+ * @MM_MODEM_LOCATION_ASSISTANCE_DATA_TYPE_NONE: None.
+ * @MM_MODEM_LOCATION_ASSISTANCE_DATA_TYPE_XTRA: Qualcomm gpsOneXTRA.
+ *
+ * Type of assistance data that may be injected to the GNSS module.
+ */
+typedef enum { /*< underscore_name=mm_modem_location_assistance_data_type >*/
+ MM_MODEM_LOCATION_ASSISTANCE_DATA_TYPE_NONE = 0,
+ MM_MODEM_LOCATION_ASSISTANCE_DATA_TYPE_XTRA = 1 << 0,
+} MMModemLocationAssistanceDataType;
+
+/**
* MMModemContactsStorage:
* @MM_MODEM_CONTACTS_STORAGE_UNKNOWN: Unknown location.
* @MM_MODEM_CONTACTS_STORAGE_ME: Device's local memory.