2018-05-04 21:44:00 +00:00
|
|
|
; This is a GNSS-SDR configuration file
|
2018-05-09 18:20:57 +00:00
|
|
|
; The configuration API is described at https://gnss-sdr.org/docs/sp-blocks/
|
2020-02-08 00:20:02 +00:00
|
|
|
; SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
; SPDX-FileCopyrightText: (C) 2010-2020 (see AUTHORS file for a list of contributors)
|
2018-05-04 21:44:00 +00:00
|
|
|
|
2014-07-23 23:38:58 +00:00
|
|
|
; You can define your own receiver and invoke it by doing
|
|
|
|
; gnss-sdr --config_file=my_GNSS_SDR_configuration.conf
|
|
|
|
;
|
|
|
|
|
|
|
|
[GNSS-SDR]
|
|
|
|
|
|
|
|
;######### GLOBAL OPTIONS ##################
|
2017-09-02 09:24:44 +00:00
|
|
|
;internal_fs_sps: Internal signal sampling frequency after the signal conditioning stage [samples per second].
|
|
|
|
GNSS-SDR.internal_fs_sps=4000000
|
2014-07-23 23:38:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
;######### SIGNAL_SOURCE CONFIG ############
|
|
|
|
SignalSource.implementation=File_Signal_Source
|
2016-05-15 12:27:51 +00:00
|
|
|
SignalSource.filename=/datalogger/signals/CTTC/2013_04_04_GNSS_SIGNAL_at_CTTC_SPAIN/2013_04_04_GNSS_SIGNAL_at_CTTC_SPAIN.dat ; <- PUT YOUR FILE HERE
|
2015-12-26 12:41:54 +00:00
|
|
|
SignalSource.item_type=ishort
|
2014-07-23 23:38:58 +00:00
|
|
|
SignalSource.sampling_frequency=4000000
|
|
|
|
SignalSource.samples=0
|
|
|
|
SignalSource.repeat=false
|
|
|
|
SignalSource.enable_throttle_control=false
|
|
|
|
|
|
|
|
|
|
|
|
;######### SIGNAL_CONDITIONER CONFIG ############
|
|
|
|
SignalConditioner.implementation=Signal_Conditioner
|
|
|
|
|
|
|
|
;######### DATA_TYPE_ADAPTER CONFIG ############
|
|
|
|
DataTypeAdapter.implementation=Ishort_To_Complex
|
|
|
|
DataTypeAdapter.dump=false
|
|
|
|
DataTypeAdapter.dump_filename=../data/data_type_adapter.dat
|
|
|
|
|
|
|
|
;######### INPUT_FILTER CONFIG ############
|
|
|
|
InputFilter.implementation=Pass_Through
|
|
|
|
InputFilter.input_item_type=gr_complex
|
|
|
|
InputFilter.output_item_type=gr_complex
|
2018-01-29 22:30:50 +00:00
|
|
|
InputFilter.dump=false
|
|
|
|
InputFilter.dump_filename=../data/input_filter.dat
|
2014-07-23 23:38:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
;######### RESAMPLER CONFIG ############
|
|
|
|
Resampler.implementation=Pass_Through
|
|
|
|
Resampler.item_type=gr_complex
|
|
|
|
Resampler.sample_freq_in=4000000
|
|
|
|
Resampler.sample_freq_out=4000000
|
2018-01-29 22:30:50 +00:00
|
|
|
Resampler.dump=false
|
|
|
|
Resampler.dump_filename=../data/resampler.dat
|
2014-07-23 23:38:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
;######### CHANNELS GLOBAL CONFIG ############
|
2015-07-21 16:03:26 +00:00
|
|
|
Channels_1C.count=5
|
2014-07-23 23:38:58 +00:00
|
|
|
Channels.in_acquisition=1
|
|
|
|
|
|
|
|
|
2015-07-21 16:03:26 +00:00
|
|
|
;######### ACQUISITION GLOBAL CONFIG ############_1C
|
2018-01-29 22:30:50 +00:00
|
|
|
Acquisition_1C.implementation=GPS_L1_CA_PCPS_QuickSync_Acquisition
|
2015-07-21 16:03:26 +00:00
|
|
|
Acquisition_1C.item_type=gr_complex
|
|
|
|
Acquisition_1C.coherent-integration_time_ms=4
|
2018-01-29 22:30:50 +00:00
|
|
|
Acquisition_1C.dump=true
|
|
|
|
;Acquisition_1C.dump_filename=./acq_dump.dat
|
2014-08-13 18:51:25 +00:00
|
|
|
|
2014-07-23 23:38:58 +00:00
|
|
|
|
2014-09-05 18:44:57 +00:00
|
|
|
;######### ACQUISITION CHANNELS CONFIG ######
|
2015-07-21 16:03:26 +00:00
|
|
|
Acquisition_1C.implementation=GPS_L1_CA_PCPS_QuickSync_Acquisition
|
|
|
|
Acquisition_1C.threshold=0.4
|
|
|
|
Acquisition_1C.doppler_max=10000
|
|
|
|
Acquisition_1C.doppler_step=250
|
2014-07-23 23:38:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
;######### TRACKING GLOBAL CONFIG ############
|
2015-07-21 16:03:26 +00:00
|
|
|
Tracking_1C.implementation=GPS_L1_CA_DLL_PLL_Tracking
|
|
|
|
Tracking_1C.item_type=gr_complex
|
|
|
|
Tracking_1C.pll_bw_hz=50.0;
|
|
|
|
Tracking_1C.dll_bw_hz=4.0;
|
|
|
|
Tracking_1C.order=3;
|
2018-01-29 22:30:50 +00:00
|
|
|
Tracking_1C.early_late_space_chips=0.5
|
|
|
|
Tracking_1C.dump=false
|
|
|
|
Tracking_1C.dump_filename=./tracking_ch_
|
|
|
|
|
2014-07-23 23:38:58 +00:00
|
|
|
|
|
|
|
;######### TELEMETRY DECODER CONFIG ############
|
2015-07-21 16:03:26 +00:00
|
|
|
TelemetryDecoder_1C.implementation=GPS_L1_CA_Telemetry_Decoder
|
|
|
|
TelemetryDecoder_1C.dump=false
|
2014-07-23 23:38:58 +00:00
|
|
|
|
2018-01-29 22:30:50 +00:00
|
|
|
|
2014-07-23 23:38:58 +00:00
|
|
|
;######### OBSERVABLES CONFIG ############
|
2017-03-24 14:25:17 +00:00
|
|
|
Observables.implementation=Hybrid_Observables
|
2014-07-23 23:38:58 +00:00
|
|
|
Observables.dump=false
|
|
|
|
Observables.dump_filename=./observables.dat
|
|
|
|
|
|
|
|
|
|
|
|
;######### PVT CONFIG ############
|
2017-05-08 19:12:32 +00:00
|
|
|
PVT.implementation=RTKLIB_PVT
|
|
|
|
PVT.positioning_mode=PPP_Static ; options: Single, Static, Kinematic, PPP_Static, PPP_Kinematic
|
|
|
|
PVT.iono_model=Broadcast ; options: OFF, Broadcast, SBAS, Iono-Free-LC, Estimate_STEC, IONEX
|
|
|
|
PVT.trop_model=Saastamoinen ; options: OFF, Saastamoinen, SBAS, Estimate_ZTD, Estimate_ZTD_Grad
|
2014-07-23 23:38:58 +00:00
|
|
|
PVT.output_rate_ms=100;
|
|
|
|
PVT.display_rate_ms=500;
|
2015-12-25 09:25:22 +00:00
|
|
|
PVT.nmea_dump_filename=./gnss_sdr_pvt.nmea
|
|
|
|
PVT.flag_nmea_tty_port=true
|
|
|
|
PVT.nmea_dump_devname=/dev/pts/4
|
|
|
|
PVT.flag_rtcm_server=false
|
|
|
|
PVT.flag_rtcm_tty_port=false
|
|
|
|
PVT.rtcm_dump_devname=/dev/pts/1
|
2018-01-29 22:30:50 +00:00
|
|
|
PVT.dump=false
|
|
|
|
PVT.dump_filename=./PVT
|