Correct usage text.
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@23 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
parent
1757ed49d5
commit
0519d7dbb6
|
@ -166,7 +166,7 @@ char * usage_text =
|
||||||
" \"e\", \"eeprom\" = EEPROM\n"
|
" \"e\", \"eeprom\" = EEPROM\n"
|
||||||
" \"f\", \"flash\" = FLASH\n"
|
" \"f\", \"flash\" = FLASH\n"
|
||||||
"\n"
|
"\n"
|
||||||
" -i Filename : select input file\n"
|
" -i Filename : select input file, \"-\" = stdin\n"
|
||||||
"\n"
|
"\n"
|
||||||
" -o Filename : select output file, \"-\" = stdout\n"
|
" -o Filename : select output file, \"-\" = stdout\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -180,8 +180,6 @@ char * usage_text =
|
||||||
"\n"
|
"\n"
|
||||||
" -P Parallel : select parallel port device name (default = /dev/ppi0)\n"
|
" -P Parallel : select parallel port device name (default = /dev/ppi0)\n"
|
||||||
"\n"
|
"\n"
|
||||||
" -s : read device signature bytes\n"
|
|
||||||
"\n"
|
|
||||||
" -F : override invalid device signature check\n"
|
" -F : override invalid device signature check\n"
|
||||||
"\n"
|
"\n"
|
||||||
" -c : enter interactive command mode (or read commands\n"
|
" -c : enter interactive command mode (or read commands\n"
|
||||||
|
@ -197,7 +195,7 @@ int list_valid_parts ( FILE * f, char * prefix )
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
for (i=0; i<N_AVRPARTS; i++) {
|
for (i=0; i<N_AVRPARTS; i++) {
|
||||||
fprintf(f, "%s\"%s\" = %s\n",
|
fprintf(f, "%s%s = %s\n",
|
||||||
prefix, parts[i].optiontag, parts[i].partdesc);
|
prefix, parts[i].optiontag, parts[i].partdesc);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue