| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- ###################################
- ##### 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
- # The number of batched locations
- # requested to modem for outdoor
- # trip batching. 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
- # trip batch size defined as 600 as below.
- OUTDOOR_TRIP_BATCH_SIZE=600
- ###################################
- # 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=1
- ###################################
- # 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
- ####################################
- # By default APPS must support LB only if modem support
- # LB 1.5 and above. This parameter adds an exception
- # for targets where modem only supports LB 1.0.
- # This might be useful for primarily outdoor devices.
- # 0: MUST NOT ALLOW LB IF MODEM ONLY SUPPORTS
- # LB 1.0
- # 1: ALLOW LB IF MODEM ONLY SUPPORTS LB 1.0
- ####################################
- ALLOW_LB_1_0 = 0
- ####################################
- # By default if network fixes are not sensor assisted
- # these fixes must be dropped. This parameter adds an exception
- # for targets where there is no PDR and we still want to
- # report out network fixes
- # 0: MUST NOT ALLOW NETWORK FIXES
- # 1: ALLOW NETWORK FIXES
- ####################################
- ALLOW_NETWORK_FIXES = 0
|