948 lines
35 KiB
Plaintext
948 lines
35 KiB
Plaintext
# $Id$
|
|
#
|
|
# AVRPROG Configuration File
|
|
#
|
|
# This file contains configuration data used by AVRPROG which describes
|
|
# the programming hardware pinouts and also provides part definitions.
|
|
# AVRPROG's "-C" command line option specifies the location of the
|
|
# configuration file. The "-c" option names the programmer configuration
|
|
# which must match one of the entry's "id" parameter. The "-p" option
|
|
# identifies which part AVRPROG is going to be programming and must match
|
|
# one of the parts' "id" parameter.
|
|
#
|
|
# Possible entry formats are:
|
|
#
|
|
# programmer
|
|
# id = <id1> [, <id2> [, <id3>] ...] ; # <idN> are quoted strings
|
|
# desc = <description> ; # quoted string
|
|
# vcc = <num1> [, <num2> ... ] ; # pin number(s)
|
|
# reset = <num> ; # pin number
|
|
# sck = <num> ; # pin number
|
|
# mosi = <num> ; # pin number
|
|
# miso = <num> ; # pin number
|
|
# errled = <num> ; # pin number
|
|
# rdyled = <num> ; # pin number
|
|
# pgmled = <num> ; # pin number
|
|
# vfyled = <num> ; # pin number
|
|
# ;
|
|
#
|
|
# part
|
|
# id = <id> ; # quoted string
|
|
# desc = <description> ; # quoted string
|
|
# chip_erase_delay = <num> ; # micro-seconds
|
|
# pgm_enable = <instruction format> ;
|
|
# chip_erase = <instruction format> ;
|
|
# memory <memtype>
|
|
# paged = <yes/no> ; # yes / no
|
|
# size = <num> ; # bytes
|
|
# page_size = <num> ; # bytes
|
|
# num_pages = <num> ; # numeric
|
|
# min_write_delay = <num> ; # micro-seconds
|
|
# max_write_delay = <num> ; # micro-seconds
|
|
# readback_p1 = <num> ; # byte value
|
|
# readback_p2 = <num> ; # byte value
|
|
# read = <instruction format> ;
|
|
# write = <instruction format> ;
|
|
# read_lo = <instruction format> ;
|
|
# read_hi = <instruction format> ;
|
|
# write_lo = <instruction format> ;
|
|
# write_hi = <instruction format> ;
|
|
# loadpage_lo = <instruction format> ;
|
|
# loadpage_hi = <instruction format> ;
|
|
# writepage = <instruction format> ;
|
|
# ;
|
|
# ;
|
|
#
|
|
# If any of the above parameters are not specified, the default value
|
|
# of 0 is used for numerics or the empty string ("") for string
|
|
# values. If a required parameter is left empty, AVRPROG will
|
|
# complain.
|
|
#
|
|
# NOTES:
|
|
# * Not all memory types will implement all instructions.
|
|
# * AVR Fuse bits and Lock bits are implemented as a type of memory.
|
|
# * Example memory types are:
|
|
# "flash", "eeprom", "fuse", "lfuse" (low fuse), "hfuse" (high
|
|
# fuse), "signature", "calibration", "lock"
|
|
# * The memory type specified on the avrprog command line must match
|
|
# one of the memory types defined for the specified chip.
|
|
#
|
|
# INSTRUCTION FORMATS
|
|
#
|
|
# Instruction formats are specified as a comma seperated list of
|
|
# string values containing information (bit specifiers) about each
|
|
# of the 32 bits of the instruction. Bit specifiers may be one of
|
|
# the following formats:
|
|
#
|
|
# '1' = the bit is always set on input as well as output
|
|
#
|
|
# '0' = the bit is always clear on input as well as output
|
|
#
|
|
# 'x' = the bit is ignored on input and output
|
|
#
|
|
# 'a' = the bit is an address bit, the bit-number matches this bit
|
|
# specifier's position within the current instruction byte
|
|
#
|
|
# 'aN' = the bit is the Nth address bit, bit-number = N, i.e., a12
|
|
# is address bit 12 on input, a0 is address bit 0.
|
|
#
|
|
# 'i' = the bit is an input data bit
|
|
#
|
|
# 'o' = the bit is an output data bit
|
|
#
|
|
# Each instruction must be composed of 32 bit specifiers. The
|
|
# instruction specification closely follows the instruction data
|
|
# provided in Atmel's data sheets for their parts.
|
|
#
|
|
# See below for some examples.
|
|
#
|
|
|
|
programmer
|
|
id = "bsd", "default";
|
|
desc = "Brian Dean's Programmer";
|
|
vcc = 2, 3, 4, 5;
|
|
reset = 7;
|
|
sck = 8;
|
|
mosi = 9;
|
|
miso = 10;
|
|
;
|
|
|
|
programmer
|
|
id = "stk200";
|
|
desc = "STK200";
|
|
buff = 4, 5;
|
|
sck = 6;
|
|
mosi = 7;
|
|
reset = 9;
|
|
miso = 10;
|
|
;
|
|
|
|
programmer
|
|
id = "dt006";
|
|
desc = "Dontronics DT006";
|
|
reset = 4;
|
|
sck = 5;
|
|
mosi = 2;
|
|
miso = 11;
|
|
;
|
|
|
|
programmer
|
|
id = "alf";
|
|
desc = "Tony Friebel's Programmer";
|
|
vcc = 2, 3, 4, 5;
|
|
buff = 6;
|
|
reset = 7;
|
|
sck = 8;
|
|
mosi = 9;
|
|
miso = 10;
|
|
errled = 1;
|
|
rdyled = 14;
|
|
pgmled = 16;
|
|
vfyled = 17;
|
|
;
|
|
|
|
# The AVR3 board does not drive the clock on the AVR. You must use a
|
|
# cable that does not pass through pin 5 of the parallel port, and you
|
|
# add a clock signal to the board at pin 3 of P1 or pin 3 of J2.
|
|
programmer
|
|
id = "avr3";
|
|
desc = "AVR3 (disconnect pin 5 - see config file for details)";
|
|
reset = 6;
|
|
sck = 8;
|
|
mosi = 7;
|
|
miso = 10;
|
|
;
|
|
|
|
|
|
|
|
|
|
part
|
|
id = "1200";
|
|
desc = "AT90S1200";
|
|
chip_erase_delay = 20000;
|
|
pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1",
|
|
"x x x x x x x x x x x x x x x x";
|
|
|
|
chip_erase = "1 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0",
|
|
"x x x x x x x x x x x x x x x x";
|
|
|
|
memory "eeprom"
|
|
size = 64;
|
|
min_write_delay = 9000;
|
|
max_write_delay = 20000;
|
|
readback_p1 = 0x00;
|
|
readback_p2 = 0xff;
|
|
read = "1 0 1 0 0 0 0 0 x x x x x x x x",
|
|
"x x a5 a4 a3 a2 a1 a0 o o o o o o o o";
|
|
|
|
write = "1 1 0 0 0 0 0 0 x x x x x x x x",
|
|
"x x a5 a4 a3 a2 a1 a0 i i i i i i i i";
|
|
;
|
|
memory "flash"
|
|
size = 1024;
|
|
min_write_delay = 9000;
|
|
max_write_delay = 20000;
|
|
readback_p1 = 0xff;
|
|
readback_p2 = 0x00;
|
|
read_lo = " 0 0 1 0 0 0 0 0",
|
|
" x x x x x x x a8",
|
|
" a7 a6 a5 a4 a3 a2 a1 a0",
|
|
" o o o o o o o o";
|
|
|
|
read_hi = " 0 0 1 0 1 0 0 0",
|
|
" x x x x x x x a8",
|
|
" a7 a6 a5 a4 a3 a2 a1 a0",
|
|
" o o o o o o o o";
|
|
|
|
write_lo = " 0 1 0 0 0 0 0 0",
|
|
" x x x x x x x a8",
|
|
" a7 a6 a5 a4 a3 a2 a1 a0",
|
|
" i i i i i i i i";
|
|
|
|
write_hi = " 0 1 0 0 1 0 0 0",
|
|
" x x x x x x x a8",
|
|
" a7 a6 a5 a4 a3 a2 a1 a0",
|
|
" i i i i i i i i";
|
|
;
|
|
memory "signature"
|
|
size = 3;
|
|
read = "0 0 1 1 0 0 0 0 x x x x x x x x",
|
|
"x x x x x x a1 a0 o o o o o o o o";
|
|
;
|
|
memory "fuse"
|
|
size = 1;
|
|
min_write_delay = 9000;
|
|
max_write_delay = 20000;
|
|
read = "0 1 0 1 0 0 0 0 x x x x x x x x",
|
|
"x x x x x x x x x x o o o o o o";
|
|
|
|
write = "1 0 1 0 1 1 0 0 1 0 1 i i i i i",
|
|
"x x x x x x x x x x x x x x x x";
|
|
;
|
|
memory "lock"
|
|
size = 1;
|
|
min_write_delay = 9000;
|
|
max_write_delay = 20000;
|
|
read = "0 1 0 1 1 0 0 0 x x x x x x x x",
|
|
"x x x x x x x x x x x x x o o x";
|
|
|
|
write = "1 0 1 0 1 1 0 0 1 1 1 1 1 i i 1",
|
|
"x x x x x x x x x x x x x x x x";
|
|
;
|
|
;
|
|
|
|
|
|
part
|
|
id = "4414";
|
|
desc = "AT90S4414";
|
|
chip_erase_delay = 20000;
|
|
pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1",
|
|
"x x x x x x x x x x x x x x x x";
|
|
|
|
chip_erase = "1 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0",
|
|
"x x x x x x x x x x x x x x x x";
|
|
|
|
memory "eeprom"
|
|
size = 256;
|
|
min_write_delay = 9000;
|
|
max_write_delay = 20000;
|
|
readback_p1 = 0x80;
|
|
readback_p2 = 0x7f;
|
|
read = " 1 0 1 0 0 0 0 0 x x x x x x x a8",
|
|
"a7 a6 a5 a4 a3 a2 a1 a0 o o o o o o o o";
|
|
|
|
write = " 1 1 0 0 0 0 0 0 x x x x x x x a8",
|
|
"a7 a6 a5 a4 a3 a2 a1 a0 i i i i i i i i";
|
|
;
|
|
memory "flash"
|
|
size = 4096;
|
|
min_write_delay = 9000;
|
|
max_write_delay = 20000;
|
|
readback_p1 = 0x7f;
|
|
readback_p2 = 0x00;
|
|
read_lo = " 0 0 1 0 0 0 0 0",
|
|
" x x x x a11 a10 a9 a8",
|
|
" a7 a6 a5 a4 a3 a2 a1 a0",
|
|
" o o o o o o o o";
|
|
|
|
read_hi = " 0 0 1 0 1 0 0 0",
|
|
" x x x x a11 a10 a9 a8",
|
|
" a7 a6 a5 a4 a3 a2 a1 a0",
|
|
" o o o o o o o o";
|
|
|
|
write_lo = " 0 1 0 0 0 0 0 0",
|
|
" x x x x a11 a10 a9 a8",
|
|
" a7 a6 a5 a4 a3 a2 a1 a0",
|
|
" i i i i i i i i";
|
|
|
|
write_hi = " 0 1 0 0 1 0 0 0",
|
|
" x x x x a11 a10 a9 a8",
|
|
" a7 a6 a5 a4 a3 a2 a1 a0",
|
|
" i i i i i i i i";
|
|
;
|
|
memory "signature"
|
|
size = 3;
|
|
read = "0 0 1 1 0 0 0 0 x x x x x x x x",
|
|
"x x x x x x a1 a0 o o o o o o o o";
|
|
;
|
|
;
|
|
|
|
|
|
part
|
|
id = "2313";
|
|
desc = "AT90S2313";
|
|
chip_erase_delay = 20000;
|
|
pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1",
|
|
"x x x x x x x x x x x x x x x x";
|
|
|
|
chip_erase = "1 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0",
|
|
"x x x x x x x x x x x x x x x x";
|
|
|
|
memory "eeprom"
|
|
size = 128;
|
|
min_write_delay = 9000;
|
|
max_write_delay = 20000;
|
|
readback_p1 = 0x80;
|
|
readback_p2 = 0x7f;
|
|
read = "1 0 1 0 0 0 0 0 x x x x x x x x",
|
|
"x a6 a5 a4 a3 a2 a1 a0 o o o o o o o o";
|
|
|
|
write = "1 1 0 0 0 0 0 0 x x x x x x x x",
|
|
"x a6 a5 a4 a3 a2 a1 a0 i i i i i i i i";
|
|
;
|
|
memory "flash"
|
|
size = 2048;
|
|
min_write_delay = 9000;
|
|
max_write_delay = 20000;
|
|
readback_p1 = 0x7f;
|
|
readback_p2 = 0x00;
|
|
read_lo = " 0 0 1 0 0 0 0 0",
|
|
" x x x x x x a9 a8",
|
|
" a7 a6 a5 a4 a3 a2 a1 a0",
|
|
" o o o o o o o o";
|
|
|
|
read_hi = " 0 0 1 0 1 0 0 0",
|
|
" x x x x x x a9 a8",
|
|
" a7 a6 a5 a4 a3 a2 a1 a0",
|
|
" o o o o o o o o";
|
|
|
|
write_lo = " 0 1 0 0 0 0 0 0",
|
|
" x x x x x x a9 a8",
|
|
" a7 a6 a5 a4 a3 a2 a1 a0",
|
|
" i i i i i i i i";
|
|
|
|
write_hi = " 0 1 0 0 1 0 0 0",
|
|
" x x x x x x a9 a8",
|
|
" a7 a6 a5 a4 a3 a2 a1 a0",
|
|
" i i i i i i i i";
|
|
;
|
|
memory "signature"
|
|
size = 3;
|
|
read = "0 0 1 1 0 0 0 0 x x x x x x x x",
|
|
"x x x x x x a1 a0 o o o o o o o o";
|
|
;
|
|
memory "lock"
|
|
size = 1;
|
|
write = "1 0 1 0 1 1 0 0 1 1 1 x x i i x",
|
|
"x x x x x x x x x x x x x x x x";
|
|
;
|
|
;
|
|
|
|
|
|
part
|
|
id = "2333";
|
|
desc = "AT90S2333";
|
|
chip_erase_delay = 20000;
|
|
pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1",
|
|
"x x x x x x x x x x x x x x x x";
|
|
|
|
chip_erase = "1 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0",
|
|
"x x x x x x x x x x x x x x x x";
|
|
|
|
memory "eeprom"
|
|
size = 128;
|
|
min_write_delay = 9000;
|
|
max_write_delay = 20000;
|
|
readback_p1 = 0x00;
|
|
readback_p2 = 0xff;
|
|
read = "1 0 1 0 0 0 0 0 x x x x x x x x",
|
|
"x a6 a5 a4 a3 a2 a1 a0 o o o o o o o o";
|
|
|
|
write = "1 1 0 0 0 0 0 0 x x x x x x x x",
|
|
"x a6 a5 a4 a3 a2 a1 a0 i i i i i i i i";
|
|
;
|
|
memory "flash"
|
|
size = 2048;
|
|
min_write_delay = 9000;
|
|
max_write_delay = 20000;
|
|
readback_p1 = 0xff;
|
|
readback_p2 = 0x00;
|
|
read_lo = " 0 0 1 0 0 0 0 0",
|
|
" x x x x x x a9 a8",
|
|
" a7 a6 a5 a4 a3 a2 a1 a0",
|
|
" o o o o o o o o";
|
|
|
|
read_hi = " 0 0 1 0 1 0 0 0",
|
|
" x x x x x x a9 a8",
|
|
" a7 a6 a5 a4 a3 a2 a1 a0",
|
|
" o o o o o o o o";
|
|
|
|
write_lo = " 0 1 0 0 0 0 0 0",
|
|
" x x x x x x a9 a8",
|
|
" a7 a6 a5 a4 a3 a2 a1 a0",
|
|
" i i i i i i i i";
|
|
|
|
write_hi = " 0 1 0 0 1 0 0 0",
|
|
" x x x x x x a9 a8",
|
|
" a7 a6 a5 a4 a3 a2 a1 a0",
|
|
" i i i i i i i i";
|
|
;
|
|
memory "signature"
|
|
size = 3;
|
|
read = "0 0 1 1 0 0 0 0 x x x x x x x x",
|
|
"x x x x x x a1 a0 o o o o o o o o";
|
|
;
|
|
memory "fuse"
|
|
size = 1;
|
|
min_write_delay = 9000;
|
|
max_write_delay = 20000;
|
|
read = "0 1 0 1 0 0 0 0 x x x x x x x x",
|
|
"x x x x x x x x x x o o o o o o";
|
|
|
|
write = "1 0 1 0 1 1 0 0 1 0 1 i i i i i",
|
|
"x x x x x x x x x x x x x x x x";
|
|
|
|
pwroff_after_write = 1;
|
|
;
|
|
memory "lock"
|
|
size = 1;
|
|
min_write_delay = 9000;
|
|
max_write_delay = 20000;
|
|
read = "0 1 0 1 1 0 0 0 x x x x x x x x",
|
|
"x x x x x x x x x x x x x o o x";
|
|
|
|
write = "1 0 1 0 1 1 0 0 1 1 1 1 1 i i 1",
|
|
"x x x x x x x x x x x x x x x x";
|
|
;
|
|
;
|
|
|
|
|
|
part
|
|
id = "4433";
|
|
desc = "AT90S4433";
|
|
chip_erase_delay = 20000;
|
|
pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1",
|
|
"x x x x x x x x x x x x x x x x";
|
|
|
|
chip_erase = "1 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0",
|
|
"x x x x x x x x x x x x x x x x";
|
|
|
|
memory "eeprom"
|
|
size = 256;
|
|
min_write_delay = 9000;
|
|
max_write_delay = 20000;
|
|
readback_p1 = 0x00;
|
|
readback_p2 = 0xff;
|
|
read = " 1 0 1 0 0 0 0 0 x x x x x x x x",
|
|
"a7 a6 a5 a4 a3 a2 a1 a0 o o o o o o o o";
|
|
|
|
write = " 1 1 0 0 0 0 0 0 x x x x x x x x",
|
|
"a7 a6 a5 a4 a3 a2 a1 a0 i i i i i i i i";
|
|
;
|
|
memory "flash"
|
|
size = 4096;
|
|
min_write_delay = 9000;
|
|
max_write_delay = 20000;
|
|
readback_p1 = 0xff;
|
|
readback_p2 = 0x00;
|
|
read_lo = " 0 0 1 0 0 0 0 0",
|
|
" x x x x x a10 a9 a8",
|
|
" a7 a6 a5 a4 a3 a2 a1 a0",
|
|
" o o o o o o o o";
|
|
|
|
read_hi = " 0 0 1 0 1 0 0 0",
|
|
" x x x x x a10 a9 a8",
|
|
" a7 a6 a5 a4 a3 a2 a1 a0",
|
|
" o o o o o o o o";
|
|
|
|
write_lo = " 0 1 0 0 0 0 0 0",
|
|
" x x x x x a10 a9 a8",
|
|
" a7 a6 a5 a4 a3 a2 a1 a0",
|
|
" i i i i i i i i";
|
|
|
|
write_hi = " 0 1 0 0 1 0 0 0",
|
|
" x x x x x a10 a9 a8",
|
|
" a7 a6 a5 a4 a3 a2 a1 a0",
|
|
" i i i i i i i i";
|
|
;
|
|
memory "signature"
|
|
size = 3;
|
|
read = "0 0 1 1 0 0 0 0 x x x x x x x x",
|
|
"x x x x x x a1 a0 o o o o o o o o";
|
|
;
|
|
memory "fuse"
|
|
size = 1;
|
|
min_write_delay = 9000;
|
|
max_write_delay = 20000;
|
|
read = "0 1 0 1 0 0 0 0 x x x x x x x x",
|
|
"x x x x x x x x x x o o o o o o";
|
|
|
|
write = "1 0 1 0 1 1 0 0 1 0 1 i i i i i",
|
|
"x x x x x x x x x x x x x x x x";
|
|
|
|
pwroff_after_write = 1;
|
|
;
|
|
memory "lock"
|
|
size = 1;
|
|
min_write_delay = 9000;
|
|
max_write_delay = 20000;
|
|
read = "0 1 0 1 1 0 0 0 x x x x x x x x",
|
|
"x x x x x x x x x x x x x o o x";
|
|
|
|
write = "1 0 1 0 1 1 0 0 1 1 1 1 1 i i 1",
|
|
"x x x x x x x x x x x x x x x x";
|
|
;
|
|
;
|
|
|
|
|
|
part
|
|
id = "4434";
|
|
desc = "AT90S4434";
|
|
chip_erase_delay = 20000;
|
|
pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1",
|
|
"x x x x x x x x x x x x x x x x";
|
|
|
|
chip_erase = "1 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0",
|
|
"x x x x x x x x x x x x x x x x";
|
|
|
|
memory "eeprom"
|
|
size = 256;
|
|
min_write_delay = 9000;
|
|
max_write_delay = 20000;
|
|
readback_p1 = 0x00;
|
|
readback_p2 = 0xff;
|
|
read = " 1 0 1 0 0 0 0 0 x x x x x x x x",
|
|
"a7 a6 a5 a4 a3 a2 a1 a0 o o o o o o o o";
|
|
|
|
write = " 1 1 0 0 0 0 0 0 x x x x x x x x",
|
|
"a7 a6 a5 a4 a3 a2 a1 a0 i i i i i i i i";
|
|
;
|
|
memory "flash"
|
|
size = 4096;
|
|
min_write_delay = 9000;
|
|
max_write_delay = 20000;
|
|
readback_p1 = 0xff;
|
|
readback_p2 = 0x00;
|
|
read_lo = " 0 0 1 0 0 0 0 0",
|
|
" x x x x x a10 a9 a8",
|
|
" a7 a6 a5 a4 a3 a2 a1 a0",
|
|
" o o o o o o o o";
|
|
|
|
read_hi = " 0 0 1 0 1 0 0 0",
|
|
" x x x x x a10 a9 a8",
|
|
" a7 a6 a5 a4 a3 a2 a1 a0",
|
|
" o o o o o o o o";
|
|
|
|
write_lo = " 0 1 0 0 0 0 0 0",
|
|
" x x x x x a10 a9 a8",
|
|
" a7 a6 a5 a4 a3 a2 a1 a0",
|
|
" i i i i i i i i";
|
|
|
|
write_hi = " 0 1 0 0 1 0 0 0",
|
|
" x x x x x a10 a9 a8",
|
|
" a7 a6 a5 a4 a3 a2 a1 a0",
|
|
" i i i i i i i i";
|
|
;
|
|
memory "signature"
|
|
size = 3;
|
|
read = "0 0 1 1 0 0 0 0 x x x x x x x x",
|
|
"x x x x x x a1 a0 o o o o o o o o";
|
|
;
|
|
memory "fuse"
|
|
size = 1;
|
|
min_write_delay = 9000;
|
|
max_write_delay = 20000;
|
|
read = "0 1 0 1 0 0 0 0 x x x x x x x x",
|
|
"x x x x x x x x x x o o o o o o";
|
|
|
|
write = "1 0 1 0 1 1 0 0 1 0 1 i i i i i",
|
|
"x x x x x x x x x x x x x x x x";
|
|
;
|
|
memory "lock"
|
|
size = 1;
|
|
min_write_delay = 9000;
|
|
max_write_delay = 20000;
|
|
read = "0 1 0 1 1 0 0 0 x x x x x x x x",
|
|
"x x x x x x x x x x x x x o o x";
|
|
|
|
write = "1 0 1 0 1 1 0 0 1 1 1 1 1 i i 1",
|
|
"x x x x x x x x x x x x x x x x";
|
|
;
|
|
;
|
|
|
|
|
|
part
|
|
id = "8515";
|
|
desc = "AT90S8515";
|
|
chip_erase_delay = 20000;
|
|
pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1",
|
|
"x x x x x x x x x x x x x x x x";
|
|
|
|
chip_erase = "1 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0",
|
|
"x x x x x x x x x x x x x x x x";
|
|
|
|
memory "eeprom"
|
|
size = 512;
|
|
min_write_delay = 9000;
|
|
max_write_delay = 20000;
|
|
readback_p1 = 0x80;
|
|
readback_p2 = 0x7f;
|
|
read = " 1 0 1 0 0 0 0 0 x x x x x x x a8",
|
|
"a7 a6 a5 a4 a3 a2 a1 a0 o o o o o o o o";
|
|
|
|
write = " 1 1 0 0 0 0 0 0 x x x x x x x a8",
|
|
"a7 a6 a5 a4 a3 a2 a1 a0 i i i i i i i i";
|
|
;
|
|
memory "flash"
|
|
size = 8192;
|
|
min_write_delay = 9000;
|
|
max_write_delay = 20000;
|
|
readback_p1 = 0x7f;
|
|
readback_p2 = 0x00;
|
|
read_lo = " 0 0 1 0 0 0 0 0",
|
|
" x x x x a11 a10 a9 a8",
|
|
" a7 a6 a5 a4 a3 a2 a1 a0",
|
|
" o o o o o o o o";
|
|
|
|
read_hi = " 0 0 1 0 1 0 0 0",
|
|
" x x x x a11 a10 a9 a8",
|
|
" a7 a6 a5 a4 a3 a2 a1 a0",
|
|
" o o o o o o o o";
|
|
|
|
write_lo = " 0 1 0 0 0 0 0 0",
|
|
" x x x x a11 a10 a9 a8",
|
|
" a7 a6 a5 a4 a3 a2 a1 a0",
|
|
" i i i i i i i i";
|
|
|
|
write_hi = " 0 1 0 0 1 0 0 0",
|
|
" x x x x a11 a10 a9 a8",
|
|
" a7 a6 a5 a4 a3 a2 a1 a0",
|
|
" i i i i i i i i";
|
|
;
|
|
memory "signature"
|
|
size = 3;
|
|
read = "0 0 1 1 0 0 0 0 x x x x x x x x",
|
|
"x x x x x x a1 a0 o o o o o o o o";
|
|
;
|
|
memory "fuse"
|
|
size = 1;
|
|
read = "0 1 0 1 1 0 0 0 x x x x x x x x",
|
|
"x x x x x x x x x x x x x x x o";
|
|
write = "1 0 1 0 1 1 0 0 1 0 1 1 1 1 1 i",
|
|
"x x x x x x x x x x x x x x x x";
|
|
;
|
|
memory "lock"
|
|
size = 1;
|
|
read = "0 1 0 1 1 0 0 0 x x x x x x x x",
|
|
"x x x x x x x x o o x x x x x x";
|
|
write = "1 0 1 0 1 1 0 0 1 1 1 1 1 i i 1",
|
|
"x x x x x x x x x x x x x x x x";
|
|
;
|
|
;
|
|
|
|
|
|
part
|
|
id = "8535";
|
|
desc = "AT90S8535";
|
|
chip_erase_delay = 20000;
|
|
pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1",
|
|
"x x x x x x x x x x x x x x x x";
|
|
|
|
chip_erase = "1 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0",
|
|
"x x x x x x x x x x x x x x x x";
|
|
|
|
memory "eeprom"
|
|
size = 512;
|
|
min_write_delay = 9000;
|
|
max_write_delay = 20000;
|
|
readback_p1 = 0x00;
|
|
readback_p2 = 0xff;
|
|
read = " 1 0 1 0 0 0 0 0 x x x x x x x a8",
|
|
"a7 a6 a5 a4 a3 a2 a1 a0 o o o o o o o o";
|
|
|
|
write = " 1 1 0 0 0 0 0 0 x x x x x x x a8",
|
|
"a7 a6 a5 a4 a3 a2 a1 a0 i i i i i i i i";
|
|
;
|
|
memory "flash"
|
|
size = 8192;
|
|
min_write_delay = 9000;
|
|
max_write_delay = 20000;
|
|
readback_p1 = 0xff;
|
|
readback_p2 = 0x00;
|
|
read_lo = " 0 0 1 0 0 0 0 0",
|
|
" x x x x a11 a10 a9 a8",
|
|
" a7 a6 a5 a4 a3 a2 a1 a0",
|
|
" o o o o o o o o";
|
|
|
|
read_hi = " 0 0 1 0 1 0 0 0",
|
|
" x x x x a11 a10 a9 a8",
|
|
" a7 a6 a5 a4 a3 a2 a1 a0",
|
|
" o o o o o o o o";
|
|
|
|
write_lo = " 0 1 0 0 0 0 0 0",
|
|
" x x x x a11 a10 a9 a8",
|
|
" a7 a6 a5 a4 a3 a2 a1 a0",
|
|
" i i i i i i i i";
|
|
|
|
write_hi = " 0 1 0 0 1 0 0 0",
|
|
" x x x x a11 a10 a9 a8",
|
|
" a7 a6 a5 a4 a3 a2 a1 a0",
|
|
" i i i i i i i i";
|
|
;
|
|
memory "signature"
|
|
size = 3;
|
|
read = "0 0 1 1 0 0 0 0 x x x x x x x x",
|
|
"x x x x x x a1 a0 o o o o o o o o";
|
|
;
|
|
;
|
|
|
|
|
|
part
|
|
id = "m103";
|
|
desc = "ATMEGA103";
|
|
chip_erase_delay = 112000;
|
|
pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1",
|
|
"x x x x x x x x x x x x x x x x";
|
|
|
|
chip_erase = "1 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0",
|
|
"x x x x x x x x x x x x x x x x";
|
|
|
|
memory "eeprom"
|
|
size = 4096;
|
|
min_write_delay = 4000;
|
|
max_write_delay = 9000;
|
|
readback_p1 = 0x00;
|
|
readback_p2 = 0xff;
|
|
read = " 1 0 1 0 0 0 0 0",
|
|
" x x x x a11 a10 a9 a8",
|
|
" a7 a6 a5 a4 a3 a2 a1 a0",
|
|
" o o o o o o o o";
|
|
|
|
write = " 1 1 0 0 0 0 0 0",
|
|
" x x x x a11 a10 a9 a8",
|
|
" a7 a6 a5 a4 a3 a2 a1 a0",
|
|
" i i i i i i i i";
|
|
;
|
|
memory "flash"
|
|
paged = yes;
|
|
size = 131072;
|
|
page_size = 256;
|
|
num_pages = 512;
|
|
min_write_delay = 22000;
|
|
max_write_delay = 56000;
|
|
readback_p1 = 0xff;
|
|
readback_p2 = 0x00;
|
|
;
|
|
memory "signature"
|
|
size = 3;
|
|
read = "0 0 1 1 0 0 0 0 x x x x x x x x",
|
|
"x x x x x x a1 a0 o o o o o o o o";
|
|
;
|
|
;
|
|
|
|
|
|
part
|
|
id = "m16";
|
|
desc = "ATMEGA16";
|
|
chip_erase_delay = 9000;
|
|
pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1",
|
|
"x x x x x x x x x x x x x x x x";
|
|
|
|
chip_erase = "1 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0",
|
|
"x x x x x x x x x x x x x x x x";
|
|
|
|
memory "eeprom"
|
|
size = 512;
|
|
min_write_delay = 9000;
|
|
max_write_delay = 9000;
|
|
readback_p1 = 0xff;
|
|
readback_p2 = 0xff;
|
|
read = " 1 0 1 0 0 0 0 0",
|
|
" x x x x x x x a8",
|
|
" a7 a6 a5 a4 a3 a2 a1 a0",
|
|
" o o o o o o o o";
|
|
|
|
write = " 1 1 0 0 0 0 0 0",
|
|
" x x x x x x x a8",
|
|
" a7 a6 a5 a4 a3 a2 a1 a0",
|
|
" i i i i i i i i";
|
|
;
|
|
memory "flash"
|
|
paged = yes;
|
|
size = 16384;
|
|
page_size = 128;
|
|
num_pages = 128;
|
|
min_write_delay = 4500;
|
|
max_write_delay = 9000;
|
|
readback_p1 = 0xff;
|
|
readback_p2 = 0xff;
|
|
;
|
|
memory "signature"
|
|
size = 3;
|
|
read = "0 0 1 1 0 0 0 0 x x x x x x x x",
|
|
"x x x x x x a1 a0 o o o o o o o o";
|
|
;
|
|
;
|
|
|
|
|
|
|
|
#------------------------------------------------------------
|
|
# ATMega163
|
|
#------------------------------------------------------------
|
|
part
|
|
id = "m163";
|
|
desc = "ATMEGA163";
|
|
chip_erase_delay = 32000;
|
|
pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1",
|
|
"x x x x x x x x x x x x x x x x";
|
|
|
|
chip_erase = "1 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0",
|
|
"x x x x x x x x x x x x x x x x";
|
|
memory "eeprom"
|
|
size = 512;
|
|
min_write_delay = 4000;
|
|
max_write_delay = 4000;
|
|
readback_p1 = 0xff;
|
|
readback_p2 = 0xff;
|
|
read = " 1 0 1 0 0 0 0 0",
|
|
" x x x x x x x a8",
|
|
" a7 a6 a5 a4 a3 a2 a1 a0",
|
|
" o o o o o o o o";
|
|
|
|
write = " 1 1 0 0 0 0 0 0",
|
|
" x x x x x x x a8",
|
|
" a7 a6 a5 a4 a3 a2 a1 a0",
|
|
" i i i i i i i i";
|
|
;
|
|
memory "flash"
|
|
paged = yes;
|
|
size = 16384;
|
|
page_size = 128;
|
|
num_pages = 128;
|
|
min_write_delay = 16000;
|
|
max_write_delay = 16000;
|
|
readback_p1 = 0xff;
|
|
readback_p2 = 0xff;
|
|
read_lo = " 0 0 1 0 0 0 0 0",
|
|
" x x x a12 a11 a10 a9 a8",
|
|
" a7 a6 a5 a4 a3 a2 a1 a0",
|
|
" o o o o o o o o";
|
|
|
|
read_hi = " 0 0 1 0 1 0 0 0",
|
|
" x x x a12 a11 a10 a9 a8",
|
|
" a7 a6 a5 a4 a3 a2 a1 a0",
|
|
" o o o o o o o o";
|
|
|
|
loadpage_lo = " 0 1 0 0 0 0 0 0",
|
|
" x x x x x x x x",
|
|
" x x a5 a4 a3 a2 a1 a0",
|
|
" i i i i i i i i";
|
|
|
|
loadpage_hi = " 0 1 0 0 1 0 0 0",
|
|
" x x x x x x x x",
|
|
" x x a5 a4 a3 a2 a1 a0",
|
|
" i i i i i i i i";
|
|
|
|
writepage = " 0 1 0 0 1 1 0 0",
|
|
" x x x a12 a11 a10 a9 a8",
|
|
" a7 a6 x x x x x x",
|
|
" x x x x x x x x";
|
|
;
|
|
memory "lfuse"
|
|
size = 1;
|
|
min_write_delay = 2000;
|
|
max_write_delay = 2000;
|
|
read = "0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0",
|
|
"x x x x x x x x o o x x o o o o";
|
|
|
|
write = "1 0 1 0 1 1 0 0 1 0 1 0 0 0 0 0",
|
|
"x x x x x x x x i i 1 1 i i i i";
|
|
;
|
|
memory "hfuse"
|
|
size = 1;
|
|
min_write_delay = 2000;
|
|
max_write_delay = 2000;
|
|
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 x 1 o o o";
|
|
|
|
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 1 1 1 1 1 i i i";
|
|
;
|
|
memory "lock"
|
|
size = 1;
|
|
min_write_delay = 2000;
|
|
max_write_delay = 2000;
|
|
read = "0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0",
|
|
"x x x x 0 x x x x x o o o o o o";
|
|
|
|
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";
|
|
;
|
|
memory "signature"
|
|
size = 3;
|
|
read = "0 0 1 1 0 0 0 0 x x x x x x x x",
|
|
"x x x x x x a1 a0 o o o o o o o o";
|
|
;
|
|
memory "calibration"
|
|
size = 1;
|
|
read = "0 0 1 1 1 0 0 0 x x x x x x x x",
|
|
"0 0 0 0 0 0 0 0 o o o o o o o o";
|
|
;
|
|
;
|
|
|
|
|
|
|
|
part
|
|
id = "m8";
|
|
desc = "ATMEGA8";
|
|
chip_erase_delay = 9000;
|
|
pgm_enable = "1 0 1 0 1 1 0 0 0 1 0 1 0 0 1 1",
|
|
"x x x x x x x x x x x x x x x x";
|
|
|
|
chip_erase = "1 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0",
|
|
"x x x x x x x x x x x x x x x x";
|
|
|
|
memory "eeprom"
|
|
size = 512;
|
|
min_write_delay = 9000;
|
|
max_write_delay = 9000;
|
|
readback_p1 = 0xff;
|
|
readback_p2 = 0xff;
|
|
read = " 1 0 1 0 0 0 0 0",
|
|
" x x x x x x x a8",
|
|
" a7 a6 a5 a4 a3 a2 a1 a0",
|
|
" o o o o o o o o";
|
|
|
|
write = " 1 1 0 0 0 0 0 0",
|
|
" x x x x x x x a8",
|
|
" a7 a6 a5 a4 a3 a2 a1 a0",
|
|
" i i i i i i i i";
|
|
;
|
|
memory "flash"
|
|
paged = yes;
|
|
size = 8192;
|
|
page_size = 64;
|
|
num_pages = 128;
|
|
min_write_delay = 4500;
|
|
max_write_delay = 9000;
|
|
readback_p1 = 0xff;
|
|
readback_p2 = 0xff;
|
|
;
|
|
memory "signature"
|
|
size = 3;
|
|
read = "0 0 1 1 0 0 0 0 x x x x x x x x",
|
|
"x x x x x x a1 a0 o o o o o o o o";
|
|
;
|
|
;
|
|
|