batching.conf 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. ###################################
  2. ##### Batching settings #####
  3. ###################################
  4. ###################################
  5. # BATCH 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. ###################################
  16. # OUTDOOR TRIP BATCH SIZE
  17. ###################################
  18. # The number of batched locations
  19. # requested to modem for outdoor
  20. # trip batching. The desired number
  21. # defined below may not be satisfied, as
  22. # the modem can only return the number
  23. # of batched locations that can be allocated,
  24. # which is limited by memory. The default
  25. # trip batch size defined as 600 as below.
  26. OUTDOOR_TRIP_BATCH_SIZE=600
  27. ###################################
  28. # BATCHING SESSION TIMEOUT
  29. ###################################
  30. # Duration with which batch session timeout
  31. # happens in milliseconds. If not specified
  32. # or set to zero, batching session timeout
  33. # defaults to 20 seconds by the modem.
  34. # BATCH_SESSION_TIMEOUT=20000
  35. ###################################
  36. # BATCHING ACCURACY
  37. ###################################
  38. # Set to one of the defined values below
  39. # to define the accuracy of batching.
  40. # If not specified, accuracy defaults
  41. # to LOW.
  42. # BATCHING ACCURACY values:
  43. # Low accuracy = 0
  44. # Medium accuracy = 1
  45. # High accuracy = 2
  46. ACCURACY=1
  47. ####################################
  48. # 1: FORCE USING LB 1.0
  49. # 0: adaptive LB or LB 2.0 would be invoked
  50. # which would rely on CMC sensors
  51. ####################################
  52. USE_LB_1_0 = 1