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