Add the ATtiny11, an HVSP-only device.

git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@596 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
joerg_wunsch 2006-07-22 20:21:38 +00:00
parent e9b535423e
commit e22621d57f
2 changed files with 68 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2006-07-22 Joerg Wunsch <j@uriah.heep.sax.de>
* avrdude.conf.in: Add the ATtiny11, an HVSP-only device.
2006-07-21 Joerg Wunsch <j@uriah.heep.sax.de>
Implement STK500 (v2) HVSP mode.

View File

@ -596,6 +596,70 @@ programmer
# PART DEFINITIONS
#
#------------------------------------------------------------
# ATtiny11
#------------------------------------------------------------
# This is an HVSP-only device.
part
id = "t11";
desc = "ATtiny11";
stk500_devcode = 0x11;
signature = 0x1e 0x90 0x04;
chip_erase_delay = 20000;
timeout = 200;
hvsp_controlstack =
0x4C, 0x0C, 0x1C, 0x2C, 0x3C, 0x64, 0x74, 0x66,
0x68, 0x78, 0x68, 0x68, 0x7A, 0x6A, 0x68, 0x78,
0x78, 0x7D, 0x6D, 0x0C, 0x80, 0x40, 0x20, 0x10,
0x11, 0x08, 0x04, 0x02, 0x03, 0x08, 0x04, 0x00;
hventerstabdelay = 100;
progmodedelay = 0;
hvspcmdexedelay = 0;
synchcycles = 6;
latchcycles = 1;
togglevtg = 1;
poweroffdelay = 25;
resetdelayms = 0;
resetdelayus = 50;
hvleavestabdelay = 100;
resetdelay = 25;
chiperasepolltimeout = 40;
chiperasetime = 0;
programfusepolltimeout = 25;
programlockpolltimeout = 25;
memory "eeprom"
size = 64;
blocksize = 64;
readsize = 256;
;
memory "flash"
size = 1024;
blocksize = 128;
readsize = 256;
;
memory "signature"
size = 3;
;
memory "lock"
size = 1;
;
memory "calibration"
size = 1;
;
memory "fuse"
size = 1;
;
;
#------------------------------------------------------------
# ATtiny12
#------------------------------------------------------------