aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDimitri Stolnikov <horiz0n@gmx.net>2012-05-25 20:45:47 +0200
committerDimitri Stolnikov <horiz0n@gmx.net>2012-05-25 20:45:47 +0200
commitb5beddca4f3ac5f7614d3fea3e1516336e1f4951 (patch)
treeb0e6683b48a74d65253bc826a13092d905adcc12 /src
parent6d34b04b422192550716233df5b6e479f5c1f268 (diff)
fix gain setting and update usage information for CLI tools
Diffstat (limited to 'src')
-rw-r--r--src/rtl_sdr.c44
-rw-r--r--src/rtl_tcp.c37
-rw-r--r--src/rtl_test.c8
3 files changed, 57 insertions, 32 deletions
diff --git a/src/rtl_sdr.c b/src/rtl_sdr.c
index 45995c2..5cc999d 100644
--- a/src/rtl_sdr.c
+++ b/src/rtl_sdr.c
@@ -42,16 +42,16 @@ static rtlsdr_dev_t *dev = NULL;
void usage(void)
{
#ifdef _WIN32
- fprintf(stderr,"rtl-sdr, an I/Q recorder for RTL2832 based USB-sticks\n\n"
- "Usage:\t rtl-sdr-win.exe [device_index] [samplerate in kHz] "
- "[gain] [frequency in Hz] [filename]\n");
+ fprintf(stderr,"rtl_sdr, an I/Q recorder for RTL2832 based DVB-T receivers\n\n"
+ "Usage:\t rtl_sdr.exe [device_index] [samplerate in kHz] "
+ "[gain (0 for auto)] [frequency in Hz] [filename]\n");
#else
fprintf(stderr,
- "rtl-sdr, an I/Q recorder for RTL2832 based DVB-T receivers\n\n"
+ "rtl_sdr, an I/Q recorder for RTL2832 based DVB-T receivers\n\n"
"Usage:\t -f frequency_to_tune_to [Hz]\n"
"\t[-s samplerate (default: 2048000 Hz)]\n"
"\t[-d device_index (default: 0)]\n"
- "\t[-g tuner_gain (default: -1dB)]\n"
+ "\t[-g gain (default: 0 for auto)]\n"
"\t[-b output_block_size (default: 16 * 16384)]\n"
"\t[-S force sync output (default: async)]\n"
"\tfilename (a '-' dumps samples to stdout)\n\n");
@@ -98,7 +98,7 @@ int main(int argc, char **argv)
char *filename = NULL;
int n_read;
int r, opt;
- int i, gain = -10; // tenths of a dB
+ int i, gain = 0;
int sync_mode = 0;
FILE *file;
uint8_t *buffer;
@@ -118,7 +118,7 @@ int main(int argc, char **argv)
frequency = (uint32_t)atof(optarg);
break;
case 'g':
- gain = (int)(atof(optarg) * 10);
+ gain = (int)(atof(optarg) * 10); /* tenths of a dB */
break;
case 's':
samp_rate = (uint32_t)atof(optarg);
@@ -141,11 +141,11 @@ int main(int argc, char **argv)
filename = argv[optind];
}
#else
- if(argc <6)
+ if(argc < 6)
usage();
dev_index = atoi(argv[1]);
- samp_rate = atoi(argv[2])*1000;
- gain=(int)(atof(argv[3]) * 10);
+ samp_rate = atoi(argv[2])*1000; /* kHz */
+ gain = (int)(atof(argv[3]) * 10); /* tenths of a dB */
frequency = atoi(argv[4]);
filename = argv[5];
#endif
@@ -206,12 +206,24 @@ int main(int argc, char **argv)
else
fprintf(stderr, "Tuned to %u Hz.\n", frequency);
- /* Set the tuner gain */
- r = rtlsdr_set_tuner_gain(dev, gain);
- if (r < 0)
- fprintf(stderr, "WARNING: Failed to set tuner gain.\n");
- else
- fprintf(stderr, "Tuner gain set to %f dB.\n", gain/10.0);
+ if (0 == gain) {
+ /* Enable automatic gain */
+ r = rtlsdr_set_tuner_gain_mode(dev, 0);
+ if (r < 0)
+ fprintf(stderr, "WARNING: Failed to enable automatic gain.\n");
+ } else {
+ /* Enable manual gain */
+ r = rtlsdr_set_tuner_gain_mode(dev, 1);
+ if (r < 0)
+ fprintf(stderr, "WARNING: Failed to enable manual gain.\n");
+
+ /* Set the tuner gain */
+ r = rtlsdr_set_tuner_gain(dev, gain);
+ if (r < 0)
+ fprintf(stderr, "WARNING: Failed to set tuner gain.\n");
+ else
+ fprintf(stderr, "Tuner gain set to %f dB.\n", gain/10.0);
+ }
if(strcmp(filename, "-") == 0) { /* Write samples to stdout */
file = stdout;
diff --git a/src/rtl_tcp.c b/src/rtl_tcp.c
index 8b2cf44..4882f1b 100644
--- a/src/rtl_tcp.c
+++ b/src/rtl_tcp.c
@@ -76,15 +76,15 @@ static int do_exit = 0;
void usage(void)
{
#ifdef _WIN32
- printf("rtl-sdr, an I/Q recorder for RTL2832 based USB-sticks\n\n"
- "Usage:\t rtl-sdr-win.exe [listen addr] [listen port] "
+ printf("rtl_tcp, an I/Q spectrum server for RTL2832 based DVB-T receivers\n\n"
+ "Usage:\t rtl_tcp.exe [listen addr] [listen port] "
"[samplerate in kHz] [frequency in Hz] [device index]\n");
#else
- printf("rtl-sdr, an I/Q recorder for RTL2832 based USB-sticks\n\n"
+ printf("rtl_tcp, an I/Q spectrum server for RTL2832 based DVB-T receivers\n\n"
"Usage:\t[-a listen address]\n"
"\t[-p listen port (default: 1234)]\n"
"\t[-f frequency to tune to [Hz]]\n"
- "\t[-g tuner_gain (default: -1dB)]\n"
+ "\t[-g gain (default: 0 for auto)]\n"
"\t[-s samplerate in Hz (default: 2048000 Hz)]\n"
"\t[-d device index (default: 0)]\n");
#endif
@@ -311,7 +311,7 @@ int main(int argc, char **argv)
struct sockaddr_in local, remote;
int device_count;
uint32_t dev_index = 0;
- int gain = -10; // tenths of a dB
+ int gain = 0;
struct llist *curelem,*prev;
pthread_attr_t attr;
void *status;
@@ -335,7 +335,7 @@ int main(int argc, char **argv)
frequency = (uint32_t)atof(optarg);
break;
case 'g':
- gain = (int)(atof(optarg) * 10);
+ gain = (int)(atof(optarg) * 10); /* tenths of a dB */
break;
case 's':
samp_rate = (uint32_t)atof(optarg);
@@ -359,7 +359,7 @@ int main(int argc, char **argv)
usage();
dev_index = atoi(argv[5]);
frequency = atoi(argv[4]);
- samp_rate = atoi(argv[3])*1000;
+ samp_rate = atoi(argv[3])*1000; /* kHz */
port = atoi(argv[2]);
addr = argv[1];
#endif
@@ -400,11 +400,24 @@ int main(int argc, char **argv)
else
fprintf(stderr, "Tuned to %i Hz.\n", frequency);
- r = rtlsdr_set_tuner_gain(dev, gain);
- if (r < 0)
- fprintf(stderr, "WARNING: Failed to set tuner gain.\n");
- else
- fprintf(stderr, "Tuner gain set to %f dB.\n", gain/10.0);
+ if (0 == gain) {
+ /* Enable automatic gain */
+ r = rtlsdr_set_tuner_gain_mode(dev, 0);
+ if (r < 0)
+ fprintf(stderr, "WARNING: Failed to enable automatic gain.\n");
+ } else {
+ /* Enable manual gain */
+ r = rtlsdr_set_tuner_gain_mode(dev, 1);
+ if (r < 0)
+ fprintf(stderr, "WARNING: Failed to enable manual gain.\n");
+
+ /* Set the tuner gain */
+ r = rtlsdr_set_tuner_gain(dev, gain);
+ if (r < 0)
+ fprintf(stderr, "WARNING: Failed to set tuner gain.\n");
+ else
+ fprintf(stderr, "Tuner gain set to %f dB.\n", gain/10.0);
+ }
/* Reset endpoint before we start reading from it (mandatory) */
r = rtlsdr_reset_buffer(dev);
diff --git a/src/rtl_test.c b/src/rtl_test.c
index 7af4ce0..455c444 100644
--- a/src/rtl_test.c
+++ b/src/rtl_test.c
@@ -44,12 +44,12 @@ static rtlsdr_dev_t *dev = NULL;
void usage(void)
{
#ifdef _WIN32
- fprintf(stderr,"rtl-sdr, an I/Q recorder for RTL2832 based USB-sticks\n\n"
- "Usage:\t rtl-test-win.exe [device_index] [samplerate in kHz] [e4k test mode]\n"
- "\ti.e. rtl-test-win.exe 0 2048 1\n");
+ fprintf(stderr,"rtl_test, a benchmark tool for RTL2832 based DVB-T receivers\n\n"
+ "Usage:\t rtl_test.exe [device_index] [samplerate in kHz] [e4k test mode]\n"
+ "\ti.e. rtl_test.exe 0 2048 1\n");
#else
fprintf(stderr,
- "rtl_test, librtlsdr test tool\n\n"
+ "rtl_test, a benchmark tool for RTL2832 based DVB-T receivers\n\n"
"Usage:\n"
"\t[-s samplerate (default: 2048000 Hz)]\n"
"\t[-d device_index (default: 0)]\n"