From: Attila Kinali Date: Tue, 28 Feb 2012 08:50:09 +0000 (+0100) Subject: SAM3: Add missing architecture names for SAM3S and SAM3N X-Git-Tag: v0.6.0-rc1~204 X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=commitdiff_plain;h=9e137265dead421d0a783a899535be2de89af818 SAM3: Add missing architecture names for SAM3S and SAM3N Change-Id: Ie2177487d4315219eb364db360cb7f88d2720783 Signed-off-by: Attila Kinali Reviewed-on: http://openocd.zylin.com/494 Tested-by: jenkins Reviewed-by: Spencer Oliver --- diff --git a/src/flash/nor/at91sam3.c b/src/flash/nor/at91sam3.c index dbfda3de2d..fe40e90428 100644 --- a/src/flash/nor/at91sam3.c +++ b/src/flash/nor/at91sam3.c @@ -1836,6 +1836,13 @@ static const struct archnames { unsigned value; const char *name; } archnames[] { 0x89, "ATSAM3SxB Series (64-pin version)" }, { 0x8A, "ATSAM3SxC Series (100-pin version)" }, { 0x92, "AT91x92 Series" }, + { 0x93, "ATSAM3NxA Series (48-pin version)" }, + { 0x94, "ATSAM3NxB Series (64-pin version)" }, + { 0x95, "ATSAM3NxC Series (100-pin version)" }, + { 0x98, "ATSAM3SDxA Series (48-pin version)" }, + { 0x99, "ATSAM3SDxB Series (64-pin version)" }, + { 0x9A, "ATSAM3SDxC Series (100-pin version)" }, + { 0xA5, "ATSAM5A" }, { 0xF0, "AT75Cxx Series" }, { -1, NULL }, };