|
From: <ge...@op...> - 2015-04-21 14:37:21
|
This is an automated email from Gerrit. Paul Fertser (fer...@gm...) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/2726 -- gerrit commit 518dfbff4440f7cb1b5d430c67756076244693fb Author: Paul Fertser <fer...@gm...> Date: Tue Apr 21 17:33:57 2015 +0300 jtag/drivers/ti_icdi: use stepirq command for single-stepping This matches current STLink behaviour and "maskisr on" low-level adapter behaviour. Implementing "maskisr auto" would require more work but should be easier after ICDI and STLink code is made to behave the same. Change-Id: Ib06de5c736614b85220183920dba3fc7d0e645ce Signed-off-by: Paul Fertser <fer...@gm...> diff --git a/src/jtag/drivers/ti_icdi_usb.c b/src/jtag/drivers/ti_icdi_usb.c index 53abbfb..5b5bac9 100644 --- a/src/jtag/drivers/ti_icdi_usb.c +++ b/src/jtag/drivers/ti_icdi_usb.c @@ -457,7 +457,7 @@ static int icdi_usb_step(void *handle) int result; /* step target at current address */ - result = icdi_send_cmd(handle, "s"); + result = icdi_send_cmd(handle, "stepirq 0"); if (result != ERROR_OK) return result; -- |