From: Spencer Oliver Date: Fri, 7 Dec 2012 11:24:21 +0000 (+0000) Subject: flash: reduce stm32lx loader timeout X-Git-Tag: v0.7.0-rc1~97 X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=commitdiff_plain;h=6efcd943b28cf904362283226b3f51cf52ce3252;ds=sidebyside flash: reduce stm32lx loader timeout Waiting 20secs is a bit much excessive, we could probably reduce to 5. Change-Id: Iffb97adb99c2541a075fe78dbc88a53ddf340214 Signed-off-by: Spencer Oliver Reviewed-on: http://openocd.zylin.com/1009 Tested-by: jenkins --- diff --git a/src/flash/nor/stm32lx.c b/src/flash/nor/stm32lx.c index fddd16dc64..264a45ca6e 100644 --- a/src/flash/nor/stm32lx.c +++ b/src/flash/nor/stm32lx.c @@ -320,7 +320,7 @@ static int stm32lx_write_half_pages(struct flash_bank *bank, uint8_t *buffer, /* 5: Execute the bunch of code */ retval = target_run_algorithm(target, 0, NULL, sizeof(reg_params) / sizeof(*reg_params), reg_params, - write_algorithm->address, 0, 20000, &armv7m_info); + write_algorithm->address, 0, 10000, &armv7m_info); if (retval != ERROR_OK) break;