Subversion Repositories HomeAutomation

Rev

Rev 1667 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | SVN | RSS feed

Rev 1667 Rev 1668
Line 1... Line 1...
1
#              device name   high    low     ext     boot start protocol device name
1
#              device name   high    low     ext     boot start
2
my @device0 = ('unknown',    '',     '',     '',     '',        'N/A');
2
my @device0 = ('unknown',    '',     '',     '',     '',     );
3
my @device1 = ('atmega8',    '0xd4', '0x24', '',     '0x1e00',  'mega8');
3
my @device1 = ('atmega8',    '0xd4', '0x24', '',     '0x1e00');
4
my @device2 = ('atmega48',   '',     '',     '',     '',        'mega48');
4
my @device2 = ('atmega48',   '',     '',     '',     '',     );
5
my @device3 = ('atmega88',   '0xdc', '0xe2', '0x04', '0x1e00',  'mega88');
5
my @device3 = ('atmega88',   '0xdc', '0xe2', '0x04', '0x1e00');
6
my @device4 = ('atmega168',  '0xdc', '0xe2', '0x02', '0x3c00',  'mega168');
6
my @device4 = ('atmega168',  '0xdc', '0xe2', '0x02', '0x3c00');
7
my @device5 = ('atmega328p', '0xdc', '0xe2', '0x04', '0x7c00',  'mega328');
7
my @device5 = ('atmega328p', '0xdc', '0xe2', '0x04', '0x7c00');
8
 
8
 
9
@devices = (\@device0, \@device1, \@device2, \@device3, \@device4, \@device5);
9
@devices = (\@device0, \@device1, \@device2, \@device3, \@device4, \@device5);
10
 
10