git-svn-id: svn://svn.berlios.de/openocd/trunk@1282 b42882b7-edfa-0310-969c-e2dbd0fdcd60
__archive__
duane 2008-12-27 03:13:50 +00:00
parent 45e44118a8
commit 274b3a56ef
1 changed files with 13 additions and 2 deletions

View File

@ -1001,18 +1001,29 @@ void rlink_reset(int trst, int srst)
} }
usb_err = ep1_generic_commandl( usb_err = ep1_generic_commandl(
pHDev, 5, pHDev, 6,
EP1_CMD_MEMORY_WRITE, EP1_CMD_MEMORY_WRITE,
ST7_PADR >> 8, ST7_PADR >> 8,
ST7_PADR, ST7_PADR,
1, 1,
bitmap bitmap,
EP1_CMD_DTC_GET_CACHED_STATUS
); );
if(usb_err < 0) { if(usb_err < 0) {
LOG_ERROR("%s: %s\n", __func__, usb_strerror()); LOG_ERROR("%s: %s\n", __func__, usb_strerror());
exit(1); 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);
}
} }