Zvikomborero VIncent Zvikaramba | a25011a | 2016-07-21 16:32:35 -0400 | [diff] [blame] | 1 | ################################### |
| 2 | ##### FLP settings ##### |
| 3 | ################################### |
| 4 | |
| 5 | ################################### |
| 6 | # FLP BATCHING 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. |
| 15 | BATCH_SIZE=20 |
| 16 | |
| 17 | ################################### |
| 18 | # FLP BATCHING SESSION TIMEOUT |
| 19 | ################################### |
| 20 | # Duration with which batch session timeout |
| 21 | # happens in milliseconds. If not specified |
| 22 | # or set to zero, batching session timeout |
| 23 | # defaults to 20 seconds by the modem. |
| 24 | # BATCH_SESSION_TIMEOUT=20000 |
| 25 | |
| 26 | ################################### |
| 27 | # FLP CAPABILITIES BIT MASK |
| 28 | ################################### |
| 29 | # GEOFENCE = 0x01 |
| 30 | # BATCHING = 0x02 |
| 31 | # default = GEOFENCE | BATCHING |
| 32 | CAPABILITIES=0x03 |
| 33 | |
| 34 | ################################### |
| 35 | # FLP BATCHING ACCURACY |
| 36 | ################################### |
| 37 | # Set to one of the defined values below |
| 38 | # to define the accuracy of batching. |
| 39 | # If not specified, accuracy defaults |
| 40 | # to LOW. |
| 41 | # FLP BATCHING ACCURACY values: |
| 42 | # Low accuracy = 0 |
| 43 | # Medium accuracy = 1 |
| 44 | # High accuracy = 2 |
| 45 | ACCURACY=0 |
| 46 | |
| 47 | ################################### |
| 48 | # FLP GEOFENCE RESPONSIVENESS |
| 49 | ################################### |
| 50 | # If set to one of the defined values below, |
| 51 | # it will override the responsiveness for |
| 52 | # FLP geofence, which implements the fused |
| 53 | # location API. If not set to a value defined |
| 54 | # below, which is default, it will not |
| 55 | # override the responsivness. |
| 56 | # FLP_GEOFENCE_RESPONSIVENESS_OVERRIDE Values: |
| 57 | # 1: LOW responsiveness |
| 58 | # 2: MEDIUM responsiveness |
| 59 | # 3: HIGH responsiveness |
| 60 | FLP_GEOFENCE_RESPONSIVENESS_OVERRIDE = 0 |