This is an automated email from Gerrit. "Giuseppe Iannello <giuseppe.ianne...@brokenloop.net>" just uploaded a new patch set to Gerrit, which you can find at https://review.openocd.org/c/openocd/+/7417
-- gerrit commit cf88134f830553f0e2b59d2735bade0ca669211b Author: Giuseppe Iannello <giuseppe.ianne...@brokenloop.net> Date: Fri Dec 23 14:01:52 2022 +0100 flash/nor/numicro: add NUC123SD4AE support Add new device ID Signed-off-by: Giuseppe Iannello <giuseppe.ianne...@brokenloop.net> Change-Id: I0a10377e46c1b8496f902962391f5d002b6433d9 diff --git a/src/flash/nor/numicro.c b/src/flash/nor/numicro.c index 1a73eb26d0..db7c77cd32 100644 --- a/src/flash/nor/numicro.c +++ b/src/flash/nor/numicro.c @@ -1019,6 +1019,7 @@ static const struct numicro_cpu_type numicro_parts[] = { /* NUC103/NUC105/NUC123 */ {"NUC123SC2AN" , 0x00012305, NUMICRO_BANKS_NUC100(36*1024)}, {"NUC123SD4AN" , 0x00012315, NUMICRO_BANKS_NUC100(68*1024)}, + {"NUC123SD4AE" , 0x10012315, NUMICRO_BANKS_NUC100(68*1024)}, {"NUC123LC2AN" , 0x00012325, NUMICRO_BANKS_NUC100(36*1024)}, {"NUC103LC2AN" , 0x00010325, NUMICRO_BANKS_NUC100(36*1024)}, {"NUC105LC2AN" , 0x00010525, NUMICRO_BANKS_NUC100(36*1024)}, --