Rev 1640 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | SVN | RSS feed
| Rev 1640 | Rev 1667 | ||
|---|---|---|---|
| Line 1... | Line 1... | ||
| 1 | # device name high low ext boot start |
1 | # device name high low ext boot start protocol device name |
| 2 | my @device0 = ('unknown', '', '', '', '' ); |
2 | my @device0 = ('unknown', '', '', '', '', 'N/A'); |
| 3 | my @device1 = ('atmega8', '0xd4', '0x24', '', '0x1e00'); |
3 | my @device1 = ('atmega8', '0xd4', '0x24', '', '0x1e00', 'mega8'); |
| 4 | my @device2 = ('atmega48', '', '' |
4 | my @device2 = ('atmega48', '', '', '', '', 'mega48'); |
| 5 | my @device3 = ('atmega88', '0xdc', '0xe2', '0x04', '0x1e00'); |
5 | my @device3 = ('atmega88', '0xdc', '0xe2', '0x04', '0x1e00', 'mega88'); |
| 6 | my @device4 = ('atmega168', '0xdc', '0xe2', '0x02', '0x3c00'); |
6 | my @device4 = ('atmega168', '0xdc', '0xe2', '0x02', '0x3c00', 'mega168'); |
| 7 | my @device5 = ('atmega328p', '0xdc', '0xe2', '0x04', '0x7c00'); |
7 | my @device5 = ('atmega328p', '0xdc', '0xe2', '0x04', '0x7c00', 'mega328'); |
| 8 | 8 | ||
| 9 | @devices = (\@device0, \@device1, \@device2, \@device3, \@device4, \@device5); |
9 | @devices = (\@device0, \@device1, \@device2, \@device3, \@device4, \@device5); |
| 10 | 10 | ||