Compare commits
3 Commits
Author | SHA1 | Date |
---|---|---|
Joerg Wunsch | 57ac257fe3 | |
Joerg Wunsch | 978347abea | |
Joerg Wunsch | 0176e378b9 |
|
@ -1,3 +1,7 @@
|
||||||
|
2014-03-12 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
|
||||||
|
|
||||||
|
* configure.ac (AC_INIT): Bump version to 6.1.
|
||||||
|
|
||||||
2014-03-12 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
|
2014-03-12 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
|
||||||
|
|
||||||
* pgm.c (pgm_free): Cleanup police: destroy the p->usbpid
|
* pgm.c (pgm_free): Cleanup police: destroy the p->usbpid
|
|
@ -10,9 +10,6 @@ Current:
|
||||||
* Major changes compared to the previous version:
|
* Major changes compared to the previous version:
|
||||||
- Atmel EDBG protocol support added (JTAGICE3, XplainedPro, Atmel-ICE)
|
- Atmel EDBG protocol support added (JTAGICE3, XplainedPro, Atmel-ICE)
|
||||||
|
|
||||||
* New devices supported:
|
|
||||||
- ...
|
|
||||||
|
|
||||||
* New programmers supported:
|
* New programmers supported:
|
||||||
- Atmel DFU, using FLIP protocol version 1 (AT90USB and ATmega*U* devices),
|
- Atmel DFU, using FLIP protocol version 1 (AT90USB and ATmega*U* devices),
|
||||||
or version 2 (Xmega devices)
|
or version 2 (Xmega devices)
|
||||||
|
@ -32,7 +29,7 @@ Current:
|
||||||
- patch #XXXX: xxx
|
- patch #XXXX: xxx
|
||||||
|
|
||||||
* Internals:
|
* Internals:
|
||||||
- ...
|
- (Some) programmers can take a list of USB PIDs now.
|
||||||
|
|
||||||
|
|
||||||
Version 6.0:
|
Version 6.0:
|
|
@ -23,7 +23,7 @@
|
||||||
# Process this file with autoconf to produce a configure script.
|
# Process this file with autoconf to produce a configure script.
|
||||||
|
|
||||||
AC_PREREQ(2.60)
|
AC_PREREQ(2.60)
|
||||||
AC_INIT(avrdude, 6.1-svn-20140226, avrdude-dev@nongnu.org)
|
AC_INIT(avrdude, 6.1, avrdude-dev@nongnu.org)
|
||||||
|
|
||||||
AC_CANONICAL_BUILD
|
AC_CANONICAL_BUILD
|
||||||
AC_CANONICAL_HOST
|
AC_CANONICAL_HOST
|
|
@ -141,7 +141,6 @@ PROGRAMMER * pgm_new(void)
|
||||||
void pgm_free(PROGRAMMER * const p)
|
void pgm_free(PROGRAMMER * const p)
|
||||||
{
|
{
|
||||||
ldestroy_cb(p->id, free);
|
ldestroy_cb(p->id, free);
|
||||||
ldestroy_cb(p->usbpid, free);
|
|
||||||
p->id = NULL;
|
p->id = NULL;
|
||||||
/* this is done by pgm_teardown, but usually cookie is not set to NULL */
|
/* this is done by pgm_teardown, but usually cookie is not set to NULL */
|
||||||
/* if (p->cookie !=NULL) {
|
/* if (p->cookie !=NULL) {
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue