This is an automated email from Gerrit. Luis Rodrigues ([email protected]) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/2238
-- gerrit commit d5d40cdb60287a060d33208cf8bc738c200b47a8 Author: Luis Rodrigues <[email protected]> Date: Sat Aug 2 17:20:46 2014 +0200 add ID for stm32f302x6x8 Change-Id: I66cd261ddddd5757a5300c5fc6611f8ce9e18eb2 Signed-off-by: [email protected] diff --git a/src/flash/nor/stm32f1x.c b/src/flash/nor/stm32f1x.c index 601417a..c6db5c8 100644 --- a/src/flash/nor/stm32f1x.c +++ b/src/flash/nor/stm32f1x.c @@ -922,6 +922,7 @@ static int stm32x_probe(struct flash_bank *bank) stm32x_info->default_rdp = 0x55AA; break; case 0x438: /* stm32f33x */ + case 0x439: /* stm32f302x4(6/8) */ page_size = 2048; stm32x_info->ppage_size = 2; max_flash_size_in_kb = 64; @@ -1194,6 +1195,10 @@ static int get_stm32x_info(struct flash_bank *bank, char *buf, int buf_size) } break; + case 0x439: + device_str = "STM32F302x4(6/8)"; + break; + case 0x444: device_str = "STM32F03x"; -- ------------------------------------------------------------------------------ Want fast and easy access to all the code in your enterprise? Index and search up to 200,000 lines of code with a free copy of Black Duck Code Sight - the same software that powers the world's largest code search on Ohloh, the Black Duck Open Hub! Try it now. http://p.sf.net/sfu/bds _______________________________________________ OpenOCD-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/openocd-devel
