aboutsummaryrefslogtreecommitdiff
path: root/src/flash
diff options
context:
space:
mode:
authorSpencer Oliver <spen@spen-soft.co.uk>2012-10-24 12:03:17 +0100
committerPeter Stuge <peter@stuge.se>2012-10-28 01:41:41 +0000
commit6d8a865eefa52107af029761df8b11f907d0031b (patch)
tree871214ce231b256f5d44f6e4e65719f05a7103e4 /src/flash
parentd2e8ce14789713266bb073db331870f5909dd45f (diff)
downloadriscv-openocd-6d8a865eefa52107af029761df8b11f907d0031b.zip
riscv-openocd-6d8a865eefa52107af029761df8b11f907d0031b.tar.gz
riscv-openocd-6d8a865eefa52107af029761df8b11f907d0031b.tar.bz2
flash: update stm32 flash driver versions
Seems ST have changed the ref manual (RM0313 rev1) and reverted to using letters rather than numbers for the stm32f3x family. Change-Id: I3a87ec9b0b2447d57dfef98603d30e28fe9ac927 Signed-off-by: Spencer Oliver <spen@spen-soft.co.uk> Reviewed-on: http://openocd.zylin.com/926 Tested-by: jenkins Reviewed-by: Andreas Fritiofson <andreas.fritiofson@gmail.com> Reviewed-by: Peter Stuge <peter@stuge.se>
Diffstat (limited to 'src/flash')
-rw-r--r--src/flash/nor/stm32f1x.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/flash/nor/stm32f1x.c b/src/flash/nor/stm32f1x.c
index d021bbf..cfeac6c 100644
--- a/src/flash/nor/stm32f1x.c
+++ b/src/flash/nor/stm32f1x.c
@@ -1142,11 +1142,15 @@ static int get_stm32x_info(struct flash_bank *bank, char *buf, int buf_size)
switch (device_id >> 16) {
case 0x1000:
- snprintf(buf, buf_size, "1.0");
+ snprintf(buf, buf_size, "A");
+ break;
+
+ case 0x1001:
+ snprintf(buf, buf_size, "Z");
break;
case 0x2000:
- snprintf(buf, buf_size, "2.0");
+ snprintf(buf, buf_size, "B");
break;
default:
@@ -1192,11 +1196,11 @@ static int get_stm32x_info(struct flash_bank *bank, char *buf, int buf_size)
switch (device_id >> 16) {
case 0x1000:
- snprintf(buf, buf_size, "1.0");
+ snprintf(buf, buf_size, "A");
break;
case 0x2000:
- snprintf(buf, buf_size, "2.0");
+ snprintf(buf, buf_size, "B");
break;
default: