at91samd: Add flash programming support for SAMC2?N* parts
Added id, name, flash size and RAM size for following parts to samc20_parts[]: SAMC20N18A SAMC20N17A And the following to samc21_parts[]: SAMC21N18A SAMC21N17A Change-Id: Ie8cf1c531a60bfaed6e814d436d232afb89dae3f Signed-off-by: Kevin Vermilion <kevin.vermilion@gmail.com> Reviewed-on: http://openocd.zylin.com/4880 Tested-by: jenkins Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
This commit is contained in:
parent
740c3ec238
commit
ecc2f4a694
|
@ -262,6 +262,8 @@ static const struct samd_part samc20_parts[] = {
|
|||
{ 0x0B, "SAMC20E17A", 128, 16 },
|
||||
{ 0x0C, "SAMC20E16A", 64, 8 },
|
||||
{ 0x0D, "SAMC20E15A", 32, 4 },
|
||||
{ 0x20, "SAMC20N18A", 256, 32 },
|
||||
{ 0x21, "SAMC20N17A", 128, 16 },
|
||||
};
|
||||
|
||||
/* Known SAMC21 parts. */
|
||||
|
@ -278,6 +280,8 @@ static const struct samd_part samc21_parts[] = {
|
|||
{ 0x0B, "SAMC21E17A", 128, 16 },
|
||||
{ 0x0C, "SAMC21E16A", 64, 8 },
|
||||
{ 0x0D, "SAMC21E15A", 32, 4 },
|
||||
{ 0x20, "SAMC21N18A", 256, 32 },
|
||||
{ 0x21, "SAMC21N17A", 128, 16 },
|
||||
};
|
||||
|
||||
/* Each family of parts contains a parts table in the DEVSEL field of DID. The
|
||||
|
|
Loading…
Reference in New Issue