Fixed paged flash write operations for AT90PWMx devices
(error in datasheet). git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@572 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
parent
baba306eb8
commit
4d966e4403
|
@ -1,3 +1,8 @@
|
||||||
|
2006-02-21 Joerg Wunsch <j@uriah.heep.sax.de>
|
||||||
|
|
||||||
|
* avrdude.conf.in: Fix paged flash write for AT90PWMx
|
||||||
|
(error in datasheet).
|
||||||
|
|
||||||
2006-01-23 Joerg Wunsch <j@uriah.heep.sax.de>
|
2006-01-23 Joerg Wunsch <j@uriah.heep.sax.de>
|
||||||
|
|
||||||
* configure.in: Bump version.
|
* configure.in: Bump version.
|
||||||
|
|
3
NEWS
3
NEWS
|
@ -7,6 +7,9 @@ Approximate change log for AVRDUDE by version.
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
Current:
|
Current:
|
||||||
|
|
||||||
|
* Fixed paged flash write operations for AT90PWMx devices
|
||||||
|
(error in datasheet).
|
||||||
|
|
||||||
Version 5.1:
|
Version 5.1:
|
||||||
|
|
||||||
* New devices supported:
|
* New devices supported:
|
||||||
|
|
|
@ -5379,17 +5379,17 @@ part
|
||||||
|
|
||||||
loadpage_lo = " 0 1 0 0 0 0 0 0",
|
loadpage_lo = " 0 1 0 0 0 0 0 0",
|
||||||
" 0 0 0 x x x x x",
|
" 0 0 0 x x x x x",
|
||||||
" x x a5 a4 a3 a2 a1 a0",
|
" x x x a4 a3 a2 a1 a0",
|
||||||
" i i i i i i i i";
|
" i i i i i i i i";
|
||||||
|
|
||||||
loadpage_hi = " 0 1 0 0 1 0 0 0",
|
loadpage_hi = " 0 1 0 0 1 0 0 0",
|
||||||
" 0 0 0 x x x x x",
|
" 0 0 0 x x x x x",
|
||||||
" x x a5 a4 a3 a2 a1 a0",
|
" x x x a4 a3 a2 a1 a0",
|
||||||
" i i i i i i i i";
|
" i i i i i i i i";
|
||||||
|
|
||||||
writepage = " 0 1 0 0 1 1 0 0",
|
writepage = " 0 1 0 0 1 1 0 0",
|
||||||
" 0 0 0 0 a11 a10 a9 a8",
|
" 0 0 0 0 a11 a10 a9 a8",
|
||||||
" a7 a6 x x x x x x",
|
" a7 a6 a5 x x x x x",
|
||||||
" x x x x x x x x";
|
" x x x x x x x x";
|
||||||
|
|
||||||
mode = 0x41;
|
mode = 0x41;
|
||||||
|
@ -5517,17 +5517,17 @@ part
|
||||||
|
|
||||||
loadpage_lo = " 0 1 0 0 0 0 0 0",
|
loadpage_lo = " 0 1 0 0 0 0 0 0",
|
||||||
" 0 0 0 x x x x x",
|
" 0 0 0 x x x x x",
|
||||||
" x x a5 a4 a3 a2 a1 a0",
|
" x x x a4 a3 a2 a1 a0",
|
||||||
" i i i i i i i i";
|
" i i i i i i i i";
|
||||||
|
|
||||||
loadpage_hi = " 0 1 0 0 1 0 0 0",
|
loadpage_hi = " 0 1 0 0 1 0 0 0",
|
||||||
" 0 0 0 x x x x x",
|
" 0 0 0 x x x x x",
|
||||||
" x x a5 a4 a3 a2 a1 a0",
|
" x x x a4 a3 a2 a1 a0",
|
||||||
" i i i i i i i i";
|
" i i i i i i i i";
|
||||||
|
|
||||||
writepage = " 0 1 0 0 1 1 0 0",
|
writepage = " 0 1 0 0 1 1 0 0",
|
||||||
" 0 0 0 0 a11 a10 a9 a8",
|
" 0 0 0 0 a11 a10 a9 a8",
|
||||||
" a7 a6 x x x x x x",
|
" a7 a6 a5 x x x x x",
|
||||||
" x x x x x x x x";
|
" x x x x x x x x";
|
||||||
|
|
||||||
mode = 0x41;
|
mode = 0x41;
|
||||||
|
|
Loading…
Reference in New Issue