This is an automated email from Gerrit. Spencer Oliver ([email protected]) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/577
-- gerrit commit ab27ee8d1db37c002698a13d1e3e8c025f330ccc Author: Spencer Oliver <[email protected]> Date: Thu Apr 19 14:03:32 2012 +0100 stlink: default to latest api available Change-Id: Ic04128f4020055587bb87250f41e5c804d9c2b01 Signed-off-by: Spencer Oliver <[email protected]> diff --git a/src/jtag/drivers/stlink_usb.c b/src/jtag/drivers/stlink_usb.c index caeb733..9a48a47 100644 --- a/src/jtag/drivers/stlink_usb.c +++ b/src/jtag/drivers/stlink_usb.c @@ -1193,8 +1193,8 @@ static int stlink_usb_open(struct stlink_interface_param_s *param, void **fd) return err; } - /* set the used jtag api */ - h->jtag_api = STLINK_JTAG_API_V1; + /* set the used jtag api, this will default to the newest supported version */ + h->jtag_api = h->version.jtag_api_max; /* initialize the debug hardware */ err = stlink_usb_init_mode(h); -- ------------------------------------------------------------------------------ For Developers, A Lot Can Happen In A Second. Boundary is the first to Know...and Tell You. Monitor Your Applications in Ultra-Fine Resolution. Try it FREE! http://p.sf.net/sfu/Boundary-d2dvs2 _______________________________________________ OpenOCD-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/openocd-devel
