rlink: read only the expected number of bytes

After correcting the reply size counter, it should be safe to rely on it
for the number of bytes expected in the USB read, instead of reading the
endpoint maximum. This doesn't make things go any faster but it's nicer and
removes the local buffer.

Signed-off-by: Andreas Fritiofson <andreas.fritiofson@gmail.com>
This commit is contained in:
Andreas Fritiofson 2011-07-16 23:37:40 +02:00 committed by Øyvind Harboe
parent 0b64be2019
commit f25ffaf2b2
1 changed files with 6 additions and 10 deletions

View File

@ -500,7 +500,7 @@ dtc_run_download(
uint8_t *reply_buffer, uint8_t *reply_buffer,
int reply_buffer_size int reply_buffer_size
) { ) {
uint8_t ep2_buffer[USB_EP2IN_SIZE]; char dtc_status;
int usb_err; int usb_err;
int i; int i;
@ -530,12 +530,12 @@ dtc_run_download(
usb_err = usb_bulk_read( usb_err = usb_bulk_read(
pHDev_param, pHDev_param,
USB_EP1IN_ADDR, USB_EP1IN_ADDR,
(char *)ep2_buffer, 1, &dtc_status, 1,
USB_TIMEOUT_MS USB_TIMEOUT_MS
); );
if (usb_err < 0) return(usb_err); if (usb_err < 0) return(usb_err);
if (ep2_buffer[0] & 0x01) break; if (dtc_status & 0x01) break;
if (!--i) { if (!--i) {
LOG_ERROR("too many retries waiting for DTC status"); LOG_ERROR("too many retries waiting for DTC status");
@ -544,24 +544,20 @@ dtc_run_download(
} }
if (!reply_buffer) reply_buffer_size = 0; if (reply_buffer && reply_buffer_size) {
if (reply_buffer_size) {
usb_err = usb_bulk_read( usb_err = usb_bulk_read(
pHDev_param, pHDev_param,
USB_EP2IN_ADDR, USB_EP2IN_ADDR,
(char *)ep2_buffer, sizeof(ep2_buffer), (char *)reply_buffer, reply_buffer_size,
USB_TIMEOUT_MS USB_TIMEOUT_MS
); );
if (usb_err < (int)sizeof(ep2_buffer)) { if (usb_err < reply_buffer_size) {
LOG_ERROR("Read of endpoint 2 returned %d, expected %d", LOG_ERROR("Read of endpoint 2 returned %d, expected %d",
usb_err, reply_buffer_size usb_err, reply_buffer_size
); );
return(usb_err); return(usb_err);
} }
memcpy(reply_buffer, ep2_buffer, reply_buffer_size);
} }
return(usb_err); return(usb_err);