Say what the defaults are.
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk@25 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
parent
75042b07ee
commit
c2916f0d76
|
@ -4,7 +4,7 @@ Usage: avrprog [options]
|
||||||
|
|
||||||
-m MemType : select memory type for reading or writing
|
-m MemType : select memory type for reading or writing
|
||||||
\"e\", \"eeprom\" = EEPROM
|
\"e\", \"eeprom\" = EEPROM
|
||||||
\"f\", \"flash\" = FLASH
|
\"f\", \"flash\" = FLASH (default)
|
||||||
|
|
||||||
-i Filename : select input file, \"-\" = stdin
|
-i Filename : select input file, \"-\" = stdin
|
||||||
|
|
||||||
|
@ -13,8 +13,10 @@ Usage: avrprog [options]
|
||||||
-f Format : select input / output file format
|
-f Format : select input / output file format
|
||||||
\"i\" = Intel Hex
|
\"i\" = Intel Hex
|
||||||
\"s\" = Motorola S-Record
|
\"s\" = Motorola S-Record
|
||||||
\"r\" = Raw binary
|
\"r\" = Raw binary (default for output)
|
||||||
\"a\" = Auto detect (valid input only)
|
\"a\" = Auto detect (default for input)
|
||||||
|
(valid for input only)
|
||||||
|
|
||||||
|
|
||||||
-p Part : select Atmel part number (see below for valid parts)
|
-p Part : select Atmel part number (see below for valid parts)
|
||||||
|
|
||||||
|
|
|
@ -164,7 +164,7 @@ char * usage_text =
|
||||||
"\n"
|
"\n"
|
||||||
" -m MemType : select memory type for reading or writing\n"
|
" -m MemType : select memory type for reading or writing\n"
|
||||||
" \"e\", \"eeprom\" = EEPROM\n"
|
" \"e\", \"eeprom\" = EEPROM\n"
|
||||||
" \"f\", \"flash\" = FLASH\n"
|
" \"f\", \"flash\" = FLASH (default)\n"
|
||||||
"\n"
|
"\n"
|
||||||
" -i Filename : select input file, \"-\" = stdin\n"
|
" -i Filename : select input file, \"-\" = stdin\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -173,8 +173,10 @@ char * usage_text =
|
||||||
" -f Format : select input / output file format\n"
|
" -f Format : select input / output file format\n"
|
||||||
" \"i\" = Intel Hex\n"
|
" \"i\" = Intel Hex\n"
|
||||||
" \"s\" = Motorola S-Record\n"
|
" \"s\" = Motorola S-Record\n"
|
||||||
" \"r\" = Raw binary\n"
|
" \"r\" = Raw binary (default for output)\n"
|
||||||
" \"a\" = Auto detect (valid input only)\n"
|
" \"a\" = Auto detect (default for input)\n"
|
||||||
|
" (valid for input only)\n"
|
||||||
|
" \n"
|
||||||
"\n"
|
"\n"
|
||||||
" -p Part : select Atmel part number (see below for valid parts)\n"
|
" -p Part : select Atmel part number (see below for valid parts)\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
|
Loading…
Reference in New Issue