From: Hsiangkai Wang Date: Fri, 31 May 2013 03:47:22 +0000 (+0800) Subject: aice: use keep_alive() to avoid timeout warning messages X-Git-Tag: v0.8.0-rc1~287 X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=commitdiff_plain;h=ba18e3bdf204980c941629466b5344f8222d66af aice: use keep_alive() to avoid timeout warning messages As polling $dbger, call keep_alive() to avoid timeout messages. Change-Id: Ia03d90535c2bd6049763209194c21f70fd8b7e8b Signed-off-by: Hsiangkai Wang Reviewed-on: http://openocd.zylin.com/1566 Tested-by: jenkins Reviewed-by: Spencer Oliver --- diff --git a/src/jtag/aice/aice_usb.c b/src/jtag/aice/aice_usb.c index 6b2f87031f..652298559e 100644 --- a/src/jtag/aice/aice_usb.c +++ b/src/jtag/aice/aice_usb.c @@ -1490,6 +1490,9 @@ static int aice_check_dbger(uint32_t expect_status) return ERROR_OK; } + if ((i % 30) == 0) + keep_alive(); + long long then = 0; if (i == aice_count_to_check_dbger) then = timeval_ms();