blob: 65d54d38ba7df691ec67fd6502fe357bfa487de0 [file] [log] [blame]
Dante Russo5c1e23c2019-03-06 09:36:20 -08001###################################
2##### FLP settings #####
3###################################
4
5###################################
6# FLP BATCH SIZE
7###################################
8# The number of batched locations
9# requested to modem. The desired number
10# defined below may not be satisfied, as
11# the modem can only return the number
12# of batched locations that can be allocated,
13# which is limited by memory. The default
14# batch size defined as 20 as below.
15BATCH_SIZE=20
16
17###################################
18# FLP OUTDOOR TRIP BATCH SIZE
19###################################
20# The number of batched locations
21# requested to modem for outdoor
22# trip batching. The desired number
23# defined below may not be satisfied, as
24# the modem can only return the number
25# of batched locations that can be allocated,
26# which is limited by memory. The default
27# trip batch size defined as 600 as below.
28OUTDOOR_TRIP_BATCH_SIZE=600
29
30###################################
31# FLP BATCHING SESSION TIMEOUT
32###################################
33# Duration with which batch session timeout
34# happens in milliseconds. If not specified
35# or set to zero, batching session timeout
36# defaults to 20 seconds by the modem.
37# BATCH_SESSION_TIMEOUT=20000
38
39###################################
40# FLP BATCHING ACCURACY
41###################################
42# Set to one of the defined values below
43# to define the accuracy of batching.
44# If not specified, accuracy defaults
45# to LOW.
46# FLP BATCHING ACCURACY values:
47# Low accuracy = 0
48# Medium accuracy = 1
49# High accuracy = 2
50ACCURACY=1
51
52####################################
53# By default if network fixes are not sensor assisted
54# these fixes must be dropped. This parameter adds an exception
55# for targets where there is no PDR and we still want to
56# report out network fixes
57# 0: MUST NOT ALLOW NETWORK FIXES
58# 1: ALLOW NETWORK FIXES
59####################################
60ALLOW_NETWORK_FIXES = 0