This is an automated email from Gerrit.

Peter Kuhar (pe...@pkuhar.com) just uploaded a new patch set to Gerrit, which 
you can find at http://openocd.zylin.com/3732

-- gerrit

commit 618608081c239b9733a5039e59fffc0c2f659942
Author: Peter Kuhar <pe...@pkuhar.com>
Date:   Sat Sep 3 11:27:28 2016 -0700

    STM32L433 Flash support
    
    Added new chip id based flash size.
    
    Change-Id: I5b5e71074af0e50352443f66f88adfc6e14280bf
    Signed-off-by: Peter Kuhar <pe...@pkuhar.com>

diff --git a/src/flash/nor/stm32l4x.c b/src/flash/nor/stm32l4x.c
index 129b281..d109a67 100644
--- a/src/flash/nor/stm32l4x.c
+++ b/src/flash/nor/stm32l4x.c
@@ -617,6 +617,9 @@ static int stm32l4_probe(struct flash_bank *bank)
        case 0x415:
                max_flash_size_in_kb = 1024;
                break;
+       case 0x435:
+               max_flash_size_in_kb = 256;
+               break;
        default:
                LOG_WARNING("Cannot identify target as a STM32L4 family.");
                return ERROR_FAIL;
@@ -717,6 +720,10 @@ static int get_stm32l4_info(struct flash_bank *bank, char 
*buf, int buf_size)
                device_str = "STM32L4xx";
                break;
 
+       case 0x6435:
+               device_str = "STM32L43x";
+               break;
+
        default:
                snprintf(buf, buf_size, "Cannot identify target as a 
STM32L4\n");
                return ERROR_FAIL;

-- 

------------------------------------------------------------------------------
_______________________________________________
OpenOCD-devel mailing list
OpenOCD-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/openocd-devel

Reply via email to