aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelix Erckenbrecht <eligs@eligs.de>2020-07-31 10:07:09 +0200
committerFelix Erckenbrecht <eligs@eligs.de>2020-07-31 10:07:09 +0200
commita9a67e036a8fe19fc3a2a31695c0e8227afa47b6 (patch)
tree9ba38020efe30362282411263b5d30106d9fc5a9
parent4518a583dd2716aca9c64d0541df2946c09cf50c (diff)
downloadosmo-fl2k-a9a67e036a8fe19fc3a2a31695c0e8227afa47b6.tar.gz
osmo-fl2k-a9a67e036a8fe19fc3a2a31695c0e8227afa47b6.tar.bz2
osmo-fl2k-a9a67e036a8fe19fc3a2a31695c0e8227afa47b6.zip
Set default samplerate to 96 MS/s
-rw-r--r--src/fl2k_iq.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fl2k_iq.c b/src/fl2k_iq.c
index 64a8416..889ec4e 100644
--- a/src/fl2k_iq.c
+++ b/src/fl2k_iq.c
@@ -72,7 +72,7 @@ int8_t *ambuf = NULL;
int8_t *buf1 = NULL;
int8_t *buf2 = NULL;
-uint32_t samp_rate = 100000000;
+uint32_t samp_rate = 96000000;
int base_freq = 1440000;
int rf_to_baseband_sample_ratio;
@@ -90,7 +90,7 @@ void usage(void)
"\t[-d device index (default: 0)]\n"
"\t[-c center frequency (default: 1440 kHz)]\n"
"\t[-i input baseband sample rate (default: 48000 Hz)]\n"
- "\t[-s samplerate in Hz (default: 100 MS/s)]\n"
+ "\t[-s samplerate in Hz (default: 96 MS/s)]\n"
"\tfilename (use '-' to read from stdin)\n\n"
);
exit(1);