Home | History | Annotate | Download | only in etc
      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 # Below bit mask configures how GPS functionalities
     35 # should be locked when user turns off GPS on Settings
     36 # Set bit 0x1 if MO GPS functionalities are to be locked
     37 # Set bit 0x2 if NI GPS functionalities are to be locked
     38 # default - non is locked for backward compatibility
     39 #GPS_LOCK = 0
     40 
     41 # supl version 1.0
     42 SUPL_VER=0x10000
     43 
     44 # GPS Capabilities bit mask
     45 # SCHEDULING = 0x01
     46 # MSB = 0x02
     47 # MSA = 0x04
     48 # ON_DEMAND_TIME = 0x10
     49 # GEOFENCE = 0x20
     50 # default = ON_DEMAND_TIME | MSA | MSB | SCHEDULING | GEOFENCE
     51 CAPABILITIES=0x37
     52 
     53 # Accuracy threshold for intermediate positions
     54 # less accurate positions are ignored, 0 for passing all positions
     55 # ACCURACY_THRES=5000
     56 
     57 ################################
     58 ##### AGPS server settings #####
     59 ################################
     60 
     61 # FOR SUPL SUPPORT, set the following
     62 # SUPL_HOST=supl.host.com or IP
     63 # SUPL_PORT=1234
     64 SUPL_HOST=supl.google.com
     65 SUPL_PORT=7276
     66 
     67 # FOR C2K PDE SUPPORT, set the following
     68 # C2K_HOST=c2k.pde.com or IP
     69 # C2K_PORT=1234
     70 
     71 ####################################
     72 #  LTE Positioning Profile Settings
     73 ####################################
     74 # 0: Enable RRLP on LTE(Default)
     75 # 1: Enable LPP_User_Plane on LTE
     76 # 2: Enable LPP_Control_Plane
     77 # 3: Enable both LPP_User_Plane and LPP_Control_Plane
     78 LPP_PROFILE = 0
     79 
     80 ################################
     81 # EXTRA SETTINGS
     82 ################################
     83 # NMEA provider (1=Modem Processor, 0=Application Processor)
     84 NMEA_PROVIDER=0
     85 
     86 ##################################################
     87 # Select Positioning Protocol on A-GLONASS system
     88 ##################################################
     89 # 0x1: RRC CPlane
     90 # 0x2: RRLP UPlane
     91 # 0x4: LLP Uplane
     92 A_GLONASS_POS_PROTOCOL_SELECT = 0
     93