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/
|
2018-05-04 21:44:00 +00:00
|
|
|
|
2016-03-29 16:40:00 +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=2000000
|
2016-03-29 16:40:00 +00:00
|
|
|
|
|
|
|
;######### CONTROL_THREAD CONFIG ############
|
|
|
|
ControlThread.wait_for_flowgraph=false
|
|
|
|
|
|
|
|
;######### SIGNAL_SOURCE CONFIG ############
|
|
|
|
SignalSource.implementation=File_Signal_Source
|
2018-05-04 21:44:00 +00:00
|
|
|
SignalSource.filename=/archive/2013_04_04_GNSS_SIGNAL_at_CTTC_SPAIN.dat ; <- PUT YOUR FILE HERE
|
2016-05-13 15:36:11 +00:00
|
|
|
SignalSource.item_type=ishort
|
2016-03-29 16:40:00 +00:00
|
|
|
SignalSource.sampling_frequency=4000000
|
2016-09-22 18:20:18 +00:00
|
|
|
SignalSource.samples=0
|
2016-03-29 16:40:00 +00:00
|
|
|
SignalSource.repeat=false
|
|
|
|
SignalSource.dump=false
|
|
|
|
SignalSource.dump_filename=../data/signal_source.dat
|
|
|
|
SignalSource.enable_throttle_control=false
|
|
|
|
|
|
|
|
|
|
|
|
;######### SIGNAL_CONDITIONER CONFIG ############
|
2016-05-13 15:36:11 +00:00
|
|
|
SignalConditioner.implementation=Signal_Conditioner
|
|
|
|
|
2016-09-22 18:20:18 +00:00
|
|
|
DataTypeAdapter.implementation=Ishort_To_Cshort
|
2016-05-13 15:36:11 +00:00
|
|
|
InputFilter.implementation=Pass_Through
|
2016-09-22 18:20:18 +00:00
|
|
|
InputFilter.item_type=cshort
|
|
|
|
Resampler.implementation=Direct_Resampler
|
|
|
|
Resampler.sample_freq_in=4000000
|
|
|
|
Resampler.sample_freq_out=2000000
|
|
|
|
Resampler.item_type=cshort
|
2016-03-29 16:40:00 +00:00
|
|
|
|
|
|
|
;######### CHANNELS GLOBAL CONFIG ############
|
|
|
|
Channels_1C.count=8
|
|
|
|
Channels.in_acquisition=1
|
|
|
|
Channel.signal=1C
|
|
|
|
|
|
|
|
|
|
|
|
;######### ACQUISITION GLOBAL CONFIG ############
|
2018-01-29 22:30:50 +00:00
|
|
|
Acquisition_1C.implementation=GPS_L1_CA_PCPS_Acquisition
|
2016-09-22 18:20:18 +00:00
|
|
|
Acquisition_1C.item_type=cshort
|
2018-05-04 21:44:00 +00:00
|
|
|
Acquisition_1C.coherent_integration_time_ms=1
|
2016-09-22 18:20:18 +00:00
|
|
|
Acquisition_1C.threshold=0.008
|
|
|
|
;Acquisition_1C.pfa=0.000001
|
2016-03-29 16:40:00 +00:00
|
|
|
Acquisition_1C.doppler_max=10000
|
2016-09-22 18:20:18 +00:00
|
|
|
Acquisition_1C.doppler_step=250
|
2018-01-29 22:30:50 +00:00
|
|
|
Acquisition_1C.dump=false
|
|
|
|
Acquisition_1C.dump_filename=./acq_dump.dat
|
2018-05-04 21:44:00 +00:00
|
|
|
Acquisition_1C.blocking=false;
|
2016-03-29 16:40:00 +00:00
|
|
|
|
|
|
|
;######### TRACKING GLOBAL CONFIG ############
|
2016-09-22 18:20:18 +00:00
|
|
|
Tracking_1C.implementation=GPS_L1_CA_DLL_PLL_C_Aid_Tracking
|
|
|
|
Tracking_1C.item_type=cshort
|
|
|
|
Tracking_1C.pll_bw_hz=40.0;
|
|
|
|
Tracking_1C.dll_bw_hz=4.0;
|
2016-03-29 16:40:00 +00:00
|
|
|
Tracking_1C.order=3;
|
2018-05-04 21:44:00 +00:00
|
|
|
Tracking_1C.dump=false;
|
|
|
|
Tracking_1C.dump_filename=./epl_tracking_ch_
|
2016-03-29 16:40:00 +00:00
|
|
|
|
2018-01-29 22:30:50 +00:00
|
|
|
|
2016-03-29 16:40:00 +00:00
|
|
|
;######### TELEMETRY DECODER GPS CONFIG ############
|
|
|
|
TelemetryDecoder_1C.implementation=GPS_L1_CA_Telemetry_Decoder
|
|
|
|
TelemetryDecoder_1C.dump=false
|
|
|
|
|
2018-01-29 22:30:50 +00:00
|
|
|
|
2016-03-29 16:40:00 +00:00
|
|
|
;######### OBSERVABLES CONFIG ############
|
2017-03-24 14:25:17 +00:00
|
|
|
Observables.implementation=Hybrid_Observables
|
2018-05-04 21:44:00 +00:00
|
|
|
Observables.dump=true
|
2016-03-29 16:40:00 +00:00
|
|
|
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
|
|
|
|
PVT.output_rate_ms=100
|
2016-03-29 16:40:00 +00:00
|
|
|
PVT.display_rate_ms=500
|
|
|
|
PVT.dump_filename=./PVT
|
|
|
|
PVT.nmea_dump_filename=./gnss_sdr_pvt.nmea;
|
|
|
|
PVT.flag_nmea_tty_port=false;
|
|
|
|
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
|
|
|
|
PVT.dump=false
|