gps.conf 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  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. #Version check for XTRA
  7. #DISABLE = 0
  8. #AUTO = 1
  9. #XTRA2 = 2
  10. #XTRA3 = 3
  11. XTRA_VERSION_CHECK=0
  12. # Error Estimate
  13. # _SET = 1
  14. # _CLEAR = 0
  15. ERR_ESTIMATE=0
  16. #NTP server
  17. NTP_SERVER=time.izatcloud.net
  18. #XTRA CA path
  19. XTRA_CA_PATH=/system/etc/security/cacerts
  20. # DEBUG LEVELS: 0 - none, 1 - Error, 2 - Warning, 3 - Info
  21. # 4 - Debug, 5 - Verbose
  22. # If DEBUG_LEVEL is commented, Android's logging levels will be used
  23. DEBUG_LEVEL = 3
  24. # Intermediate position report, 1=enable, 0=disable
  25. INTERMEDIATE_POS=0
  26. # Below bit mask configures how GPS functionalities
  27. # should be locked when user turns off GPS on Settings
  28. # Set bit 0x1 if MO GPS functionalities are to be locked
  29. # Set bit 0x2 if NI GPS functionalities are to be locked
  30. # default - non is locked for backward compatibility
  31. #GPS_LOCK = 0
  32. # supl version 1.0
  33. SUPL_VER=0x10000
  34. # Emergency SUPL, 1=enable, 0=disable
  35. #SUPL_ES=0
  36. #Choose PDN for Emergency SUPL
  37. #1 - Use emergency PDN
  38. #0 - Use regular SUPL PDN for Emergency SUPL
  39. #USE_EMERGENCY_PDN_FOR_EMERGENCY_SUPL=0
  40. #SUPL_MODE is a bit mask set in config.xml per carrier by default.
  41. #If it is uncommented here, this value will overwrite the value from
  42. #config.xml.
  43. #MSA=0X2
  44. #MSB=0X1
  45. #SUPL_MODE=
  46. # GPS Capabilities bit mask
  47. # SCHEDULING = 0x01
  48. # MSB = 0x02
  49. # MSA = 0x04
  50. # ON_DEMAND_TIME = 0x10
  51. # GEOFENCE = 0x20
  52. # default = ON_DEMAND_TIME | MSA | MSB | SCHEDULING | GEOFENCE
  53. CAPABILITIES=0x37
  54. # Accuracy threshold for intermediate positions
  55. # less accurate positions are ignored, 0 for passing all positions
  56. # ACCURACY_THRES=5000
  57. ################################
  58. ##### AGPS server settings #####
  59. ################################
  60. # FOR SUPL SUPPORT, set the following
  61. # SUPL_HOST=supl.host.com or IP
  62. # SUPL_PORT=1234
  63. # FOR C2K PDE SUPPORT, set the following
  64. # C2K_HOST=c2k.pde.com or IP
  65. # C2K_PORT=1234
  66. # Bitmask of slots that are available
  67. # for write/install to, where 1s indicate writable,
  68. # and the default value is 0 where no slots
  69. # are writable. For example, AGPS_CERT_WRITABLE_MASK
  70. # of b1000001010 makes 3 slots available
  71. # and the remaining 7 slots unwritable.
  72. #AGPS_CERT_WRITABLE_MASK=0
  73. ####################################
  74. # LTE Positioning Profile Settings
  75. ####################################
  76. # 0: Enable RRLP on LTE(Default)
  77. # 1: Enable LPP_User_Plane on LTE
  78. # 2: Enable LPP_Control_Plane
  79. # 3: Enable both LPP_User_Plane and LPP_Control_Plane
  80. LPP_PROFILE = 2
  81. ################################
  82. # EXTRA SETTINGS
  83. ################################
  84. # NMEA provider (1=Modem Processor, 0=Application Processor)
  85. NMEA_PROVIDER=0
  86. # Mark if it is a SGLTE target (1=SGLTE, 0=nonSGLTE)
  87. SGLTE_TARGET=0
  88. ##################################################
  89. # Select Positioning Protocol on A-GLONASS system
  90. ##################################################
  91. # 0x1: RRC CPlane
  92. # 0x2: RRLP UPlane
  93. # 0x4: LLP Uplane
  94. A_GLONASS_POS_PROTOCOL_SELECT = 0
  95. ##################################################
  96. # Select technology for LPPe Control Plane
  97. ##################################################
  98. # 0x1: DBH for LPPe CP
  99. # 0x2: WLAN AP Measurements for LPPe CP
  100. # 0x4: SRN AP measurement for CP
  101. # 0x8: Sensor Barometer Measurement LPPe CP
  102. LPPE_CP_TECHNOLOGY = 0
  103. ##################################################
  104. # Select technology for LPPe User Plane
  105. ##################################################
  106. # 0x1: DBH for LPPe UP
  107. # 0x2: WLAN AP Measurements for LPPe UP
  108. # 0x4: SRN AP measurement for UP
  109. # 0x8: Sensor Barometer Measurement LPPe UP
  110. LPPE_UP_TECHNOLOGY = 0
  111. ##################################################
  112. # AGPS_CONFIG_INJECT
  113. ##################################################
  114. # enable/disable injection of AGPS configurations:
  115. # SUPL_VER
  116. # SUPL_HOST
  117. # SUPL_PORT
  118. # C2K_HOST
  119. # C2K_PORT
  120. # LPP_PROFILE
  121. # A_GLONASS_POS_PROTOCOL_SELECT
  122. # 0: disable
  123. # 1: enable
  124. AGPS_CONFIG_INJECT = 1
  125. ##################################################
  126. # GNSS settings for automotive use cases
  127. # Configurations in following section are
  128. # specific to automotive use cases, others
  129. # please do not change, keep the default values
  130. ##################################################
  131. # AP Coarse Timestamp Uncertainty
  132. ##################################################
  133. # default : 10
  134. # AP time stamp uncertainty, until GNSS receiver
  135. # is able to acquire better timing information
  136. AP_TIMESTAMP_UNCERTAINTY = 10
  137. ##################################################
  138. # QDR engine availability status
  139. ##################################################
  140. # 0 : NO QDR (default)
  141. # 1 : QDR enabled
  142. # This settings enables QDR Configuration for
  143. # automotive use case, if enabled then
  144. # DR_AP_Service needs to be enabled in izat.conf
  145. #EXTERNAL_DR_ENABLED = 0
  146. #####################################
  147. # DR_SYNC Pulse Availability
  148. #####################################
  149. # 0 : DR_SYNC pulse not available (default)
  150. # 1 : DR_SYNC pulse available
  151. # This configuration enables the driver to make use
  152. # of PPS events generated by DR_SYNC pulse
  153. # Standard Linux PPS driver needs to be enabled
  154. DR_SYNC_ENABLED = 0
  155. #####################################
  156. # PPS Device name
  157. #####################################
  158. PPS_DEVICENAME = /dev/pps0
  159. #####################################
  160. # AP Clock Accuracy
  161. #####################################
  162. # Quality of APPS processor clock (in PPM).
  163. # Value specified is used for calculation of
  164. # APPS time stamp uncertainty
  165. AP_CLOCK_PPM = 100
  166. #####################################
  167. # MAX ms difference to detect missing pulse
  168. #####################################
  169. # Specifies time threshold in ms to validate any missing PPS pulses
  170. MISSING_PULSE_TIME_DELTA = 900
  171. #####################################
  172. # Propagation time uncertainty
  173. #####################################
  174. # This settings enables time uncertainty propagation
  175. # logic incase of missing PPS pulse
  176. PROPAGATION_TIME_UNCERTAINTY = 1
  177. #######################################
  178. # APN / IP Type Configuration
  179. # APN and IP Type to use for setting
  180. # up WWAN call.
  181. # Use below values for IP Type:
  182. # v4 = 4
  183. # v6 = 6
  184. # v4v6 = 10
  185. #######################################
  186. # INTERNET_APN = abc.xyz
  187. # INTERNET_IP_TYPE = 4
  188. # SUPL_APN = abc.xyz
  189. # SUPL_IP_TYPE = 4