avrdude.1: document the memtypes for -U
doc/avrdude.texi: (Ditto.) Closes bug #13501: <memtype> should be listed in the man page git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk@500 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
parent
f6c2213871
commit
66a5f13b2c
|
@ -1,3 +1,9 @@
|
||||||
|
2005-09-16 Joerg Wunsch <j@uriah.heep.sax.de>
|
||||||
|
|
||||||
|
* avrdude.1: document the memtypes for -U
|
||||||
|
* doc/avrdude.texi: (Ditto.)
|
||||||
|
Closes bug #13501: <memtype> should be listed in the man page
|
||||||
|
|
||||||
2005-09-16 Joerg Wunsch <j@uriah.heep.sax.de>
|
2005-09-16 Joerg Wunsch <j@uriah.heep.sax.de>
|
||||||
|
|
||||||
* doc/Makefile.am: add logic to detect the misf^H^H^H^H
|
* doc/Makefile.am: add logic to detect the misf^H^H^H^H
|
||||||
|
|
|
@ -357,7 +357,39 @@ the fuse bits.
|
||||||
.Xc
|
.Xc
|
||||||
Perform a memory operation as indicated. The
|
Perform a memory operation as indicated. The
|
||||||
.Ar memtype
|
.Ar memtype
|
||||||
field specifies the memory type to operate on. The
|
field specifies the memory type to operate on.
|
||||||
|
The available memory types are device-dependant, the actual
|
||||||
|
configuration can be viewed with the
|
||||||
|
.Cm part
|
||||||
|
command in terminal mode.
|
||||||
|
Typically, a device's memory configuration at least contains
|
||||||
|
the memory types
|
||||||
|
.Ar flash
|
||||||
|
and
|
||||||
|
.Ar eeprom .
|
||||||
|
All memory types currently known are:
|
||||||
|
.Bl -tag -width "calibration" -compact
|
||||||
|
.It calibration
|
||||||
|
One or more bytes of RC oscillator calibration data.
|
||||||
|
.It eeprom
|
||||||
|
The EEPROM of the device.
|
||||||
|
.It efuse
|
||||||
|
The extended fuse byte.
|
||||||
|
.It flash
|
||||||
|
The flash ROM of the device.
|
||||||
|
.It fuse
|
||||||
|
The fuse byte in devices that have only a single fuse byte.
|
||||||
|
.It hfuse
|
||||||
|
The high fuse byte.
|
||||||
|
.It lfuse
|
||||||
|
The low fuse byte.
|
||||||
|
.It lock
|
||||||
|
The lock byte.
|
||||||
|
.It signature
|
||||||
|
The three device signature bytes (device ID).
|
||||||
|
.El
|
||||||
|
.Pp
|
||||||
|
The
|
||||||
.Ar op
|
.Ar op
|
||||||
field specifies what operation to perform:
|
field specifies what operation to perform:
|
||||||
.Bl -tag -width noreset
|
.Bl -tag -width noreset
|
||||||
|
|
|
@ -572,6 +572,33 @@ mulitple memories on the same command-line invocation. The
|
||||||
the @option{-v} option on the command line or the @code{part} command from
|
the @option{-v} option on the command line or the @code{part} command from
|
||||||
terminal mode to display all the memory types supported by a particular
|
terminal mode to display all the memory types supported by a particular
|
||||||
device.
|
device.
|
||||||
|
Typically, a device's memory configuration at least contains
|
||||||
|
the memory types
|
||||||
|
@code{flash}
|
||||||
|
and
|
||||||
|
@code{eeprom}.
|
||||||
|
All memory types currently known are:
|
||||||
|
@table @code
|
||||||
|
@item calibration
|
||||||
|
One or more bytes of RC oscillator calibration data.
|
||||||
|
@item eeprom
|
||||||
|
The EEPROM of the device.
|
||||||
|
@item efuse
|
||||||
|
The extended fuse byte.
|
||||||
|
@item flash
|
||||||
|
The flash ROM of the device.
|
||||||
|
@item fuse
|
||||||
|
The fuse byte in devices that have only a single fuse byte.
|
||||||
|
@item hfuse
|
||||||
|
The high fuse byte.
|
||||||
|
@item lfuse
|
||||||
|
The low fuse byte.
|
||||||
|
@item lock
|
||||||
|
The lock byte.
|
||||||
|
@item signature
|
||||||
|
The three device signature bytes (device ID).
|
||||||
|
@end table
|
||||||
|
|
||||||
The @var{op} field specifies what operation to perform:
|
The @var{op} field specifies what operation to perform:
|
||||||
|
|
||||||
@table @code
|
@table @code
|
||||||
|
|
Loading…
Reference in New Issue