Skip to content

Commit 0c2c03f

Browse files
committed
Rename --test and --noverify to --test-memory and -d --noverify-memory
1 parent 0528a3e commit 0c2c03f

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

src/avrdude.1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
.Op Fl F
4141
.Op Fl i Ar delay
4242
.Op Fl l, \-logfile Ar logfile
43-
.Op Fl n, \-test
43+
.Op Fl n, \-test-memory
4444
.Op Fl O, \-osccal
4545
.Op Fl P, \-port Ar port
4646
.Op Fl r, \-reconnect
@@ -50,7 +50,7 @@
5050
.Op Fl U, \-memory Ar memory:op:filename:filefmt
5151
.Op Fl v, \-verbose
5252
.Op Fl x Ar extended_param
53-
.Op Fl V, \-noverify
53+
.Op Fl V, \-noverify-memory
5454
.Sh DESCRIPTION
5555
.Nm Avrdude
5656
is a program for downloading and uploading on-chip memories of Atmel AVR
@@ -580,7 +580,7 @@ Note that initial diagnostic messages (during option parsing) are still
580580
written to
581581
.Va stderr
582582
anyway.
583-
.It Fl n \-test
583+
.It Fl n \-test-memory
584584
No-write: disables writing data to the MCU whilst processing -U
585585
(useful for debugging
586586
.Nm avrdude
@@ -931,7 +931,7 @@ Enable verbose output.
931931
More
932932
.Fl v
933933
options increase verbosity level.
934-
.It Fl V \-noverify
934+
.It Fl V \-noverify-memory
935935
Disable automatic verify check when writing data to the AVR with -U.
936936
.It Fl x Ar extended_param
937937
Pass

src/doc/avrdude.texi

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -764,9 +764,9 @@ Note that initial diagnostic messages (during option parsing) are still
764764
written to @var{stderr} anyway.
765765

766766
@item -n
767-
@item --test
768-
@cindex Option @code{-n, --test}
769-
@cindex @code{-n, --test}
767+
@item --test-memory
768+
@cindex Option @code{-n, --test-memory}
769+
@cindex @code{-n, --test-memory}
770770
No-write: disables writing data to the MCU whilst processing @code{-U}
771771
(useful for debugging AVRDUDE). The terminal mode continues to write to
772772
the device.
@@ -1100,9 +1100,9 @@ Enable verbose output.
11001100
More @code{-v} options increase verbosity level.
11011101

11021102
@item -V
1103-
@item --noverify
1104-
@cindex Option @code{-V, --noverify}
1105-
@cindex @code{-V, --noverify}
1103+
@item --noverify-memory
1104+
@cindex Option @code{-V, --noverify-memory}
1105+
@cindex @code{-V, --noverify-memory}
11061106
Disable automatic verify check when writing data to the AVR with @code{-U}.
11071107

11081108
@item -x @var{extended_param}

src/main.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -268,8 +268,8 @@ static void usage(void) {
268268
" -U, --memory <memstr>:r|w|v:<filename>[:format]\n"
269269
" Carry out memory operation when it is its turn\n"
270270
" Multiple -t, -T and -U options can be specified\n"
271-
" -n, --test Do not write to the device whilst processing -U\n"
272-
" -V, --noverify Do not automatically verify during -U\n"
271+
" -n, --test-memory Do not write to the device whilst processing -U\n"
272+
" -V, --noverify-memory Do not automatically verify during -U\n"
273273
" -E <exitsp>[,<exitsp>] List programmer exit specifications\n"
274274
" -x <extended_param> Pass <extended_param> to programmer, see -x help\n"
275275
" -v, --verbose Verbose output; -v -v for more\n"
@@ -829,7 +829,7 @@ int main(int argc, char *argv[]) {
829829
{"noerase", no_argument, NULL, 'D'},
830830
{"erase", no_argument, NULL, 'e'},
831831
{"logfile", required_argument, NULL, 'l'},
832-
{"test", no_argument, NULL, 'n'},
832+
{"test-memory",no_argument, NULL, 'n'},
833833
{"noconfig", no_argument, NULL, 'N'},
834834
{"osccal", no_argument, NULL, 'O'},
835835
{"part", required_argument, NULL, 'p'},
@@ -839,7 +839,7 @@ int main(int argc, char *argv[]) {
839839
{"terminal", no_argument, NULL, 't'},
840840
{"memory", required_argument, NULL, 'U'},
841841
{"verbose", no_argument, NULL, 'v'},
842-
{"noverify", no_argument, NULL, 'V'},
842+
{"noverify-memory",no_argument, NULL, 'V'},
843843
{NULL, 0, NULL, 0}
844844
};
845845
while((ch = getopt_long(argc, argv,

0 commit comments

Comments
 (0)