aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Hoffmann <jehoffma@gmail.com>2014-03-09 10:42:09 +0100
committerSpencer Oliver <spen@spen-soft.co.uk>2014-03-17 12:47:44 +0000
commit6bc7ddeffd194444f9bae0d18a5bce8fa39d672f (patch)
treef8da87dfbc3c6812e86718533999020ef9e5f903
parent565f8481c7b71614a05d79ab79af8610d2535a81 (diff)
stm32f2x.c: Add STM32F401xE device id.
Nucleo F401 board uses STM32F401RE chip with new device id and got more flash than existing devices (512K). This patch adds new the identifier to probe functions so flashing will now work. Change-Id: Ibe9c047c79244db0cfbb06610da9d84987b9f85a Signed-off-by: Jens Hoffmann <jehoffma@gmail.com> Reviewed-on: http://openocd.zylin.com/2037 Tested-by: jenkins Reviewed-by: Andrey Yurovsky <yurovsky@gmail.com> Reviewed-by: Spencer Oliver <spen@spen-soft.co.uk>
-rw-r--r--src/flash/nor/stm32f2x.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/flash/nor/stm32f2x.c b/src/flash/nor/stm32f2x.c
index 41973e65..eab19348 100644
--- a/src/flash/nor/stm32f2x.c
+++ b/src/flash/nor/stm32f2x.c
@@ -779,6 +779,9 @@ static int stm32x_probe(struct flash_bank *bank)
case 0x423:
max_flash_size_in_kb = 256;
break;
+ case 0x433:
+ max_flash_size_in_kb = 512;
+ break;
default:
LOG_WARNING("Cannot identify target as a STM32 family.");
return ERROR_FAIL;
@@ -927,6 +930,7 @@ static int get_stm32x_info(struct flash_bank *bank, char *buf, int buf_size)
break;
case 0x423:
+ case 0x433:
device_str = "STM32F4xx (Low Power)";
switch (rev_id) {