Skip to content

Commit

Permalink
Merge pull request #2 from davidf560/mega0_support
Browse files Browse the repository at this point in the history
Add support for ATmega 0-series devices
  • Loading branch information
Polarisru committed Jan 22, 2020
2 parents 3df8515 + 3516abb commit 3741ea7
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 3741ea7

Please sign in to comment.