From 4ca37b8174ae8992f81695c92e4b93a8ff5f09cc Mon Sep 17 00:00:00 2001 From: Michael Ossmann Date: Mon, 30 Jan 2017 09:31:27 -0700 Subject: [PATCH] Removed "subsequent" from help for register number options which can now be placed before or after the read/write options. We no longer support chaining operations over multiple registers in a single command. --- host/hackrf-tools/src/hackrf_max2837.c | 2 +- host/hackrf-tools/src/hackrf_rffc5071.c | 2 +- host/hackrf-tools/src/hackrf_si5351c.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/host/hackrf-tools/src/hackrf_max2837.c b/host/hackrf-tools/src/hackrf_max2837.c index 6b118e38..d09a7557 100644 --- a/host/hackrf-tools/src/hackrf_max2837.c +++ b/host/hackrf-tools/src/hackrf_max2837.c @@ -35,7 +35,7 @@ typedef int bool; static void usage() { printf("\nUsage:\n"); printf("\t-h, --help: this help\n"); - printf("\t-n, --register : set register number for subsequent read/write operations\n"); + printf("\t-n, --register : set register number for read/write operations\n"); printf("\t-r, --read: read register specified by last -n argument, or all registers\n"); printf("\t-w, --write : write register specified by last -n argument with value \n"); printf("\nExamples:\n"); diff --git a/host/hackrf-tools/src/hackrf_rffc5071.c b/host/hackrf-tools/src/hackrf_rffc5071.c index 82b3f552..11285d83 100644 --- a/host/hackrf-tools/src/hackrf_rffc5071.c +++ b/host/hackrf-tools/src/hackrf_rffc5071.c @@ -36,7 +36,7 @@ typedef int bool; static void usage() { printf("\nUsage:\n"); printf("\t-h, --help: this help\n"); - printf("\t-n, --register : set register number for subsequent read/write operations\n"); + printf("\t-n, --register : set register number for read/write operations\n"); printf("\t-r, --read: read register specified by last -n argument, or all registers\n"); printf("\t-w, --write : write register specified by last -n argument with value \n"); printf("\nExamples:\n"); diff --git a/host/hackrf-tools/src/hackrf_si5351c.c b/host/hackrf-tools/src/hackrf_si5351c.c index eea39c83..c4fc0cdb 100644 --- a/host/hackrf-tools/src/hackrf_si5351c.c +++ b/host/hackrf-tools/src/hackrf_si5351c.c @@ -35,7 +35,7 @@ static void usage() { printf("\nUsage:\n"); printf("\t-h, --help: this help\n"); printf("\t-c, --config: print textual configuration information\n"); - printf("\t-n, --register : set register number for subsequent read/write operations\n"); + printf("\t-n, --register : set register number for read/write operations\n"); printf("\t-r, --read: read register specified by last -n argument, or all registers\n"); printf("\t-w, --write : write register specified by last -n argument with value \n"); printf("\t-s, --serial : specify a particular device by serial number\n");