This is an automated email from Gerrit. "zapb <d...@zapb.de>" just uploaded a new patch set to Gerrit, which you can find at https://review.openocd.org/c/openocd/+/7390
-- gerrit commit aeb1ca08ee57404207d431d225edba275f22d05a Author: Marc Schink <d...@zapb.de> Date: Wed Dec 7 13:13:04 2022 +0100 flash/nor/stm32l4x: Add revision 'X' and 'C' for STM32U575/585 devices Change-Id: I4d950dc0a1421036418f2e5c1f0ed8eca86efc1a Signed-off-by: Marc Schink <d...@zapb.de> diff --git a/src/flash/nor/stm32l4x.c b/src/flash/nor/stm32l4x.c index 7a6ec3fd22..f1202043c5 100644 --- a/src/flash/nor/stm32l4x.c +++ b/src/flash/nor/stm32l4x.c @@ -327,6 +327,7 @@ static const struct stm32l4_rev stm32g49_g4axx_revs[] = { static const struct stm32l4_rev stm32u57_u58xx_revs[] = { { 0x1000, "A" }, { 0x1001, "Z" }, { 0x1003, "Y" }, { 0x2000, "B" }, + { 0x2001, "X" }, { 0x3000, "C" }, }; static const struct stm32l4_rev stm32wb1xx_revs[] = { --