Submitted by Martino Facchin:
bug #45727: Wrong atmega8u2 flash parameters * avrdude.conf.in (ATmega8U2): correct page and block size git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@1360 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
parent
260078ae86
commit
436a37eb5f
|
@ -1,3 +1,9 @@
|
||||||
|
2015-10-31 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
|
||||||
|
|
||||||
|
Submitted by Martino Facchin:
|
||||||
|
bug #45727: Wrong atmega8u2 flash parameters
|
||||||
|
* avrdude.conf.in (ATmega8U2): correct page and block size
|
||||||
|
|
||||||
2015-10-31 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
|
2015-10-31 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
|
||||||
|
|
||||||
Submitted by Pasquale Cocchini:
|
Submitted by Pasquale Cocchini:
|
||||||
|
|
1
NEWS
1
NEWS
|
@ -42,6 +42,7 @@ Current:
|
||||||
(patch #8529 2 more ftdi_syncbb devices)
|
(patch #8529 2 more ftdi_syncbb devices)
|
||||||
|
|
||||||
* Bugfixes
|
* Bugfixes
|
||||||
|
- bug #45727: Wrong atmega8u2 flash parameters
|
||||||
- bug #46020: Add TIAO TUMPA to the conf file.
|
- bug #46020: Add TIAO TUMPA to the conf file.
|
||||||
- bug #46021: Please add read in the memory lock section of ATtiny85
|
- bug #46021: Please add read in the memory lock section of ATtiny85
|
||||||
- bug #42337 avrdude.conf updates for UM232H/CM232H
|
- bug #42337 avrdude.conf updates for UM232H/CM232H
|
||||||
|
|
|
@ -12810,8 +12810,8 @@ part
|
||||||
memory "flash"
|
memory "flash"
|
||||||
paged = yes;
|
paged = yes;
|
||||||
size = 8192;
|
size = 8192;
|
||||||
page_size = 64;
|
page_size = 128;
|
||||||
num_pages = 128;
|
num_pages = 64;
|
||||||
min_write_delay = 4500;
|
min_write_delay = 4500;
|
||||||
max_write_delay = 4500;
|
max_write_delay = 4500;
|
||||||
readback_p1 = 0x00;
|
readback_p1 = 0x00;
|
||||||
|
@ -12843,7 +12843,7 @@ part
|
||||||
|
|
||||||
mode = 0x41;
|
mode = 0x41;
|
||||||
delay = 6;
|
delay = 6;
|
||||||
blocksize = 64;
|
blocksize = 128;
|
||||||
readsize = 256;
|
readsize = 256;
|
||||||
;
|
;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue