From: Uwe Bonnes Date: Fri, 21 Nov 2014 12:21:04 +0000 (+0100) Subject: flash/nor/stm32f1: Add handling of stm32f09, nearly same as stm32f07. X-Git-Tag: v0.9.0-rc1~189 X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=commitdiff_plain;h=43aadbf5dc2bc703dbb03ae9fbe67a57f8571bbc;ds=inline flash/nor/stm32f1: Add handling of stm32f09, nearly same as stm32f07. Change-Id: I9cb2aa75decca0e8a065fe7f5353de44d6877274 Signed-off-by: Uwe Bonnes Reviewed-on: http://openocd.zylin.com/2394 Tested-by: jenkins Reviewed-by: Spencer Oliver --- diff --git a/src/flash/nor/stm32f1x.c b/src/flash/nor/stm32f1x.c index c9757d8f1b..a2bd2a2b08 100644 --- a/src/flash/nor/stm32f1x.c +++ b/src/flash/nor/stm32f1x.c @@ -948,6 +948,14 @@ static int stm32x_probe(struct flash_bank *bank) stm32x_info->option_offset = 6; stm32x_info->default_rdp = 0x55AA; break; + case 0x442: /* stm32f09x */ + page_size = 2048; + stm32x_info->ppage_size = 4; + max_flash_size_in_kb = 256; + stm32x_info->user_data_offset = 16; + stm32x_info->option_offset = 6; + stm32x_info->default_rdp = 0x55AA; + break; default: LOG_WARNING("Cannot identify target as a STM32 family."); return ERROR_FAIL;