Advertisement
AndreaCi

GPS.CONF

Feb 13th, 2017
355
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #Uncommenting these urls would only enable
  2. #the power up auto injection and force injection(test case).
  3. XTRA_SERVER_1=http://xtrapath1.izatcloud.net/xtra2.bin
  4. XTRA_SERVER_2=http://xtrapath2.izatcloud.net/xtra2.bin
  5. XTRA_SERVER_3=http://xtrapath3.izatcloud.net/xtra2.bin
  6.  
  7. #Version check for XTRA
  8. #DISABLE = 0
  9. #AUTO    = 1
  10. #XTRA2   = 2
  11. #XTRA3   = 3
  12. XTRA_VERSION_CHECK=0
  13.  
  14. # Error Estimate
  15. # _SET = 1
  16. # _CLEAR = 0
  17. ERR_ESTIMATE=0
  18.  
  19. #Test
  20. NTP_SERVER=it.pool.ntp.org
  21. #Asia
  22. # NTP_SERVER=asia.pool.ntp.org
  23. #Europe
  24. # NTP_SERVER=europe.pool.ntp.org
  25. #North America
  26. # NTP_SERVER=north-america.pool.ntp.org
  27.  
  28. # DEBUG LEVELS: 0 - none, 1 - Error, 2 - Warning, 3 - Info
  29. #               4 - Debug, 5 - Verbose
  30. # If DEBUG_LEVEL is commented, Android's logging levels will be used
  31. DEBUG_LEVEL=1
  32.  
  33. # Intermediate position report, 1=enable, 0=disable
  34. INTERMEDIATE_POS=0
  35.  
  36. # Below bit mask configures how GPS functionalities
  37. # should be locked when user turns off GPS on Settings
  38. # Set bit 0x1 if MO GPS functionalities are to be locked
  39. # Set bit 0x2 if NI GPS functionalities are to be locked
  40. # default - non is locked for backward compatibility
  41. #GPS_LOCK = 0
  42.  
  43. # supl version 1.0
  44. SUPL_VER=0x10000
  45.  
  46. # Emergency SUPL, 1=enable, 0=disable
  47. SUPL_ES=0
  48. # Sensor R&D : Non-SUPL ES should be default
  49.  
  50. #Choose PDN for Emergency SUPL
  51. #1 - Use emergency PDN
  52. #0 - Use regular SUPL PDN for Emergency SUPL
  53. USE_EMERGENCY_PDN_FOR_EMERGENCY_SUPL=1
  54.  
  55. #SUPL_MODE is a bit mask set in config.xml per carrier by default.
  56. #If it is uncommented here, this value will over write the value from
  57. #config.xml.
  58. #MSA=0X2
  59. #MSB=0X1
  60. SUPL_MODE=0x3
  61. #Sensor R&D : Change default bit mask
  62.  
  63. # GPS Capabilities bit mask
  64. # SCHEDULING = 0x01
  65. # MSB = 0x02
  66. # MSA = 0x04
  67. # ON_DEMAND_TIME = 0x10
  68. # GEOFENCE = 0x20
  69. # default = ON_DEMAND_TIME | MSA | MSB | SCHEDULING | GEOFENCE
  70. CAPABILITIES=0x37
  71.  
  72. # Accuracy threshold for intermediate positions
  73. # less accurate positions are ignored, 0 for passing all positions
  74. # ACCURACY_THRES=5000
  75.  
  76. ################################
  77. ##### AGPS server settings #####
  78. ################################
  79.  
  80. # FOR SUPL SUPPORT, set the following
  81. # SUPL_HOST=supl.host.com or IP
  82. # SUPL_PORT=1234
  83.  
  84. # FOR C2K PDE SUPPORT, set the following
  85. # C2K_HOST=c2k.pde.com or IP
  86. # C2K_PORT=1234
  87.  
  88. # Bitmask of slots that are available
  89. # for write/install to, where 1s indicate writable,
  90. # and the default value is 0 where no slots
  91. # are writable. For example, AGPS_CERT_WRITABLE_MASK
  92. # of b1000001010 makes 3 slots available
  93. # and the remaining 7 slots unwritable.
  94. #AGPS_CERT_WRITABLE_MASK=0
  95.  
  96. ####################################
  97. #  LTE Positioning Profile Settings
  98. ####################################
  99. # 0: Enable RRLP on LTE(Default)
  100. # 1: Enable LPP_User_Plane on LTE
  101. # 2: Enable LPP_Control_Plane
  102. # 3: Enable both LPP_User_Plane and LPP_Control_Plane
  103. LPP_PROFILE = 0 # Sensor R&D : This will not be injected to MODEM
  104.  
  105. ################################
  106. # EXTRA SETTINGS
  107. ################################
  108. # NMEA provider (1=Modem Processor, 0=Application Processor)
  109. NMEA_PROVIDER=1
  110. # Mark if it is a SGLTE target (1=SGLTE, 0=nonSGLTE)
  111. SGLTE_TARGET=0
  112.  
  113. ##################################################
  114. # Select Positioning Protocol on A-GLONASS system
  115. ##################################################
  116. # 0x1: RRC CPlane
  117. # 0x2: RRLP UPlane
  118. # 0x4: LLP Uplane
  119. A_GLONASS_POS_PROTOCOL_SELECT = 0 # Sensor R&D : This will not be injected to MODEM
  120.  
  121. ##################################################
  122. # Delete only Ephemeris files
  123. ##################################################
  124. #0 : off - default
  125. #1 : on - Erase only eph files when we use 'delete aiding data' function.
  126. DEL_EPH_ONLY = 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement