Add '-V' (no verify) flag requested by Joerg Wunsch. Update the man
page. git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk@148 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
parent
de9b1ec6c9
commit
c5a313abe3
|
@ -4,6 +4,12 @@ Approximate change log for AVRPROG by version
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
Version 2.1.2:
|
||||||
|
|
||||||
|
* Add '-V' option to disable automatic verify check with uploading
|
||||||
|
data.
|
||||||
|
|
||||||
|
|
||||||
Version 2.1.1:
|
Version 2.1.1:
|
||||||
|
|
||||||
* Fix ATmega128 instruction sequences for reading fuse bits -
|
* Fix ATmega128 instruction sequences for reading fuse bits -
|
||||||
|
|
|
@ -48,6 +48,9 @@
|
||||||
.Op Fl P Ar parallel
|
.Op Fl P Ar parallel
|
||||||
.Op Fl t
|
.Op Fl t
|
||||||
.Op Fl v
|
.Op Fl v
|
||||||
|
.Op Fl V
|
||||||
|
.Op Fl y
|
||||||
|
.Op Fl Y
|
||||||
.Sh DESCRIPTION
|
.Sh DESCRIPTION
|
||||||
.Nm Avrprog
|
.Nm Avrprog
|
||||||
is a driver program for a simple programming hardware that allows one
|
is a driver program for a simple programming hardware that allows one
|
||||||
|
@ -124,14 +127,17 @@ the format. Currently, the following MCU types are understood:
|
||||||
.TS
|
.TS
|
||||||
ll.
|
ll.
|
||||||
\fBOption tag\fP \fBOfficial part name\fP
|
\fBOption tag\fP \fBOfficial part name\fP
|
||||||
|
t15 ATtiny15
|
||||||
1200 AT90S1200
|
1200 AT90S1200
|
||||||
2313 AT90S2313
|
2313 AT90S2313
|
||||||
2333 AT90S2333
|
2333 AT90S2333
|
||||||
|
4414 AT90S4414
|
||||||
4433 AT90S4433
|
4433 AT90S4433
|
||||||
4434 AT90S4434
|
4434 AT90S4434
|
||||||
8515 AT90S8515
|
8515 AT90S8515
|
||||||
8535 AT90S8535
|
8535 AT90S8535
|
||||||
m163 ATMEGA163
|
m163 ATMEGA163
|
||||||
|
m128 ATMEGA128
|
||||||
m103 ATMEGA103
|
m103 ATMEGA103
|
||||||
m16 ATMEGA16
|
m16 ATMEGA16
|
||||||
m8 ATMEGA8
|
m8 ATMEGA8
|
||||||
|
@ -293,6 +299,10 @@ Tells
|
||||||
.Nm
|
.Nm
|
||||||
to enter the interactive ``terminal'' mode instead of up- or downloading
|
to enter the interactive ``terminal'' mode instead of up- or downloading
|
||||||
files. See below for a detailed description of the terminal mode.
|
files. See below for a detailed description of the terminal mode.
|
||||||
|
.It Fl v
|
||||||
|
Enable verbose output.
|
||||||
|
.It Fl V
|
||||||
|
Disable automatic verify check when uploading data.
|
||||||
.It Fl y
|
.It Fl y
|
||||||
Tells
|
Tells
|
||||||
.Nm
|
.Nm
|
||||||
|
|
|
@ -115,7 +115,7 @@ char ** modules[N_MODULES] = {
|
||||||
&term_version
|
&term_version
|
||||||
};
|
};
|
||||||
|
|
||||||
char * version = "2.1.1";
|
char * version = "2.1.2";
|
||||||
|
|
||||||
char * main_version = "$Id$";
|
char * main_version = "$Id$";
|
||||||
|
|
||||||
|
@ -516,7 +516,7 @@ int main(int argc, char * argv [])
|
||||||
terminal = 0;
|
terminal = 0;
|
||||||
filefmt = FMT_AUTO;
|
filefmt = FMT_AUTO;
|
||||||
nowrite = 0;
|
nowrite = 0;
|
||||||
verify = 1; /* on by default; XXX can't turn it off */
|
verify = 1; /* on by default */
|
||||||
ppisetbits = 0;
|
ppisetbits = 0;
|
||||||
ppiclrbits = 0;
|
ppiclrbits = 0;
|
||||||
exitspecs = NULL;
|
exitspecs = NULL;
|
||||||
|
@ -571,7 +571,7 @@ int main(int argc, char * argv [])
|
||||||
/*
|
/*
|
||||||
* process command line arguments
|
* process command line arguments
|
||||||
*/
|
*/
|
||||||
while ((ch = getopt(argc,argv,"?c:C:eE:f:Fi:m:no:p:P:tvyY:")) != -1) {
|
while ((ch = getopt(argc,argv,"?c:C:eE:f:Fi:m:no:p:P:tvVyY:")) != -1) {
|
||||||
|
|
||||||
switch (ch) {
|
switch (ch) {
|
||||||
case 'c': /* pin configuration */
|
case 'c': /* pin configuration */
|
||||||
|
@ -681,6 +681,10 @@ int main(int argc, char * argv [])
|
||||||
verbose++;
|
verbose++;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case 'V':
|
||||||
|
verify = 0;
|
||||||
|
break;
|
||||||
|
|
||||||
case 'y':
|
case 'y':
|
||||||
do_cycles = 1;
|
do_cycles = 1;
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue