Correct the pagesize of the ATmega324 from 256 to 128.
This closes bug #16410: ATMega164/324/644 cannot be programmed git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@617 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
parent
b4b3e1d5b8
commit
80bd4a0b1c
|
@ -1,3 +1,9 @@
|
||||||
|
2006-08-21 Joerg Wunsch <j@uriah.heep.sax.de>
|
||||||
|
|
||||||
|
* avrdude.conf.in (ATmega324): Correct the pagesize from 256 to
|
||||||
|
128.
|
||||||
|
This closes bug #16410: ATMega164/324/644 cannot be programmed
|
||||||
|
|
||||||
2006-08-20 Joerg Wunsch <j@uriah.heep.sax.de>
|
2006-08-20 Joerg Wunsch <j@uriah.heep.sax.de>
|
||||||
|
|
||||||
* configure.ac: Check for gettimeofday().
|
* configure.ac: Check for gettimeofday().
|
||||||
|
|
|
@ -3134,8 +3134,8 @@ part
|
||||||
memory "flash"
|
memory "flash"
|
||||||
paged = yes;
|
paged = yes;
|
||||||
size = 32768;
|
size = 32768;
|
||||||
page_size = 256;
|
page_size = 128;
|
||||||
num_pages = 128;
|
num_pages = 256;
|
||||||
min_write_delay = 4500;
|
min_write_delay = 4500;
|
||||||
max_write_delay = 4500;
|
max_write_delay = 4500;
|
||||||
readback_p1 = 0xff;
|
readback_p1 = 0xff;
|
||||||
|
@ -3152,17 +3152,17 @@ part
|
||||||
|
|
||||||
loadpage_lo = " 0 1 0 0 0 0 0 0",
|
loadpage_lo = " 0 1 0 0 0 0 0 0",
|
||||||
" 0 0 x x x x x x",
|
" 0 0 x x x x x x",
|
||||||
" x a6 a5 a4 a3 a2 a1 a0",
|
" x x a5 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 x x x x x x",
|
" 0 0 x x x x x x",
|
||||||
" x a6 a5 a4 a3 a2 a1 a0",
|
" x x a5 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 a14 a13 a12 a11 a10 a9 a8",
|
" 0 a14 a13 a12 a11 a10 a9 a8",
|
||||||
" a7 x x x x x x x",
|
" a7 a6 x x x x x x",
|
||||||
" x x x x x x x x";
|
" x x x x x x x x";
|
||||||
|
|
||||||
mode = 0x21;
|
mode = 0x21;
|
||||||
|
|
Loading…
Reference in New Issue