rlink: read only the expected number of bytes
authorAndreas Fritiofson <andreas.fritiofson@gmail.com>
Sat, 16 Jul 2011 21:37:40 +0000 (23:37 +0200)
committerØyvind Harboe <oyvind.harboe@zylin.com>
Wed, 10 Aug 2011 04:52:09 +0000 (06:52 +0200)
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>
src/jtag/drivers/rlink.c

index ebdc6a986d2ea059c26d6474d91dcc89f1f2545c..f524b5c9c3fd088e1bb59f1e2bac3b33417041ce 100644 (file)
@@ -500,7 +500,7 @@ dtc_run_download(
                uint8_t *reply_buffer,
                int     reply_buffer_size
 ) {
-       uint8_t ep2_buffer[USB_EP2IN_SIZE];
+       char dtc_status;
        int     usb_err;
        int     i;
 
@@ -530,12 +530,12 @@ dtc_run_download(
                usb_err = usb_bulk_read(
                                pHDev_param,
                                USB_EP1IN_ADDR,
-                               (char *)ep2_buffer, 1,
+                               &dtc_status, 1,
                                USB_TIMEOUT_MS
                );
                if (usb_err < 0) return(usb_err);
 
-               if (ep2_buffer[0] & 0x01) break;
+               if (dtc_status & 0x01) break;
 
                if (!--i) {
                        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_size) {
+       if (reply_buffer && reply_buffer_size) {
                usb_err = usb_bulk_read(
                                pHDev_param,
                                USB_EP2IN_ADDR,
-                               (char *)ep2_buffer, sizeof(ep2_buffer),
+                               (char *)reply_buffer, reply_buffer_size,
                                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",
                                        usb_err, reply_buffer_size
                        );
                        return(usb_err);
                }
-
-               memcpy(reply_buffer, ep2_buffer, reply_buffer_size);
-
        }
 
        return(usb_err);

Linking to existing account procedure

If you already have an account and want to add another login method you MUST first sign in with your existing account and then change URL to read https://review.openocd.org/login/?link to get to this page again but this time it'll work for linking. Thank you.

SSH host keys fingerprints

1024 SHA256:YKx8b7u5ZWdcbp7/4AeXNaqElP49m6QrwfXaqQGJAOk gerrit-code-review@openocd.zylin.com (DSA)
384 SHA256:jHIbSQa4REvwCFG4cq5LBlBLxmxSqelQPem/EXIrxjk gerrit-code-review@openocd.org (ECDSA)
521 SHA256:UAOPYkU9Fjtcao0Ul/Rrlnj/OsQvt+pgdYSZ4jOYdgs gerrit-code-review@openocd.org (ECDSA)
256 SHA256:A13M5QlnozFOvTllybRZH6vm7iSt0XLxbA48yfc2yfY gerrit-code-review@openocd.org (ECDSA)
256 SHA256:spYMBqEYoAOtK7yZBrcwE8ZpYt6b68Cfh9yEVetvbXg gerrit-code-review@openocd.org (ED25519)
+--[ED25519 256]--+
|=..              |
|+o..   .         |
|*.o   . .        |
|+B . . .         |
|Bo. = o S        |
|Oo.+ + =         |
|oB=.* = . o      |
| =+=.+   + E     |
|. .=o   . o      |
+----[SHA256]-----+
2048 SHA256:0Onrb7/PHjpo6iVZ7xQX2riKN83FJ3KGU0TvI0TaFG4 gerrit-code-review@openocd.zylin.com (RSA)