Home | History | Annotate | Download | only in crosshatch
      1 #Version check for XTRA
      2 #DISABLE = 0
      3 #AUTO    = 1
      4 #XTRA2   = 2
      5 #XTRA3   = 3
      6 XTRA_VERSION_CHECK=1
      7 
      8 # Error Estimate
      9 # _SET = 1
     10 # _CLEAR = 0
     11 ERR_ESTIMATE=0
     12 
     13 # NTP Server
     14 # NTP server setting is in modem NV
     15 
     16 # DEBUG LEVELS: 0 - none, 1 - Error, 2 - Warning, 3 - Info
     17 #               4 - Debug, 5 - Verbose
     18 # If DEBUG_LEVEL is commented, Android's logging levels will be used
     19 DEBUG_LEVEL = 2
     20 
     21 # Intermediate position report, 1=enable, 0=disable
     22 INTERMEDIATE_POS=0
     23 
     24 # GPS Capabilities bit mask
     25 # SCHEDULING = 0x01
     26 # MSB = 0x02
     27 # MSA = 0x04
     28 # ON_DEMAND_TIME = 0x10
     29 # GEOFENCE = 0x20
     30 # default = ON_DEMAND_TIME | MSA | MSB | SCHEDULING | GEOFENCE
     31 CAPABILITIES=0x37
     32 
     33 # Accuracy threshold for intermediate positions
     34 # less accurate positions are ignored, 0 for passing all positions
     35 # ACCURACY_THRES=5000
     36 
     37 ################################
     38 ##### AGPS server settings #####
     39 ################################
     40 # Bitmask of slots that are available
     41 # for write/install to, where 1s indicate writable,
     42 # and the default value is 0 where no slots
     43 # are writable. For example, AGPS_CERT_WRITABLE_MASK
     44 # of b1000001010 makes 3 slots available
     45 # and the remaining 7 slots unwritable.
     46 # AGPS_CERT_WRITABLE_MASK=0
     47 
     48 ################################
     49 # EXTRA SETTINGS
     50 ################################
     51 # NMEA provider (1=Modem Processor, 0=Application Processor)
     52 NMEA_PROVIDER=0
     53 
     54 # Mark if it is a SGLTE target (1=SGLTE, 0=nonSGLTE)
     55 SGLTE_TARGET=0
     56 
     57 # Mark these LPPe fields, they are MBN configured.
     58 ##################################################
     59 # Select technology for LPPe Control Plane
     60 ##################################################
     61 # 0x1: DBH for LPPe CP
     62 # 0x2: WLAN AP Measurements for LPPe CP
     63 # LPPE_CP_TECHNOLOGY = 0
     64 
     65 ##################################################
     66 # Select technology for LPPe User Plane
     67 ##################################################
     68 # 0x1: DBH for LPPe UP
     69 # 0x2: WLAN AP Measurements for LPPe UP
     70 # LPPE_UP_TECHNOLOGY = 0
     71 
     72 ##################################################
     73 # AGPS_CONFIG_INJECT
     74 ##################################################
     75 # enable/disable injection of AGPS configurations:
     76 #     SUPL_VER
     77 #     SUPL_HOST
     78 #     SUPL_PORT
     79 #     SUPL_MODE
     80 #     SUPL_ES
     81 #     C2K_HOST
     82 #     C2K_PORT
     83 #     LPP_PROFILE
     84 #     A_GLONASS_POS_PROTOCOL_SELECT
     85 #     USE_EMERGENCY_PDN_FOR_EMERGENCY_SUPL
     86 #     GPS_LOCK
     87 # 0: disable
     88 # 1: enable
     89 AGPS_CONFIG_INJECT = 1
     90 
     91 # AP Coarse Timestamp Uncertainty
     92 ##################################################
     93 # default : 10
     94 # or as per clock uncertainty of product
     95 AP_TIMESTAMP_UNCERTAINTY = 10
     96 
     97 #####################################
     98 #DR_SYNC Pulse Availability
     99 #####################################
    100 # 0 : DR_SYNC pulse not available (default)
    101 # 1 : DR_SYNC pulse available
    102 DR_SYNC_ENABLED = 0
    103 
    104 #####################################
    105 #PPS Device name
    106 #####################################
    107 PPS_DEVICENAME = /dev/pps0
    108 
    109 #####################################
    110 #AP Clock Accuracy
    111 #####################################
    112 AP_CLOCK_PPM = 100
    113 
    114 #####################################
    115 #MAX ms difference to detect missing pulse
    116 #####################################
    117 MISSING_PULSE_TIME_DELTA = 900
    118 
    119 #####################################
    120 #Propagation time uncertainty
    121 #####################################
    122 PROPAGATION_TIME_UNCERTAINTY = 1
    123