X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=blobdiff_plain;f=src%2Fflash%2Fnor%2Fstm32f1x.c;h=a2bd2a2b08624cefb507d9965a990c40c9f78f6e;hp=c9757d8f1b00f2161b0bd3c293956e5f0caff27a;hb=43aadbf5dc2bc703dbb03ae9fbe67a57f8571bbc;hpb=1663a17d9d5f5988a8d129a6da36ebcf728d79a2 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;