diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2022-01-09 20:12:19 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2022-01-09 20:12:19 +0100 |
commit | be9dfd6f2dcdc7e44bb1400765f7bb225f5a4b40 (patch) | |
tree | dab708952bebd5b07290082d7378dfc55bda3c78 /src/fl2k_file.c | |
parent | 36276e45cc3dbca2e954515bd7b6b3b4498ddbb2 (diff) | |
download | osmo-fl2k-be9dfd6f2dcdc7e44bb1400765f7bb225f5a4b40.tar.gz osmo-fl2k-be9dfd6f2dcdc7e44bb1400765f7bb225f5a4b40.tar.bz2 osmo-fl2k-be9dfd6f2dcdc7e44bb1400765f7bb225f5a4b40.zip |
Add -i to fl2k_tcp too, and document better
Diffstat (limited to 'src/fl2k_file.c')
-rw-r--r-- | src/fl2k_file.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fl2k_file.c b/src/fl2k_file.c index 6829deb..4e0d16d 100644 --- a/src/fl2k_file.c +++ b/src/fl2k_file.c @@ -43,7 +43,7 @@ static fl2k_dev_t *dev = NULL; static volatile int do_exit = 0; static int repeat = 1; -static int interleaved = 1; +static int interleaved = 0; FILE *file; char *txbuf = NULL; @@ -55,7 +55,7 @@ void usage(void) "\t[-d device_index (default: 0)]\n" "\t[-r repeat file (default: 1)]\n" "\t[-s samplerate (default: 100 MS/s)]\n" - "\t[-i interleave (input samples are interleaved Red/Green values, useful for I/Q data, default: 0)]\n" + "\t[-i (0|1) (1: input samples are interleaved Red/Green values, useful for I/Q data, default: 0 Red values only)]\n" "\tfilename (use '-' to read from stdin)\n\n" ); exit(1); |