aboutsummaryrefslogtreecommitdiff
path: root/src/jtag/aice
diff options
context:
space:
mode:
authorHsiangkai Wang <hsiangkai@gmail.com>2013-05-31 11:47:22 +0800
committerSpencer Oliver <spen@spen-soft.co.uk>2013-09-13 19:36:00 +0000
commitba18e3bdf204980c941629466b5344f8222d66af (patch)
tree5ca1358836d40f5452e26c53020e13fab69978f8 /src/jtag/aice
parentb8a23f1c43fd87f36ce454fbc7a6ea2534dcf52d (diff)
downloadriscv-openocd-ba18e3bdf204980c941629466b5344f8222d66af.zip
riscv-openocd-ba18e3bdf204980c941629466b5344f8222d66af.tar.gz
riscv-openocd-ba18e3bdf204980c941629466b5344f8222d66af.tar.bz2
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 <hsiangkai@gmail.com> Reviewed-on: http://openocd.zylin.com/1566 Tested-by: jenkins Reviewed-by: Spencer Oliver <spen@spen-soft.co.uk>
Diffstat (limited to 'src/jtag/aice')
-rw-r--r--src/jtag/aice/aice_usb.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/jtag/aice/aice_usb.c b/src/jtag/aice/aice_usb.c
index 6b2f870..6522985 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();