From 61c60d3b5b077dd7a6db6c6390af9abcb152d54b Mon Sep 17 00:00:00 2001 From: "Brian S. Dean" Date: Thu, 28 Aug 2003 18:41:43 +0000 Subject: [PATCH] Make a note about -U option. git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk@351 81a1dc3b-b13d-400b-aceb-764788c761c2 --- avrdude/ChangeLog | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/avrdude/ChangeLog b/avrdude/ChangeLog index 00d6f916..a224fc25 100644 --- a/avrdude/ChangeLog +++ b/avrdude/ChangeLog @@ -16,6 +16,23 @@ * stk500.c: Minor code cleanup to remove warnings. +2003/08/21 Brian S. Dean + + * avrdude.1: + * main.c: + + Introduce a new option, -U, for performing memory operions. + Its argument is a 4 field string (fields seperated by colons) + which indicate what memory type to operate on, what operation + to perform is (read, write, or verify), the filename to read + from, write to, or verify against, and an optional file format + field. Multple -U options can be specified to operate on more + than one memory at a time with a single invocation. For + example, to update both the flash and the eeprom at the same + time one can now specify the following: + + avrdude -p -e -U flash:w:main.hex:i -U eeprom:w:eeprom.hex:i + 2003-08-01 Theodore A. Roth * avrdude.1: Document the -q option.