Advertisement
carruinar

GPS log config

Mar 10th, 2014
384
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.05 KB | None | 0 0
  1. ; Default configuration file
  2. ; You can define your own receiver and invoke it by doing
  3. ; gnss-sdr --config_file=my_GNSS_SDR_configuration.conf
  4. ;
  5.  
  6. [GNSS-SDR]
  7.  
  8. ;######### GLOBAL OPTIONS ##################
  9. ;internal_fs_hz: Internal signal sampling frequency after the signal conditioning stage [Hz].
  10. GNSS-SDR.internal_fs_hz=4000000
  11.  
  12.  
  13.  
  14. ;######### CONTROL_THREAD CONFIG ############
  15. ControlThread.wait_for_flowgraph=false
  16.  
  17. ;######### SIGNAL_SOURCE CONFIG ############
  18. ;#implementation: Use [File_Signal_Source] or [UHD_Signal_Source] or [GN3S_Signal_Source] or [Rtlsdr_Signal_Source]
  19. SignalSource.implementation=File_Signal_Source
  20.  
  21. ;#filename: path to file with the captured GNSS signal samples to be processed
  22. ;SignalSource.filename=/home/caruiz_ext/Escritorio/prueba/2013_04_04_GNSS_SIGNAL_at_CTTC_SPAIN/log
  23. SignalSource.filename=/home/caruiz_ext/Escritorio/prueba/2013_04_04_GNSS_SIGNAL_at_CTTC_SPAIN/2013_04_04_GNSS_SIGNAL_at_CTTC_SPAIN.dat
  24. ;SignalSource.filename=/home/caruiz_ext/Escritorio/prueba/2013_04_04_GNSS_SIGNAL_at_CTTC_SPAIN/logGNURadio
  25. ;SignalSource.filename=/home/caruiz_ext/Escritorio/prueba/2013_04_04_GNSS_SIGNAL_at_CTTC_SPAIN/quieto.dat
  26. ;SignalSource.filename=/home/caruiz_ext/Escritorio/prueba/2013_04_04_GNSS_SIGNAL_at_CTTC_SPAIN/mov.dat
  27.  
  28. ;#item_type: Type and resolution for each of the signal samples.
  29. ;#Use gr_complex for 32 bits float I/Q or short for I/Q interleaved short integer.
  30. ;#If short is selected you should have to instantiate the Ishort_To_Complex data_type_adapter.
  31.  
  32. SignalSource.item_type=gr_complex
  33.  
  34. ;#sampling_frequency: Original Signal sampling frequency in [Hz]
  35. SignalSource.sampling_frequency=4000000
  36.  
  37. ;#freq: RF front-end center frequency in [Hz]
  38. SignalSource.freq=1575420000
  39.  
  40. ;#gain: Front-end Gain in [dB]
  41. ;SignalSource.gain=60
  42. SignalSource.gain=40
  43.  
  44. ;#AGC_enabled: RTLSDR AGC enabled [true or false]
  45.  
  46. SignalSource.AGC_enabled=true
  47.  
  48. ;#subdevice: UHD subdevice specification (for USRP1 use A:0 or B:0)
  49. SignalSource.subdevice=B:0
  50.  
  51. ;#samples: Number of samples to be processed. Notice that 0 indicates the entire file.
  52. SignalSource.samples=0
  53.  
  54. ;#repeat: Repeat the processing file. Disable this option in this version
  55. SignalSource.repeat=false
  56.  
  57. ;#dump: Dump the Signal source data to a file. Disable this option in this version
  58. SignalSource.dump=false
  59.  
  60. SignalSource.dump_filename=../data/signal_source.dat
  61.  
  62.  
  63. ;#enable_throttle_control: Enabling this option tells the signal source to keep the delay between samples in post processing.
  64. ; it helps to not overload the CPU, but the processing time will be longer.
  65. SignalSource.enable_throttle_control=false
  66.  
  67.  
  68. ;######### SIGNAL_CONDITIONER CONFIG ############
  69. ;## It holds blocks to change data type, filter and resample input data.
  70.  
  71. ;#implementation: Use [Pass_Through] or [Signal_Conditioner]
  72. ;#[Pass_Through] disables this block and the [DataTypeAdapter], [InputFilter] and [Resampler] blocks
  73. ;#[Signal_Conditioner] enables this block. Then you have to configure [DataTypeAdapter], [InputFilter] and [Resampler] blocks
  74. SignalConditioner.implementation=Signal_Conditioner
  75.  
  76. ;######### DATA_TYPE_ADAPTER CONFIG ############
  77. ;## Changes the type of input data. Please disable it in this version.
  78. ;#implementation: Use [Ishort_To_Complex] or [Pass_Through]
  79. ;DataTypeAdapter.implementation=Ishort_To_Complex
  80. ;#dump: Dump the filtered data to a file.
  81. DataTypeAdapter.dump=false
  82. ;#dump_filename: Log path and filename.
  83. DataTypeAdapter.dump_filename=../data/data_type_adapter.dat
  84.  
  85. ;######### INPUT_FILTER CONFIG ############
  86. ;## Filter the input data. Can be combined with frequency translation for IF signals
  87.  
  88. ;#implementation: Use [Pass_Through] or [Fir_Filter] or [Freq_Xlating_Fir_Filter]
  89. ;#[Pass_Through] disables this block
  90. ;#[Fir_Filter] enables a FIR Filter
  91. ;#[Freq_Xlating_Fir_Filter] enables FIR filter and a composite frequency translation that shifts IF down to zero Hz.
  92.  
  93. ;InputFilter.implementation=Fir_Filter
  94. ;InputFilter.implementation=Freq_Xlating_Fir_Filter
  95. InputFilter.implementation=Pass_Through
  96.  
  97. ;#dump: Dump the filtered data to a file.
  98. InputFilter.dump=false
  99.  
  100. ;#dump_filename: Log path and filename.
  101. InputFilter.dump_filename=../data/input_filter.dat
  102.  
  103. ;#The following options are used in the filter design of Fir_Filter and Freq_Xlating_Fir_Filter implementation.
  104. ;#These options are based on parameters of gnuradio's function: gr_remez.
  105. ;#These function calculates the optimal (in the Chebyshev/minimax sense) FIR filter inpulse reponse given a set of band edges, the desired reponse on those bands, and the weight given to the error in those bands.
  106.  
  107. ;#input_item_type: Type and resolution for input signal samples. Use only gr_complex in this version.
  108. InputFilter.input_item_type=gr_complex
  109.  
  110. ;#outut_item_type: Type and resolution for output filtered signal samples. Use only gr_complex in this version.
  111. InputFilter.output_item_type=gr_complex
  112.  
  113. ;#taps_item_type: Type and resolution for the taps of the filter. Use only float in this version.
  114. InputFilter.taps_item_type=float
  115.  
  116. ;#number_of_taps: Number of taps in the filter. Increasing this parameter increases the processing time
  117. InputFilter.number_of_taps=5
  118.  
  119. ;#number_of _bands: Number of frequency bands in the filter.
  120. InputFilter.number_of_bands=2
  121.  
  122. ;#bands: frequency at the band edges [ b1 e1 b2 e2 b3 e3 ...].
  123. ;#Frequency is in the range [0, 1], with 1 being the Nyquist frequency (Fs/2)
  124. ;#The number of band_begin and band_end elements must match the number of bands
  125.  
  126. InputFilter.band1_begin=0.0
  127. ;InputFilter.band1_end=0.8
  128. InputFilter.band1_end=0.85
  129. InputFilter.band2_begin=0.90
  130. InputFilter.band2_end=1.0
  131.  
  132. ;#ampl: desired amplitude at the band edges [ a(b1) a(e1) a(b2) a(e2) ...].
  133. ;#The number of ampl_begin and ampl_end elements must match the number of bands
  134.  
  135. InputFilter.ampl1_begin=1.0
  136. InputFilter.ampl1_end=1.0
  137. InputFilter.ampl2_begin=0.0
  138. InputFilter.ampl2_end=0.0
  139.  
  140. ;#band_error: weighting applied to each band (usually 1).
  141. ;#The number of band_error elements must match the number of bands
  142. InputFilter.band1_error=1.0
  143. InputFilter.band2_error=1.0
  144.  
  145. ;#filter_type: one of "bandpass", "hilbert" or "differentiator"
  146. InputFilter.filter_type=bandpass
  147.  
  148. ;#grid_density: determines how accurately the filter will be constructed.
  149. ;The minimum value is 16; higher values are slower to compute the filter.
  150. InputFilter.grid_density=16
  151.  
  152. ;#The following options are used only in Freq_Xlating_Fir_Filter implementation.
  153. ;#InputFilter.IF is the intermediate frequency (in Hz) shifted down to zero Hz
  154.  
  155. InputFilter.sampling_frequency=4000000
  156. InputFilter.IF=0
  157.  
  158.  
  159.  
  160. ;######### RESAMPLER CONFIG ############
  161. ;## Resamples the input data.
  162.  
  163. ;#implementation: Use [Pass_Through] or [Direct_Resampler]
  164. ;#[Pass_Through] disables this block
  165. ;#[Direct_Resampler] enables a resampler that implements a nearest neigbourhood interpolation
  166. ;Resampler.implementation=Direct_Resampler
  167. Resampler.implementation=Pass_Through
  168.  
  169. ;#dump: Dump the resamplered data to a file.
  170. Resampler.dump=false
  171. ;#dump_filename: Log path and filename.
  172. Resampler.dump_filename=../data/resampler.dat
  173.  
  174. ;#item_type: Type and resolution for each of the signal samples. Use only gr_complex in this version.
  175. Resampler.item_type=gr_complex
  176.  
  177. ;#sample_freq_in: the sample frequency of the input signal
  178. Resampler.sample_freq_in=4000000
  179.  
  180. ;#sample_freq_out: the desired sample frequency of the output signal
  181. Resampler.sample_freq_out=4000000
  182.  
  183. ;######### CHANNELS GLOBAL CONFIG ############
  184. ;#count: Number of available satellite channels.
  185. Channels.count=8
  186. ;#in_acquisition: Number of channels simultaneously acquiring
  187. Channels.in_acquisition=1
  188.  
  189.  
  190.  
  191.  
  192. ;#signal:
  193. ;# "1C" GPS L1 C/A
  194. ;# "1P" GPS L1 P
  195. ;# "1W" GPS L1 Z-tracking and similar (AS on)
  196. ;# "1Y" GPS L1 Y
  197. ;# "1M" GPS L1 M
  198. ;# "1N" GPS L1 codeless
  199. ;# "2C" GPS L2 C/A
  200. ;# "2D" GPS L2 L1(C/A)+(P2-P1) semi-codeless
  201. ;# "2S" GPS L2 L2C (M)
  202. ;# "2L" GPS L2 L2C (L)
  203. ;# "2X" GPS L2 L2C (M+L)
  204. ;# "2P" GPS L2 P
  205. ;# "2W" GPS L2 Z-tracking and similar (AS on)
  206. ;# "2Y" GPS L2 Y
  207. ;# "2M" GPS GPS L2 M
  208. ;# "2N" GPS L2 codeless
  209. ;# "5I" GPS L5 I
  210. ;# "5Q" GPS L5 Q
  211. ;# "5X" GPS L5 I+Q
  212. ;# "1C" GLONASS G1 C/A
  213. ;# "1P" GLONASS G1 P
  214. ;# "2C" GLONASS G2 C/A (Glonass M)
  215. ;# "2P" GLONASS G2 P
  216. ;# "1A" GALILEO E1 A (PRS)
  217. ;# "1B" GALILEO E1 B (I/NAV OS/CS/SoL)
  218. ;# "1C" GALILEO E1 C (no data)
  219. ;# "1X" GALILEO E1 B+C
  220. ;# "1Z" GALILEO E1 A+B+C
  221. ;# "5I" GALILEO E5a I (F/NAV OS)
  222. ;# "5Q" GALILEO E5a Q (no data)
  223. ;# "5X" GALILEO E5a I+Q
  224. ;# "7I" GALILEO E5b I
  225. ;# "7Q" GALILEO E5b Q
  226. ;# "7X" GALILEO E5b I+Q
  227. ;# "8I" GALILEO E5 I
  228. ;# "8Q" GALILEO E5 Q
  229. ;# "8X" GALILEO E5 I+Q
  230. ;# "6A" GALILEO E6 A
  231. ;# "6B" GALILEO E6 B
  232. ;# "6C" GALILEO E6 C
  233. ;# "6X" GALILEO E6 B+C
  234. ;# "6Z" GALILEO E6 A+B+C
  235. ;# "1C" SBAS L1 C/A
  236. ;# "5I" SBAS L5 I
  237. ;# "5Q" SBAS L5 Q
  238. ;# "5X" SBAS L5 I+Q
  239. ;# "2I" COMPASS E2 I
  240. ;# "2Q" COMPASS E2 Q
  241. ;# "2X" COMPASS E2 IQ
  242. ;# "7I" COMPASS E5b I
  243. ;# "7Q" COMPASS E5b Q
  244. ;# "7X" COMPASS E5b IQ
  245. ;# "6I" COMPASS E6 I
  246. ;# "6Q" COMPASS E6 Q
  247. ;# "6X" COMPASS E6 IQ
  248. ;#if the option is disabled by default is assigned "1C" GPS L1 C/A
  249. Channel0.signal=1C
  250.  
  251. ;######### CHANNEL 0 CONFIG ############
  252. ;#system: GPS, GLONASS, GALILEO, SBAS or COMPASS
  253. ;#if the option is disabled by default is assigned GPS
  254. Channel0.system=GPS
  255. ;#satellite: Satellite PRN ID for this channel. Disable this option to random search
  256. ;Channel0.satellite=16
  257. ;Channel0.satellite=12
  258. Channel0.repeat_satellite=false
  259.  
  260. ;######### CHANNEL 1 CONFIG ############
  261.  
  262. Channel1.system=GPS
  263. Channel1.signal=1C
  264. ;Channel1.satellite=11
  265. Channel1.satellite=false
  266. Channel1.repeat_satellite=false
  267.  
  268. ;######### CHANNEL 2 CONFIG ############
  269.  
  270. Channel2.system=GPS
  271. Channel2.signal=1C
  272. ;Channel2.satellite=17
  273. Channel2.satellite=false
  274. Channel2.repeat_satellite=false
  275.  
  276. ;######### CHANNEL 3 CONFIG ############
  277.  
  278. Channel3.system=GPS
  279. Channel3.signal=1C
  280. ;Channel3.satellite=20
  281. Channel3.satellite=false
  282. Channel3.repeat_satellite=false
  283.  
  284. ;######### CHANNEL 4 CONFIG ############
  285.  
  286. Channel4.system=GPS
  287. Channel4.signal=1C
  288. ;Channel4.satellite=23
  289. Channel4.satellite=false
  290. Channel4.repeat_satellite=false
  291.  
  292. ;######### CHANNEL 5 CONFIG ############
  293.  
  294. Channel5.system=GPS
  295. Channel5.signal=1C
  296. ;Channel5.satellite=24
  297. Channel5.satellite=false
  298. Channel5.repeat_satellite=false
  299.  
  300. ;######### CHANNEL 6 CONFIG ############
  301.  
  302. Channel6.system=GPS
  303. Channel6.signal=1C
  304. ;Channel6.satellite=24
  305. Channel6.satellite=false
  306. Channel6.repeat_satellite=false
  307.  
  308. ;######### CHANNEL 7 CONFIG ############
  309.  
  310. Channel7.system=GPS
  311. Channel7.signal=1C
  312. ;Channel7.satellite=24
  313. Channel7.satellite=false
  314. Channel7.repeat_satellite=false
  315.  
  316.  
  317.  
  318. ;######### ACQUISITION GLOBAL CONFIG ############
  319.  
  320. ;#dump: Enable or disable the acquisition internal data file logging [true] or [false]
  321. Acquisition.dump=false
  322. ;#filename: Log path and filename
  323. Acquisition.dump_filename=./acq_dump.dat
  324. ;#item_type: Type and resolution for each of the signal samples. Use only gr_complex in this version.
  325. Acquisition.item_type=gr_complex
  326. ;#if: Signal intermediate frequency in [Hz]
  327. Acquisition.if=0
  328.  
  329. ;#sampled_ms: Signal block duration for the acquisition signal detection [ms]
  330. Acquisition.sampled_ms=20
  331.  
  332. ;#implementation: Acquisition algorithm selection for this channel: [GPS_L1_CA_PCPS_Acquisition] or [Galileo_E1_PCPS_Ambiguous_Acquisition]
  333. Acquisition.implementation=GPS_L1_CA_PCPS_Acquisition
  334.  
  335. ;#threshold: Acquisition threshold
  336. ;Acquisition.threshold=50
  337.  
  338. ;#pfa: Acquisition false alarm probability. This option overrides the threshold option. Only use with implementations: [GPS_L1_CA_PCPS_Acquisition] or [Galileo_E1_PCPS_Ambiguous_Acquisition]
  339. ;Acquisition.pfa=0.0000000001
  340. Acquisition.pfa=0.0000001
  341.  
  342. ;#doppler_max: Maximum expected Doppler shift [Hz]
  343. Acquisition.doppler_max=20000
  344. Acquisition.doppler_min=-20000
  345. ;#doppler_max: Doppler step in the grid search [Hz]
  346. Acquisition.doppler_step=200
  347.  
  348. ;#maximum dwells
  349. Acquisition.max_dwells=1
  350.  
  351. ;######### ACQUISITION CHANNELS CONFIG ######
  352.  
  353. ;######### ACQUISITION CH 0 CONFIG ############
  354. ;#implementation: Acquisition algorithm selection for this channel: [GPS_L1_CA_PCPS_Acquisition]
  355. ;Acquisition0.implementation=GPS_L1_CA_PCPS_Acquisition
  356. ;#threshold: Acquisition threshold
  357. ;Acquisition0.threshold=100
  358. ;#doppler_max: Maximum expected Doppler shift [Hz]
  359. ;Acquisition0.doppler_max=10000
  360. ;#doppler_max: Doppler step in the grid search [Hz]
  361. ;Acquisition0.doppler_step=250
  362. ;#repeat_satellite: Use only jointly with the satellite PRN ID option.
  363.  
  364.  
  365. ;######### ACQUISITION CH 1 CONFIG ############
  366. ;Acquisition1.implementation=GPS_L1_CA_PCPS_Acquisition
  367. ;Acquisition1.threshold=100
  368. ;Acquisition1.doppler_max=10000
  369. ;Acquisition1.doppler_step=250
  370.  
  371.  
  372. ;######### ACQUISITION CH 2 CONFIG ############
  373. ;Acquisition2.implementation=GPS_L1_CA_PCPS_Acquisition
  374. ;Acquisition2.threshold=100
  375. ;Acquisition2.doppler_max=10000
  376. ;Acquisition2.doppler_step=250
  377.  
  378.  
  379. ;######### ACQUISITION CH 3 CONFIG ############
  380. ;Acquisition3.implementation=GPS_L1_CA_PCPS_Acquisition
  381. ;Acquisition3.threshold=100
  382. ;Acquisition3.doppler_max=10000
  383. ;Acquisition3.doppler_step=250
  384.  
  385.  
  386. ;######### ACQUISITION CH 4 CONFIG ############
  387. ;Acquisition4.implementation=GPS_L1_CA_PCPS_Acquisition
  388. ;Acquisition4.threshold=100
  389. ;Acquisition4.doppler_max=10000
  390. ;Acquisition4.doppler_step=250
  391.  
  392.  
  393. ;######### ACQUISITION CH 5 CONFIG ############
  394. ;Acquisition5.implementation=GPS_L1_CA_PCPS_Acquisition
  395. ;Acquisition5.threshold=100
  396. ;Acquisition5.doppler_max=10000
  397. ;Acquisition5.doppler_step=250
  398.  
  399.  
  400. ;######### ACQUISITION CH 6 CONFIG ############
  401. ;Acquisition6.implementation=GPS_L1_CA_PCPS_Acquisition
  402. ;Acquisition6.threshold=100
  403. ;Acquisition6.doppler_max=10000
  404. ;Acquisition6.doppler_step=250
  405.  
  406.  
  407. ;######### ACQUISITION CH 7 CONFIG ############
  408. ;Acquisition7.implementation=GPS_L1_CA_PCPS_Acquisition
  409. ;Acquisition7.threshold=100
  410. ;Acquisition7.doppler_max=10000
  411. ;Acquisition7.doppler_step=250
  412.  
  413.  
  414.  
  415.  
  416.  
  417. ;######### TRACKING GLOBAL CONFIG ############
  418.  
  419. ;#implementation: Selected tracking algorithm: [GPS_L1_CA_DLL_PLL_Tracking] or [GPS_L1_CA_DLL_FLL_PLL_Tracking] [GPS_L1_CA_DLL_PLL_Optim_Tracking]
  420. Tracking.implementation=GPS_L1_CA_DLL_PLL_Optim_Tracking
  421. ;#item_type: Type and resolution for each of the signal samples. Use only [gr_complex] in this version.
  422. Tracking.item_type=gr_complex
  423.  
  424. ;#sampling_frequency: Signal Intermediate Frequency in [Hz]
  425. Tracking.if=0
  426.  
  427. ;#dump: Enable or disable the Tracking internal binary data file logging [true] or [false]
  428. Tracking.dump=false
  429.  
  430. ;#dump_filename: Log path and filename. Notice that the tracking channel will add "x.dat" where x is the channel number.
  431. Tracking.dump_filename=./tracking_ch_
  432.  
  433. ;#pll_bw_hz: PLL loop filter bandwidth [Hz]
  434. Tracking.pll_bw_hz=50.0;
  435.  
  436. ;#dll_bw_hz: DLL loop filter bandwidth [Hz]
  437. Tracking.dll_bw_hz=2.0;
  438.  
  439. ;#fll_bw_hz: FLL loop filter bandwidth [Hz]
  440. Tracking.fll_bw_hz=10.0;
  441.  
  442. ;#order: PLL/DLL loop filter order [2] or [3]
  443. Tracking.order=3;
  444.  
  445. ;#early_late_space_chips: correlator early-late space [chips]. Use [0.5]
  446. Tracking.early_late_space_chips=0.5;
  447.  
  448. ;######### TELEMETRY DECODER CONFIG ############
  449. ;#implementation: Use [GPS_L1_CA_Telemetry_Decoder] for GPS L1 C/A.
  450. TelemetryDecoder.implementation=GPS_L1_CA_Telemetry_Decoder
  451. TelemetryDecoder.dump=false
  452.  
  453. ;######### OBSERVABLES CONFIG ############
  454. ;#implementation: Use [GPS_L1_CA_Observables] for GPS L1 C/A.
  455. Observables.implementation=GPS_L1_CA_Observables
  456.  
  457. ;#dump: Enable or disable the Observables internal binary data file logging [true] or [false]
  458. Observables.dump=false
  459.  
  460. ;#dump_filename: Log path and filename.
  461. Observables.dump_filename=./observables.dat
  462.  
  463.  
  464. ;######### PVT CONFIG ############
  465. ;#implementation: Position Velocity and Time (PVT) implementation algorithm: Use [GPS_L1_CA_PVT] in this version.
  466. PVT.implementation=GPS_L1_CA_PVT
  467.  
  468. ;#averaging_depth: Number of PVT observations in the moving average algorithm
  469. PVT.averaging_depth=10
  470.  
  471. ;#flag_average: Enables the PVT averaging between output intervals (arithmetic mean) [true] or [false]
  472. PVT.flag_averaging=true
  473.  
  474. ;#output_rate_ms: Period between two PVT outputs. Notice that the minimum period is equal to the tracking integration time (for GPS CA L1 is 1ms) [ms]
  475. PVT.output_rate_ms=100
  476.  
  477. ;#display_rate_ms: Position console print (std::out) interval [ms]. Notice that output_rate_ms<=display_rate_ms.
  478. PVT.display_rate_ms=500
  479.  
  480. ;# RINEX, KML, and NMEA output configuration
  481.  
  482. ;#dump_filename: Log path and filename without extension. Notice that PVT will add ".dat" to the binary dump and ".kml" to GoogleEarth dump.
  483. PVT.dump_filename=/home/caruiz_ext/Escritorio/prueba
  484.  
  485.  
  486. ;#nmea_dump_filename: NMEA log path and filename
  487. PVT.nmea_dump_filename=./gnss_sdr_pvt.nmea;
  488.  
  489. ;#flag_nmea_tty_port: Enable or disable the NMEA log to a serial TTY port (Can be used with real hardware or virtual one)
  490. PVT.flag_nmea_tty_port=false;
  491.  
  492. ;#nmea_dump_devname: serial device descriptor for NMEA logging
  493. PVT.nmea_dump_devname=/dev/pts/4
  494.  
  495.  
  496. ;#dump: Enable or disable the PVT internal binary data file logging [true] or [false]
  497. PVT.dump=false
  498.  
  499. ;######### OUTPUT_FILTER CONFIG ############
  500. ;# Receiver output filter: Leave this block disabled in this version
  501. OutputFilter.implementation=Null_Sink_Output_Filter
  502. OutputFilter.filename=data/gnss-sdr.dat
  503. OutputFilter.item_type=gr_complex
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement