diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-06-12 07:42:22 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-06-12 07:42:22 +0200 |
commit | fed9a724ca91417e84071255890ec26ff797fd4f (patch) | |
tree | e20a2f1ddcf4e18acf1fcc5790507a2b515d1ff9 /src/Utils.cpp | |
parent | 5e5c0871db3069958ae072c5a367c4467f261d3e (diff) | |
download | dabmod-fed9a724ca91417e84071255890ec26ff797fd4f.tar.gz dabmod-fed9a724ca91417e84071255890ec26ff797fd4f.tar.bz2 dabmod-fed9a724ca91417e84071255890ec26ff797fd4f.zip |
Simplify TIST offset handling, add offset to RC
This breaks old configuration files using synchronous=1
Diffstat (limited to 'src/Utils.cpp')
-rw-r--r-- | src/Utils.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/Utils.cpp b/src/Utils.cpp index 8b97602..6c9b0fc 100644 --- a/src/Utils.cpp +++ b/src/Utils.cpp @@ -49,7 +49,6 @@ void printUsage(char* progName) " (-f filename | -u uhddevice -F frequency) " " [-G txgain]" " [-o offset]" - " [-O offsetfile]" " [-T filter_taps_file]" " [-a gain]" " [-c clockrate]" @@ -66,9 +65,7 @@ void printUsage(char* progName) fprintf(out, "-F frequency: Set the transmit frequency when using UHD output. (mandatory option when using UHD)\n"); fprintf(out, "-G txgain: Set the transmit gain for the UHD driver (default: 0)\n"); fprintf(out, "-o: (UHD only) Set the timestamp offset added to the timestamp in the ETI. The offset is a double.\n"); - fprintf(out, "-O: (UHD only) Set the file containing the timestamp offset added to the timestamp in the ETI.\n" - "The file is read every six seconds, and must contain a double value.\n"); - fprintf(out, " Specifying either -o or -O has two implications: It enables synchronous transmission,\n" + fprintf(out, " Specifying this option has two implications: It enables synchronous transmission,\n" " requiring an external REFCLK and PPS signal and frames that do not contain a valid timestamp\n" " get muted.\n\n"); fprintf(out, "-T taps_file: Enable filtering before the output, using the specified file containing the filter taps.\n"); |