Submitted by Pasquale Cocchini:
bug #46021: Please add read in the memory lock section of ATtiny85 * avrdude.conf.in (ATtiny25/45/85): add read pattern for lock bits git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@1358 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
parent
4c36ad97c2
commit
3519f359cf
|
@ -1,3 +1,9 @@
|
||||||
|
2015-10-31 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
|
||||||
|
|
||||||
|
Submitted by Pasquale Cocchini:
|
||||||
|
bug #46021: Please add read in the memory lock section of ATtiny85
|
||||||
|
* avrdude.conf.in (ATtiny25/45/85): add read pattern for lock bits
|
||||||
|
|
||||||
2015-10-31 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
|
2015-10-31 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
|
||||||
|
|
||||||
* Makefile.am (libavrdude_a_SOURCES): reflect recent changes
|
* Makefile.am (libavrdude_a_SOURCES): reflect recent changes
|
||||||
|
|
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 #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
|
||||||
- bug #42056: double free or corruption triggered at exit
|
- bug #42056: double free or corruption triggered at exit
|
||||||
- bug #42158: Linux GPIO - Source Typo
|
- bug #42158: Linux GPIO - Source Typo
|
||||||
|
|
|
@ -9369,6 +9369,8 @@ part
|
||||||
size = 1;
|
size = 1;
|
||||||
write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x",
|
write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x",
|
||||||
"x x x x x x x x 1 1 i i i i i i";
|
"x x x x x x x x 1 1 i i i i i i";
|
||||||
|
read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0",
|
||||||
|
"0 0 0 0 0 0 0 0 o o o o o o o o";
|
||||||
min_write_delay = 9000;
|
min_write_delay = 9000;
|
||||||
max_write_delay = 9000;
|
max_write_delay = 9000;
|
||||||
;
|
;
|
||||||
|
@ -9550,6 +9552,8 @@ part
|
||||||
size = 1;
|
size = 1;
|
||||||
write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x",
|
write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x",
|
||||||
"x x x x x x x x 1 1 i i i i i i";
|
"x x x x x x x x 1 1 i i i i i i";
|
||||||
|
read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0",
|
||||||
|
"0 0 0 0 0 0 0 0 o o o o o o o o";
|
||||||
min_write_delay = 9000;
|
min_write_delay = 9000;
|
||||||
max_write_delay = 9000;
|
max_write_delay = 9000;
|
||||||
;
|
;
|
||||||
|
@ -9732,6 +9736,8 @@ part
|
||||||
size = 1;
|
size = 1;
|
||||||
write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x",
|
write = "1 0 1 0 1 1 0 0 1 1 1 x x x x x",
|
||||||
"x x x x x x x x 1 1 i i i i i i";
|
"x x x x x x x x 1 1 i i i i i i";
|
||||||
|
read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0",
|
||||||
|
"0 0 0 0 0 0 0 0 o o o o o o o o";
|
||||||
min_write_delay = 9000;
|
min_write_delay = 9000;
|
||||||
max_write_delay = 9000;
|
max_write_delay = 9000;
|
||||||
;
|
;
|
||||||
|
|
Loading…
Reference in New Issue