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:
joerg_wunsch 2006-08-21 19:09:32 +00:00
parent b4b3e1d5b8
commit 80bd4a0b1c
2 changed files with 11 additions and 5 deletions

View File

@ -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>
* configure.ac: Check for gettimeofday().

View File

@ -3134,8 +3134,8 @@ part
memory "flash"
paged = yes;
size = 32768;
page_size = 256;
num_pages = 128;
page_size = 128;
num_pages = 256;
min_write_delay = 4500;
max_write_delay = 4500;
readback_p1 = 0xff;
@ -3152,17 +3152,17 @@ part
loadpage_lo = " 0 1 0 0 0 0 0 0",
" 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";
loadpage_hi = " 0 1 0 0 1 0 0 0",
" 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";
writepage = " 0 1 0 0 1 1 0 0",
" 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";
mode = 0x21;