This is an automated email from Gerrit. "Michael Schwingen <[email protected]>" just uploaded a new patch set to Gerrit, which you can find at https://review.openocd.org/c/openocd/+/6544
-- gerrit commit 127ee4d7aa373cf1d6eda454b9bfb489fc12d707 Author: Michael Schwingen <[email protected]> Date: Sun Sep 5 20:34:07 2021 +0200 update STM32F030 strings (according to RM0360) Signed-off-by: Michael Schwingen <[email protected]> Change-Id: I0277ce461d8e770fe9a3ed794c139b69298a6106 diff --git a/src/flash/nor/stm32f1x.c b/src/flash/nor/stm32f1x.c index 650b771fd..669761472 100644 --- a/src/flash/nor/stm32f1x.c +++ b/src/flash/nor/stm32f1x.c @@ -1193,17 +1193,17 @@ static int get_stm32x_info(struct flash_bank *bank, struct command_invocation *c break; case 0x444: - device_str = "STM32F03x"; + device_str = "STM32F03x4/STM32F03x6"; rev_str = get_stm32f0_revision(rev_id); break; case 0x440: - device_str = "STM32F05x"; + device_str = "STM32F03x8/STM32F05x"; rev_str = get_stm32f0_revision(rev_id); break; case 0x445: - device_str = "STM32F04x"; + device_str = "STM32F04x/STM32F070x6"; rev_str = get_stm32f0_revision(rev_id); break; @@ -1217,12 +1217,12 @@ static int get_stm32x_info(struct flash_bank *bank, struct command_invocation *c break; case 0x448: - device_str = "STM32F07x"; + device_str = "STM32F07xB"; rev_str = get_stm32f0_revision(rev_id); break; case 0x442: - device_str = "STM32F09x"; + device_str = "STM32F030xB/STM32F09x"; rev_str = get_stm32f0_revision(rev_id); break; --
