Home | History | Annotate | Download | only in hammerhead
      1 # XTRA_SERVER_QUERY (1=on, 0=off)
      2 # If XTRA_SERVER_QUERY is on, the XTRA_SERVERs listed
      3 # below will be ignored, and instead the servers will
      4 # be queried from the modem.
      5 XTRA_SERVER_QUERY=0
      6 # XTRA_SERVERs below are used only if XTRA_SERVER_QUERY
      7 # is off.
      8 XTRA_SERVER_1=http://xtra1.gpsonextra.net/xtra2.bin
      9 XTRA_SERVER_2=http://xtra2.gpsonextra.net/xtra2.bin
     10 XTRA_SERVER_3=http://xtra3.gpsonextra.net/xtra2.bin
     11 
     12 # Error Estimate
     13 # _SET = 1
     14 # _CLEAR = 0
     15 ERR_ESTIMATE=0
     16 
     17 #Test
     18 NTP_SERVER=time.gpsonextra.net
     19 #Asia
     20 # NTP_SERVER=asia.pool.ntp.org
     21 #Europe
     22 # NTP_SERVER=europe.pool.ntp.org
     23 #North America
     24 # NTP_SERVER=north-america.pool.ntp.org
     25 
     26 # DEBUG LEVELS: 0 - none, 1 - Error, 2 - Warning, 3 - Info
     27 #               4 - Debug, 5 - Verbose
     28 # If DEBUG_LEVEL is commented, Android's logging levels will be used
     29 DEBUG_LEVEL = 2
     30 
     31 # Intermediate position report, 1=enable, 0=disable
     32 INTERMEDIATE_POS=0
     33 
     34 # supl version 2.0
     35 SUPL_VER=0x20000
     36 
     37 # GPS Capabilities bit mask
     38 # SCHEDULING = 0x01
     39 # MSB = 0x02
     40 # MSA = 0x04
     41 # ON_DEMAND_TIME = 0x10
     42 # GEOFENCE = 0x20
     43 # default = ON_DEMAND_TIME | MSA | MSB | SCHEDULING | GEOFENCE
     44 CAPABILITIES=0x33
     45 
     46 # Accuracy threshold for intermediate positions
     47 # less accurate positions are ignored, 0 for passing all positions
     48 # ACCURACY_THRES=5000
     49 
     50 ################################
     51 ##### AGPS server settings #####
     52 ################################
     53 
     54 # FOR SUPL SUPPORT, set the following
     55 # SUPL_HOST=supl.host.com or IP
     56 # SUPL_PORT=1234
     57 SUPL_HOST=supl.google.com
     58 SUPL_PORT=7275
     59 
     60 # FOR C2K PDE SUPPORT, set the following
     61 # C2K_HOST=c2k.pde.com or IP
     62 # C2K_PORT=1234
     63 
     64 ####################################
     65 #  LTE Positioning Profile Settings
     66 ####################################
     67 # 0: Enable RRLP on LTE(Default)
     68 # 1: Enable LPP_User_Plane on LTE
     69 # 2: Enable LPP_Control_Plane
     70 # 3: Enable both LPP_User_Plane and LPP_Control_Plane
     71 LPP_PROFILE = 0
     72 
     73 ################################
     74 # EXTRA SETTINGS
     75 ################################
     76 # NMEA provider (1=Modem Processor, 0=Application Processor)
     77 NMEA_PROVIDER=1
     78 
     79 ##################################################
     80 # Select Positioning Protocol on A-GLONASS system
     81 ##################################################
     82 # 0x1: RRC CPlane
     83 # 0x2: RRLP UPlane
     84 # 0x4: LLP Uplane
     85 A_GLONASS_POS_PROTOCOL_SELECT = 0
     86