X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/508b37ba9ce74eed6553ce59deb79f49b5311d11..cef590d9efd4957aead4be551fc8af1c37188311:/common/usb_cdc.c diff --git a/common/usb_cdc.c b/common/usb_cdc.c index 049cb8cf..79f34979 100644 --- a/common/usb_cdc.c +++ b/common/usb_cdc.c @@ -363,7 +363,7 @@ uint32_t usb_write(const byte_t* data, const size_t len) { cpt = MIN(length, AT91C_EP_IN_SIZE-1); length -= cpt; while (cpt--) pUdp->UDP_FDR[AT91C_EP_IN] = *data++; - // Wait for the the first bank to be sent + // Wait for the first bank to be sent while (!(pUdp->UDP_CSR[AT91C_EP_IN] & AT91C_UDP_TXCOMP)) { if (!usb_check()) return length; }