bug #40782: Verify errors for object size > 16 k on x32e5 due
to typo in avrdude.conf * avrdude.conf.in (ATmega8E5, ATmega32E5): fix boot location git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@1289 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
parent
e4abb62ddb
commit
b9420a9831
|
@ -1,3 +1,9 @@
|
|||
2014-03-12 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
|
||||
|
||||
bug #40782: Verify errors for object size > 16 k on x32e5 due
|
||||
to typo in avrdude.conf
|
||||
* avrdude.conf.in (ATmega8E5, ATmega32E5): fix boot location
|
||||
|
||||
2014-02-28 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
|
||||
|
||||
* avrdude.conf.in (atmelice, atmelice_pdi, atmelice_dw, atmelice_isp):
|
||||
|
|
5
NEWS
5
NEWS
|
@ -21,8 +21,11 @@ Current:
|
|||
* Bugfixes
|
||||
- bug #40055: AVRDUDE segfaults when writing eeprom
|
||||
- bug #40085: Typo fix in fuses report (for 6.1-svn-20130917)
|
||||
- bug #40782: Verify errors for object size > 16 k on x32e5 due
|
||||
to typo in avrdude.conf
|
||||
- bug #40817: Elf file support (possibly) not working on 6.0.1 windows build
|
||||
- bug #40897: AT Mega2560 not correctly programmed with stk500(v1) ISP (solution patch)
|
||||
- bug #40897: AT Mega2560 not correctly programmed with stk500(v1)
|
||||
ISP (solution patch)
|
||||
- bug #41357: OS X: Avrdude messes with the usb stack?
|
||||
- bug #41402: dfu.c missing include <stdint.h>
|
||||
- patch #7896: DFU FLIPv2 programming support
|
||||
|
|
|
@ -14233,7 +14233,7 @@ part parent ".xmega"
|
|||
|
||||
memory "boot"
|
||||
size = 0x800;
|
||||
offset = 0x00804000;
|
||||
offset = 0x00802000;
|
||||
page_size = 0x80;
|
||||
readsize = 0x100;
|
||||
;
|
||||
|
@ -14337,7 +14337,7 @@ part parent ".xmega"
|
|||
|
||||
memory "boot"
|
||||
size = 0x1000;
|
||||
offset = 0x00804000;
|
||||
offset = 0x00808000;
|
||||
page_size = 0x80;
|
||||
readsize = 0x100;
|
||||
;
|
||||
|
|
Loading…
Reference in New Issue