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/+/7196
-- gerrit commit b51c235e4f464db5813c4a9d2ef6d094dfe576e8 Author: Marc Schink <d...@zapb.de> Date: Thu Sep 15 08:56:27 2022 +0200 flash/nor/stm32lx: Add revision 'X' for Cat.4/3 devices Change-Id: I18c62ddb3963c357c7ce5dfc067c8d63fbc82b99 Signed-off-by: Marc Schink <d...@zapb.de> diff --git a/src/flash/nor/stm32lx.c b/src/flash/nor/stm32lx.c index d7a83efa6c..64073c31ca 100644 --- a/src/flash/nor/stm32lx.c +++ b/src/flash/nor/stm32lx.c @@ -141,7 +141,7 @@ static const struct stm32lx_rev stm32_429_revs[] = { { 0x1000, "A" }, { 0x1018, "Z" }, }; static const struct stm32lx_rev stm32_436_revs[] = { - { 0x1000, "A" }, { 0x1008, "Z" }, { 0x1018, "Y" }, + { 0x1000, "A" }, { 0x1008, "Z" }, { 0x1018, "Y" }, { 0x1038, "X" }, }; static const struct stm32lx_rev stm32_437_revs[] = { { 0x1000, "A" }, --