flp.conf 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. ###################################
  2. ##### FLP settings #####
  3. ###################################
  4. ###################################
  5. # FLP BATCHING SIZE
  6. ###################################
  7. # The number of batched locations
  8. # requested to modem. The desired number
  9. # defined below may not be satisfied, as
  10. # the modem can only return the number
  11. # of batched locations that can be allocated,
  12. # which is limited by memory. The default
  13. # batch size defined as 20 as below.
  14. BATCH_SIZE=20
  15. # The number of batched locations
  16. # requested to modem for outdoor
  17. # trip batching. The desired number
  18. # defined below may not be satisfied, as
  19. # the modem can only return the number
  20. # of batched locations that can be allocated,
  21. # which is limited by memory. The default
  22. # trip batch size defined as 600 as below.
  23. OUTDOOR_TRIP_BATCH_SIZE=600
  24. ###################################
  25. # FLP BATCHING SESSION TIMEOUT
  26. ###################################
  27. # Duration with which batch session timeout
  28. # happens in milliseconds. If not specified
  29. # or set to zero, batching session timeout
  30. # defaults to 20 seconds by the modem.
  31. # BATCH_SESSION_TIMEOUT=20000
  32. ###################################
  33. # FLP CAPABILITIES BIT MASK
  34. ###################################
  35. # GEOFENCE = 0x01
  36. # BATCHING = 0x02
  37. # default = GEOFENCE | BATCHING
  38. CAPABILITIES=0x03
  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
  50. ACCURACY=1
  51. ###################################
  52. # FLP GEOFENCE RESPONSIVENESS
  53. ###################################
  54. # If set to one of the defined values below,
  55. # it will override the responsiveness for
  56. # FLP geofence, which implements the fused
  57. # location API. If not set to a value defined
  58. # below, which is default, it will not
  59. # override the responsivness.
  60. # FLP_GEOFENCE_RESPONSIVENESS_OVERRIDE Values:
  61. # 1: LOW responsiveness
  62. # 2: MEDIUM responsiveness
  63. # 3: HIGH responsiveness
  64. FLP_GEOFENCE_RESPONSIVENESS_OVERRIDE = 0
  65. ####################################
  66. # By default APPS must support LB only if modem support
  67. # LB 1.5 and above. This parameter adds an exception
  68. # for targets where modem only supports LB 1.0.
  69. # This might be useful for primarily outdoor devices.
  70. # 0: MUST NOT ALLOW LB IF MODEM ONLY SUPPORTS
  71. # LB 1.0
  72. # 1: ALLOW LB IF MODEM ONLY SUPPORTS LB 1.0
  73. ####################################
  74. ALLOW_LB_1_0 = 0
  75. ####################################
  76. # By default if network fixes are not sensor assisted
  77. # these fixes must be dropped. This parameter adds an exception
  78. # for targets where there is no PDR and we still want to
  79. # report out network fixes
  80. # 0: MUST NOT ALLOW NETWORK FIXES
  81. # 1: ALLOW NETWORK FIXES
  82. ####################################
  83. ALLOW_NETWORK_FIXES = 0