Fix some mistakes for the ATtinyX61 family:
. high fuse has 8 bits . there is an extended fuse (just one bit) . the calibration area is only 1 byte git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@660 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
parent
cc44c564f8
commit
4a7c985015
|
@ -1,3 +1,10 @@
|
||||||
|
2006-09-15 Joerg Wunsch <j@uriah.heep.sax.de>
|
||||||
|
|
||||||
|
* avrdude.conf.in: Fix some mistakes for the ATtinyX61 family:
|
||||||
|
. high fuse has 8 bits
|
||||||
|
. there is an extended fuse (just one bit)
|
||||||
|
. the calibration area is only 1 byte
|
||||||
|
|
||||||
2006-09-12 Joerg Wunsch <j@uriah.heep.sax.de>
|
2006-09-12 Joerg Wunsch <j@uriah.heep.sax.de>
|
||||||
|
|
||||||
* doc/avrdude.texi: Convert some of the tables to multitables
|
* doc/avrdude.texi: Convert some of the tables to multitables
|
||||||
|
|
|
@ -6012,18 +6012,29 @@ part
|
||||||
memory "hfuse"
|
memory "hfuse"
|
||||||
size = 1;
|
size = 1;
|
||||||
write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0",
|
write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0",
|
||||||
"x x x x x x x x x x x i i i i i";
|
"x x x x x x x x i i i i i i i i";
|
||||||
|
|
||||||
read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0",
|
read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0",
|
||||||
"x x x x x x x x x x x o o o o o";
|
"x x x x x x x x o o o o o o o o";
|
||||||
|
min_write_delay = 4500;
|
||||||
|
max_write_delay = 4500;
|
||||||
|
;
|
||||||
|
|
||||||
|
memory "efuse"
|
||||||
|
size = 1;
|
||||||
|
write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0",
|
||||||
|
"x x x x x x x x x x x x x x x i";
|
||||||
|
|
||||||
|
read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0",
|
||||||
|
"x x x x x x x x x x x x x x x o";
|
||||||
min_write_delay = 4500;
|
min_write_delay = 4500;
|
||||||
max_write_delay = 4500;
|
max_write_delay = 4500;
|
||||||
;
|
;
|
||||||
|
|
||||||
memory "calibration"
|
memory "calibration"
|
||||||
size = 4;
|
size = 1;
|
||||||
read = "0 0 1 1 1 0 0 0 x x x x x x x x",
|
read = "0 0 1 1 1 0 0 0 x x x x x x x x",
|
||||||
"0 0 0 0 0 0 a1 a0 o o o o o o o o";
|
"0 0 0 0 0 0 0 0 o o o o o o o o";
|
||||||
;
|
;
|
||||||
|
|
||||||
;
|
;
|
||||||
|
@ -6185,18 +6196,29 @@ part
|
||||||
memory "hfuse"
|
memory "hfuse"
|
||||||
size = 1;
|
size = 1;
|
||||||
write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0",
|
write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0",
|
||||||
"x x x x x x x x x x x i i i i i";
|
"x x x x x x x x i i i i i i i i";
|
||||||
|
|
||||||
read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0",
|
read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0",
|
||||||
"x x x x x x x x x x x o o o o o";
|
"x x x x x x x x o o o o o o o o";
|
||||||
|
min_write_delay = 4500;
|
||||||
|
max_write_delay = 4500;
|
||||||
|
;
|
||||||
|
|
||||||
|
memory "efuse"
|
||||||
|
size = 1;
|
||||||
|
write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0",
|
||||||
|
"x x x x x x x x x x x x x x x i";
|
||||||
|
|
||||||
|
read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0",
|
||||||
|
"x x x x x x x x x x x x x x x o";
|
||||||
min_write_delay = 4500;
|
min_write_delay = 4500;
|
||||||
max_write_delay = 4500;
|
max_write_delay = 4500;
|
||||||
;
|
;
|
||||||
|
|
||||||
memory "calibration"
|
memory "calibration"
|
||||||
size = 4;
|
size = 1;
|
||||||
read = "0 0 1 1 1 0 0 0 x x x x x x x x",
|
read = "0 0 1 1 1 0 0 0 x x x x x x x x",
|
||||||
"0 0 0 0 0 0 a1 a0 o o o o o o o o";
|
"0 0 0 0 0 0 0 0 o o o o o o o o";
|
||||||
;
|
;
|
||||||
|
|
||||||
;
|
;
|
||||||
|
@ -6358,18 +6380,29 @@ part
|
||||||
memory "hfuse"
|
memory "hfuse"
|
||||||
size = 1;
|
size = 1;
|
||||||
write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0",
|
write = "1 0 1 0 1 1 0 0 1 0 1 0 1 0 0 0",
|
||||||
"x x x x x x x x x x x i i i i i";
|
"x x x x x x x x i i i i i i i i";
|
||||||
|
|
||||||
read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0",
|
read = "0 1 0 1 1 0 0 0 0 0 0 0 1 0 0 0",
|
||||||
"x x x x x x x x x x x o o o o o";
|
"x x x x x x x x o o o o o o o o";
|
||||||
|
min_write_delay = 4500;
|
||||||
|
max_write_delay = 4500;
|
||||||
|
;
|
||||||
|
|
||||||
|
memory "efuse"
|
||||||
|
size = 1;
|
||||||
|
write = "1 0 1 0 1 1 0 0 1 0 1 0 0 1 0 0",
|
||||||
|
"x x x x x x x x x x x x x x x i";
|
||||||
|
|
||||||
|
read = "0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0",
|
||||||
|
"x x x x x x x x x x x x x x x o";
|
||||||
min_write_delay = 4500;
|
min_write_delay = 4500;
|
||||||
max_write_delay = 4500;
|
max_write_delay = 4500;
|
||||||
;
|
;
|
||||||
|
|
||||||
memory "calibration"
|
memory "calibration"
|
||||||
size = 4;
|
size = 1;
|
||||||
read = "0 0 1 1 1 0 0 0 x x x x x x x x",
|
read = "0 0 1 1 1 0 0 0 x x x x x x x x",
|
||||||
"0 0 0 0 0 0 a1 a0 o o o o o o o o";
|
"0 0 0 0 0 0 0 0 o o o o o o o o";
|
||||||
;
|
;
|
||||||
|
|
||||||
;
|
;
|
||||||
|
|
Loading…
Reference in New Issue