mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2025-10-31 23:33:03 +00:00
Adding timestamp_source command line switch to change the timestamp file from command line
This commit is contained in:
@@ -33,6 +33,9 @@ DEFINE_string(s, "-",
|
||||
DEFINE_string(signal_source, "-",
|
||||
"If defined, path to the file containing the signal samples (overrides the configuration file).");
|
||||
|
||||
DEFINE_string(timestamp_source, "-",
|
||||
"If defined, path to the file containing the signal timestamp data (overrides the configuration file).");
|
||||
|
||||
DEFINE_bool(rf_shutdown, true, "If set to false, AD9361 RF channels are not shut down when exiting the program. Useful to leave the AD9361 configured and running.");
|
||||
|
||||
DEFINE_int32(doppler_max, 0, "If defined, sets the maximum Doppler value in the search grid, in Hz (overrides the configuration file).");
|
||||
|
||||
@@ -35,9 +35,10 @@ DECLARE_string(config_file); //!< Path to the configuration file.
|
||||
DECLARE_string(log_dir); //!< Path to the folder in which logging will be stored.
|
||||
|
||||
// Declare flags for signal sources
|
||||
DECLARE_string(s); //!< Path to the file containing the signal samples.
|
||||
DECLARE_string(signal_source); //!< Path to the file containing the signal samples.
|
||||
DECLARE_bool(rf_shutdown); //!< Shutdown RF when program exits.
|
||||
DECLARE_string(s); //!< Path to the file containing the signal samples.
|
||||
DECLARE_string(signal_source); //!< Path to the file containing the signal samples.
|
||||
DECLARE_string(timestamp_source); //!< Path to the file containing the signal samples.
|
||||
DECLARE_bool(rf_shutdown); //!< Shutdown RF when program exits.
|
||||
|
||||
// Declare flags for acquisition blocks
|
||||
DECLARE_int32(doppler_max); //!< If defined, maximum Doppler value in the search grid, in Hz (overrides the configuration file).
|
||||
|
||||
Reference in New Issue
Block a user