diff options
author | Bruno Martins <bgcngm@gmail.com> | 2016-06-05 16:16:13 +0100 |
---|---|---|
committer | davidevinavil <davidevinavil@gmail.com> | 2017-01-21 18:25:08 +0100 |
commit | 82fbdb73c29889792b5003378a8014d1fddf45a5 (patch) | |
tree | e40da2ba8776b01b5047bf33dc0a2f241af8feb8 /gps/etc/flp.conf | |
parent | 5ce00344e5322de64b226b5bf779e8b3d769e723 (diff) |
z2_plus: Build GPS HAL from source
* Remove Location API for targets with RPC
* Use stock GPS configs (also include missing xtwifi.conf)
Change-Id: I142d161b324e1bc84d258adbedb0a454a72e7e4c
Diffstat (limited to 'gps/etc/flp.conf')
-rw-r--r-- | gps/etc/flp.conf | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/gps/etc/flp.conf b/gps/etc/flp.conf new file mode 100644 index 0000000..7d6002f --- /dev/null +++ b/gps/etc/flp.conf @@ -0,0 +1,60 @@ +################################### +##### FLP settings ##### +################################### + +################################### +# FLP BATCHING SIZE +################################### +# The number of batched locations +# requested to modem. The desired number +# defined below may not be satisfied, as +# the modem can only return the number +# of batched locations that can be allocated, +# which is limited by memory. The default +# batch size defined as 20 as below. +BATCH_SIZE=20 + +################################### +# FLP BATCHING SESSION TIMEOUT +################################### +# Duration with which batch session timeout +# happens in milliseconds. If not specified +# or set to zero, batching session timeout +# defaults to 20 seconds by the modem. +# BATCH_SESSION_TIMEOUT=20000 + +################################### +# FLP CAPABILITIES BIT MASK +################################### +# GEOFENCE = 0x01 +# BATCHING = 0x02 +# default = GEOFENCE | BATCHING +CAPABILITIES=0x03 + +################################### +# FLP BATCHING ACCURACY +################################### +# Set to one of the defined values below +# to define the accuracy of batching. +# If not specified, accuracy defaults +# to LOW. +# FLP BATCHING ACCURACY values: +# Low accuracy = 0 +# Medium accuracy = 1 +# High accuracy = 2 +ACCURACY=0 + +################################### +# FLP GEOFENCE RESPONSIVENESS +################################### +# If set to one of the defined values below, +# it will override the responsiveness for +# FLP geofence, which implements the fused +# location API. If not set to a value defined +# below, which is default, it will not +# override the responsivness. +# FLP_GEOFENCE_RESPONSIVENESS_OVERRIDE Values: +# 1: LOW responsiveness +# 2: MEDIUM responsiveness +# 3: HIGH responsiveness +FLP_GEOFENCE_RESPONSIVENESS_OVERRIDE = 0 |