Skip to content

Commit

Permalink
Add support for ATmega 0-series devices
Browse files Browse the repository at this point in the history
  • Loading branch information
davidflowerday committed Jan 22, 2020
1 parent 3df8515 commit 3516abb
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions devices.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,54 @@

tDevice DEVICES_List[] =
{
{
"mega480x",
0x4000,
48 * 1024,
128,
0x0F00,
0x1000,
0x1100,
0x1280,
0x1300,
11
},
{
"mega320x",
0x4000,
32 * 1024,
128,
0x0F00,
0x1000,
0x1100,
0x1280,
0x1300,
11
},
{
"mega160x",
0x4000,
16 * 1024,
64,
0x0F00,
0x1000,
0x1100,
0x1280,
0x1300,
11
},
{
"mega80x",
0x4000,
8 * 1024,
64,
0x0F00,
0x1000,
0x1100,
0x1280,
0x1300,
11
},
{
"tiny321x",
0x8000,
Expand Down

0 comments on commit 3516abb

Please sign in to comment.