From: Jānis Skujenieks Date: Wed, 26 Dec 2018 13:09:10 +0000 (+0200) Subject: flash/nor/nrf5: set correct timeout for nvmc operations X-Git-Tag: v0.11.0-rc1~894 X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=commitdiff_plain;h=08e64a828c10d5583162aa59266eef9507520401;ds=sidebyside flash/nor/nrf5: set correct timeout for nvmc operations Longest erase all FLASH for nRF5 series is 295.3 ms for nRF52832. Timeout period now is set to 340 ms (295.3 + 15%) Change-Id: Iae00ed7b634f111b9798db11e35e4e066d4aaa95 Signed-off-by: Jānis Skujenieks Reviewed-on: http://openocd.zylin.com/4822 Tested-by: jenkins Reviewed-by: Tomas Vanek --- diff --git a/src/flash/nor/nrf5.c b/src/flash/nor/nrf5.c index de5c230516..ba84c7156e 100644 --- a/src/flash/nor/nrf5.c +++ b/src/flash/nor/nrf5.c @@ -248,7 +248,7 @@ static int nrf5_wait_for_nvmc(struct nrf5_info *chip) { uint32_t ready; int res; - int timeout_ms = 200; + int timeout_ms = 340; int64_t ts_start = timeval_ms(); do {