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>
This commit is contained in:
Spencer Oliver 2012-10-24 12:03:17 +01:00 committed by Peter Stuge
parent d2e8ce1478
commit 6d8a865eef
1 changed files with 8 additions and 4 deletions

View File

@ -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: