mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2024-11-08 11:00:04 +00:00
c9fba22307
Need to fix bug in time duration with posix time and deal with day offsets in the code. Something seems off with day duration for long periods of time.
102 lines
3.4 KiB
Plaintext
102 lines
3.4 KiB
Plaintext
; You can define your own receiver and invoke it by doing
|
|
; gnss-sdr --config_file=my_GNSS_SDR_configuration.conf
|
|
;
|
|
|
|
[GNSS-SDR]
|
|
|
|
;######### GLOBAL OPTIONS ##################
|
|
;internal_fs_sps: Internal signal sampling frequency after the signal conditioning stage [samples per second].
|
|
GNSS-SDR.internal_fs_sps=2000000
|
|
|
|
;######### CONTROL_THREAD CONFIG ############
|
|
ControlThread.wait_for_flowgraph=false
|
|
|
|
;######### SIGNAL_SOURCE CONFIG ############
|
|
SignalSource.implementation=File_Signal_Source
|
|
SignalSource.filename=/archive/2013_04_04_GNSS_SIGNAL_at_CTTC_SPAIN.dat ;/datalogger/signals/CTTC/2013_04_04_GNSS_SIGNAL_at_CTTC_SPAIN/2013_04_04_GNSS_SIGNAL_at_CTTC_SPAIN.dat ; <- PUT YOUR FILE HERE
|
|
SignalSource.item_type=ishort
|
|
SignalSource.sampling_frequency=4000000
|
|
SignalSource.freq=1575420000
|
|
SignalSource.samples=0
|
|
SignalSource.repeat=false
|
|
SignalSource.dump=false
|
|
SignalSource.dump_filename=../data/signal_source.dat
|
|
SignalSource.enable_throttle_control=false
|
|
|
|
|
|
;######### SIGNAL_CONDITIONER CONFIG ############
|
|
SignalConditioner.implementation=Signal_Conditioner
|
|
|
|
;DataTypeAdapter.implementation=Ishort_To_Complex
|
|
DataTypeAdapter.implementation=Ishort_To_Cshort
|
|
InputFilter.implementation=Pass_Through
|
|
;InputFilter.input_item_type=gr_complex
|
|
;InputFilter.output_item_type=gr_complex
|
|
InputFilter.item_type=cshort
|
|
;Resampler.implementation=Pass_Through
|
|
;Resampler.item_type=gr_complex
|
|
Resampler.implementation=Direct_Resampler
|
|
Resampler.sample_freq_in=4000000
|
|
Resampler.sample_freq_out=2000000
|
|
;Resampler.item_type=gr_complex
|
|
Resampler.item_type=cshort
|
|
|
|
;######### CHANNELS GLOBAL CONFIG ############
|
|
Channels_1C.count=8
|
|
Channels.in_acquisition=1
|
|
Channel.signal=1C
|
|
;Channel.item_type=cshort
|
|
|
|
|
|
;######### ACQUISITION GLOBAL CONFIG ############
|
|
Acquisition_1C.dump=false
|
|
Acquisition_1C.dump_filename=./acq_dump.dat
|
|
Acquisition_1C.item_type=cshort
|
|
Acquisition_1C.if=0
|
|
Acquisition_1C.sampled_ms=1
|
|
Acquisition_1C.implementation=GPS_L1_CA_PCPS_Acquisition
|
|
Acquisition_1C.threshold=0.008
|
|
;Acquisition_1C.pfa=0.000001
|
|
Acquisition_1C.doppler_max=10000
|
|
Acquisition_1C.doppler_step=250
|
|
Acquisition_1C.tong_init_val=2
|
|
Acquisition_1C.tong_max_val=10
|
|
Acquisition_1C.tong_max_dwells=20
|
|
|
|
;######### TRACKING GLOBAL CONFIG ############
|
|
Tracking_1C.implementation=GPS_L1_CA_DLL_PLL_C_Aid_Tracking
|
|
Tracking_1C.item_type=cshort
|
|
Tracking_1C.if=0
|
|
Tracking_1C.dump=false
|
|
Tracking_1C.dump_filename=../data/epl_tracking_ch_
|
|
Tracking_1C.pll_bw_hz=40.0;
|
|
Tracking_1C.dll_bw_hz=4.0;
|
|
Tracking_1C.order=3;
|
|
|
|
;######### TELEMETRY DECODER GPS CONFIG ############
|
|
TelemetryDecoder_1C.implementation=GPS_L1_CA_Telemetry_Decoder
|
|
TelemetryDecoder_1C.dump=false
|
|
TelemetryDecoder_1C.decimation_factor=1;
|
|
|
|
;######### OBSERVABLES CONFIG ############
|
|
Observables.implementation=Hybrid_Observables
|
|
Observables.dump=false
|
|
Observables.dump_filename=./observables.dat
|
|
|
|
|
|
;######### PVT CONFIG ############
|
|
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
|
|
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
|