From 6efcd943b28cf904362283226b3f51cf52ce3252 Mon Sep 17 00:00:00 2001 From: Spencer Oliver Date: Fri, 7 Dec 2012 11:24:21 +0000 Subject: [PATCH] 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 --- src/flash/nor/stm32lx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.30.2