From 2e6ba2093588536214edd0da0cf09eaa9a9da014 Mon Sep 17 00:00:00 2001 From: Jonas Norling Date: Wed, 22 Jan 2014 21:48:35 +0100 Subject: [PATCH] Correct address for STM32F2 flash size register There was a typo in the flash size register address for STM32F2. Change to correct address. Verified against STM32F207 reference manual (RM0033 Rev 5 section 33.2), and an STM32F217 chip. --- src/stlink-common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stlink-common.h b/src/stlink-common.h index 5796228..ee16d5a 100644 --- a/src/stlink-common.h +++ b/src/stlink-common.h @@ -161,7 +161,7 @@ static const chip_params_t devices[] = { { // table 1, PM0059 .chip_id = STM32_CHIPID_F2, .description = "F2 device", - .flash_size_reg = 0x1ff7a22, /* RM0033 sind Rev 4*/ + .flash_size_reg = 0x1fff7a22, /* As in RM0033 Rev 5*/ .flash_pagesize = 0x20000, .sram_size = 0x20000, .bootrom_base = 0x1fff0000, -- 2.39.5