NEWS, doc/TODO: Updated NEWS and TODO

git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@428 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
Jan-Hinnerk Reichert 2004-07-07 10:13:25 +00:00
parent 80f996b49a
commit 1030d47c73
3 changed files with 43 additions and 10 deletions

View File

@ -1,3 +1,6 @@
2004-07-07 Jan-Hinnerk Reichert <hinni@despammed.com>
* NEWS, doc/TODO: Updated NEWS and TODO
2004-07-07 Jan-Hinnerk Reichert <hinni@despammed.com> 2004-07-07 Jan-Hinnerk Reichert <hinni@despammed.com>
* stk500.c, term.c, doc/avrdude.texi, avrdude.1: * stk500.c, term.c, doc/avrdude.texi, avrdude.1:
added "sck"-command to the terminal mode. added "sck"-command to the terminal mode.

38
NEWS
View File

@ -8,23 +8,51 @@ Approximate change log for AVRDUDE by version.
Current: Current:
* Native Win32 support: The windows doesn't need Cygwin
anymore. Additionally, the delay timing on windows should be
more accurate now.
Contributed by Martin Thomas
* Add support for
- ATmega48, ATmega88 (contributed by Galen Seitz)
- ATtiny2313 (contributed by Bob Paddock)
- ATtiny13 (contributed by Pawel Moll)
* Added command to change the SCK of STK500-programmers. Now it
is possible to program uC with slow oscillator.
Contributed by Galen Seitz
* Baudrate for serial programmers (STK500 and AVR910) is
configurable in the config or at the command-line.
This way some more tweaked bootloaders and programmers can be used.
* Deprecated options have been removed.
Now the "-U" option must be used.
Version 4.3.0:
* Added support for "Butterfly" evaluation board.
* Make cycle-count work with AVR910-programmers.
* Added "Troubleshooting"-Appendix to the manual.
* Add ATmega8515 support. * Add ATmega8515 support.
Contributed by: Matthias Weißer <matthias@matwei.de> Contributed by: Matthias Weißer <matthias@matwei.de>
* Add ATmega64 support. * Add ATmega64 support.
Contributed by: Erik Christiansen <erik@dd.nec.com.au> Contributed by: Erik Christiansen <erik@dd.nec.com.au>
* Improved polling algorithm to speed up * Improved polling algorithm to speed up
programming of byte oriented parallel programmers. programming of byte oriented parallel programmers.
Contributed by: Jan-Hinnerk Reichert <jan-hinnerk_reichert@hamburg.de> Contributed by: Jan-Hinnerk Reichert <jan-hinnerk_reichert@hamburg.de>
* Add "fuse" and "lock" definitions for the AT90S8535. * Add "fuse" and "lock" definitions for the AT90S8535.
* STK500 skips empty pages in paged write resulting in faster downloads * STK500 skips empty pages in paged write resulting in faster downloads
when there are empty blocks in between code (such as files that contain when there are empty blocks in between code (such as files that contain
application code and bootloader code). application code and bootloader code).
Version 4.2.0: Version 4.2.0:
* Add basic support for reading and writing fuses via SPI with avr910 * Add basic support for reading and writing fuses via SPI with avr910

View File

@ -4,21 +4,23 @@
- Website needs to link to docs: - Website needs to link to docs:
http://savannah.nongnu.org/download/avrdude/doc/avrdude-html/ http://savannah.nongnu.org/download/avrdude/doc/avrdude-html/
- [Windows Port] Use Windows API for serial port communications (ser_win32.c).
(In Progress)
- Add "skip empty pages" optimization on avr910 paged write. The stk500 has - Add "skip empty pages" optimization on avr910 paged write. The stk500 has
this optimization already. this optimization already.
- Fix "overfull \hbox" issues in building documentation. - Fix "overfull \hbox" issues in building documentation.
- FIXME: term.c: terminal_get_input(): strip newlines in non-readline input - FIXME: term.c: terminal_get_input(): strip newlines in non-readline input
code. code.
- FIXME: avr910.c: avr910_cmd(): Insert version check here. - FIXME: avr910.c: avr910_cmd(): Insert version check here.
- FIXME: ser_posix.c: serial_close(): Should really restore the terminal to - FIXME: ser_posix.c: serial_close(): Should really restore the terminal to
original state here. original state here.
- FIXME: main.c, par.c: exitspecs don't work if RESET-pin is controlled over - FIXME: main.c, par.c: exitspecs don't work if RESET-pin is controlled over
PPICTRL. PPICTRL.
- transfer ppi-speedtuning to the windows version (CAVEAT: This will make
programming too fast for chips with 500kHz clock)
- make SCK-period configurable for PPI-programmers