From: Juha Niskanen Date: Tue, 25 Apr 2017 06:07:58 +0000 (+0300) Subject: stm32l4: support flashing L496 devices X-Git-Tag: v0.11.0-rc1~1407 X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=commitdiff_plain;h=99db18a995c8ef2913f1397dcc94d0533331e598;ds=sidebyside stm32l4: support flashing L496 devices Change-Id: I3effc5b675c853433170391c5eaf46edc067b6e7 Signed-off-by: Juha Niskanen Reviewed-on: http://openocd.zylin.com/4108 Tested-by: jenkins Reviewed-by: Freddie Chopin --- diff --git a/src/flash/nor/stm32l4x.c b/src/flash/nor/stm32l4x.c index 762df74daf..db68539165 100644 --- a/src/flash/nor/stm32l4x.c +++ b/src/flash/nor/stm32l4x.c @@ -614,6 +614,7 @@ static int stm32l4_probe(struct flash_bank *bank) /* set max flash size depending on family */ switch (device_id & 0xfff) { + case 0x461: case 0x415: max_flash_size_in_kb = 1024; break; @@ -716,8 +717,12 @@ static int get_stm32l4_info(struct flash_bank *bank, char *buf, int buf_size) const char *device_str; switch (device_id) { + case 0x461: + device_str = "STM32L496/4A6"; + break; + case 0x415: - device_str = "STM32L4xx"; + device_str = "STM32L475/476/486"; break; case 0x435: