Advertisement
Guest User

Untitled

a guest
Jul 7th, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.28 KB | None | 0 0
  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=time.gpsonextra.net
  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 = 3
  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=0x20000
  45.  
  46. # Emergency SUPL, 1=enable, 0=disable
  47. SUPL_ES=1
  48.  
  49. #Choose PDN for Emergency SUPL
  50. #1 - Use emergency PDN
  51. #0 - Use regular SUPL PDN for Emergency SUPL
  52. USE_EMERGENCY_PDN_FOR_EMERGENCY_SUPL=1
  53.  
  54. #SUPL_MODE is a bit mask set in config.xml per carrier by default.
  55. #If it is uncommented here, this value will over write the value from
  56. #config.xml.
  57. #MSA=0X2
  58. #MSB=0X1
  59. #SUPL_MODE=
  60.  
  61. # GPS Capabilities bit mask
  62. # SCHEDULING = 0x01
  63. # MSB = 0x02
  64. # MSA = 0x04
  65. # ON_DEMAND_TIME = 0x10
  66. # GEOFENCE = 0x20
  67. # default = ON_DEMAND_TIME | MSA | MSB | SCHEDULING | GEOFENCE
  68. CAPABILITIES=0x37
  69.  
  70. # Accuracy threshold for intermediate positions
  71. # less accurate positions are ignored, 0 for passing all positions
  72. # ACCURACY_THRES=5000
  73.  
  74. ################################
  75. ##### AGPS server settings #####
  76. ################################
  77.  
  78. # FOR SUPL SUPPORT, set the following
  79. # SUPL_HOST=supl.host.com or IP
  80. # SUPL_PORT=1234
  81. # FOR C2K PDE SUPPORT, set the following
  82. # C2K_HOST=c2k.pde.com or IP
  83. # C2K_PORT=1234
  84. SUPL_HOST=supl.google.com
  85. SUPL_PORT=7276
  86. # Bitmask of slots that are available
  87. # for write/install to, where 1s indicate writable,
  88. # and the default value is 0 where no slots
  89. # are writable. For example, AGPS_CERT_WRITABLE_MASK
  90. # of b1000001010 makes 3 slots available
  91. # and the remaining 7 slots unwritable.
  92. #AGPS_CERT_WRITABLE_MASK=0
  93.  
  94. ####################################
  95. # LTE Positioning Profile Settings
  96. ####################################
  97. # 0: Enable RRLP on LTE(Default)
  98. # 1: Enable LPP_User_Plane on LTE
  99. # 2: Enable LPP_Control_Plane
  100. # 3: Enable both LPP_User_Plane and LPP_Control_Plane
  101. LPP_PROFILE = 3
  102.  
  103. ################################
  104. # EXTRA SETTINGS
  105. ################################
  106. # NMEA provider (1=Modem Processor, 0=Application Processor)
  107. NMEA_PROVIDER=0
  108. # Mark if it is a SGLTE target (1=SGLTE, 0=nonSGLTE)
  109. SGLTE_TARGET=0
  110.  
  111. ##################################################
  112. # Select Positioning Protocol on A-GLONASS system
  113. ##################################################
  114. # 0x1: RRC CPlane
  115. # 0x2: RRLP UPlane
  116. # 0x4: LLP Uplane
  117. A_GLONASS_POS_PROTOCOL_SELECT = 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement