Submitted by Nicolas BRULEZ
patch #8910: ATxmega32c4 and ATxmega16c4 have wrong signatures bug #41388: ATxmega32c4 and ATxmega16c4 have wrong signatures * avrdude.conf.in (ATxmega16C4, ATxmega32C4): Fix signatures git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@1416 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
parent
7140312c17
commit
7eb498992c
|
@ -1,3 +1,10 @@
|
||||||
|
2018-01-16 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
|
||||||
|
|
||||||
|
Submitted by Nicolas BRULEZ
|
||||||
|
patch #8910: ATxmega32c4 and ATxmega16c4 have wrong signatures
|
||||||
|
bug #41388: ATxmega32c4 and ATxmega16c4 have wrong signatures
|
||||||
|
* avrdude.conf.in (ATxmega16C4, ATxmega32C4): Fix signatures
|
||||||
|
|
||||||
2018-01-15 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
|
2018-01-15 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
|
||||||
|
|
||||||
Submitted by Dennis Reimers:
|
Submitted by Dennis Reimers:
|
||||||
|
|
1
NEWS
1
NEWS
|
@ -56,6 +56,7 @@ Current:
|
||||||
patch #8924: Enable TPI for usbtiny
|
patch #8924: Enable TPI for usbtiny
|
||||||
patch #9033: avrdoper backend uses libhidapi instead of libusb
|
patch #9033: avrdoper backend uses libhidapi instead of libusb
|
||||||
patch #8580: FT245r support to select device by serial number
|
patch #8580: FT245r support to select device by serial number
|
||||||
|
patch #8910: ATxmega32c4 and ATxmega16c4 have wrong signatures
|
||||||
|
|
||||||
* Internals:
|
* Internals:
|
||||||
- New avrdude.conf keyword "family_id", used to verify SIB attributes
|
- New avrdude.conf keyword "family_id", used to verify SIB attributes
|
||||||
|
|
|
@ -13766,7 +13766,7 @@ part parent ".xmega"
|
||||||
part parent "x16a4u"
|
part parent "x16a4u"
|
||||||
id = "x16c4";
|
id = "x16c4";
|
||||||
desc = "ATxmega16C4";
|
desc = "ATxmega16C4";
|
||||||
signature = 0x1e 0x95 0x44;
|
signature = 0x1e 0x94 0x43;
|
||||||
;
|
;
|
||||||
|
|
||||||
#------------------------------------------------------------
|
#------------------------------------------------------------
|
||||||
|
@ -13855,7 +13855,7 @@ part parent ".xmega"
|
||||||
part parent "x32a4u"
|
part parent "x32a4u"
|
||||||
id = "x32c4";
|
id = "x32c4";
|
||||||
desc = "ATxmega32C4";
|
desc = "ATxmega32C4";
|
||||||
signature = 0x1e 0x94 0x43;
|
signature = 0x1e 0x95 0x44;
|
||||||
;
|
;
|
||||||
|
|
||||||
#------------------------------------------------------------
|
#------------------------------------------------------------
|
||||||
|
|
Loading…
Reference in New Issue