Skip to content
Snippets Groups Projects
Commit 274b3a56 authored by duane's avatar duane
Browse files

From Lou.openocd012@fixit.nospammail.net

git-svn-id: svn://svn.berlios.de/openocd/trunk@1282 b42882b7-edfa-0310-969c-e2dbd0fdcd60
parent 45e44118
Branches
No related tags found
No related merge requests found
......@@ -1001,18 +1001,29 @@ void rlink_reset(int trst, int srst)
}
usb_err = ep1_generic_commandl(
pHDev, 5,
pHDev, 6,
EP1_CMD_MEMORY_WRITE,
ST7_PADR >> 8,
ST7_PADR,
1,
bitmap
bitmap,
EP1_CMD_DTC_GET_CACHED_STATUS
);
if(usb_err < 0) {
LOG_ERROR("%s: %s\n", __func__, usb_strerror());
exit(1);
}
usb_err = usb_bulk_read(
pHDev, USB_EP1IN_ADDR,
&bitmap, 1,
USB_TIMEOUT_MS
);
if(usb_err < 1) {
LOG_ERROR("%s: %s\n", __func__, usb_strerror());
exit(1);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment