diff --git a/Bootloaders/CDC/BootloaderCDC.c b/Bootloaders/CDC/BootloaderCDC.c index ef8707d34a9231e71dde3b6c2da1cac7be57b4a4..f36c4fc3ed970cd0ba6bcaa83c0cbc00dd0109f6 100644 --- a/Bootloaders/CDC/BootloaderCDC.c +++ b/Bootloaders/CDC/BootloaderCDC.c @@ -350,7 +350,7 @@ static void WriteNextResponseByte(const uint8_t Response) /* Select the IN endpoint so that the next data byte can be written */ Endpoint_SelectEndpoint(CDC_TX_EPNUM); - /* If OUT endpoint empty, clear it and wait for the next packet from the host */ + /* If IN endpoint full, clear it and wait util ready for the next packet to the host */ if (!(Endpoint_IsReadWriteAllowed())) { Endpoint_ClearIN(); diff --git a/Bootloaders/CDC/BootloaderCDC.h b/Bootloaders/CDC/BootloaderCDC.h index 7669b836c1e3aad1e38c04d49d8417f8a8569491..e302a3966306409570bffc7ad70bf2c6e7d944aa 100644 --- a/Bootloaders/CDC/BootloaderCDC.h +++ b/Bootloaders/CDC/BootloaderCDC.h @@ -82,7 +82,7 @@ #define BOOTLOADER_HWVERSION_MINOR 0x00 /** Eight character bootloader firmware identifier reported to the host when requested */ - #define SOFTWARE_IDENTIFIER "LUFA-CDC" + #define SOFTWARE_IDENTIFIER "LUFACDC" /* Event Handlers: */ /** Indicates that this module will catch the USB_Disconnect event when thrown by the library. */ diff --git a/Bootloaders/CDC/Descriptors.c b/Bootloaders/CDC/Descriptors.c index e9787cf7fcba05b40374f8c496123bd8e8a6fcca..06088d8f7946966376abc9d66c0fd5d639ab9d5b 100644 --- a/Bootloaders/CDC/Descriptors.c +++ b/Bootloaders/CDC/Descriptors.c @@ -198,7 +198,7 @@ USB_Descriptor_String_t LanguageString = */ USB_Descriptor_String_t ProductString = { - .Header = {.Size = USB_STRING_LEN(15), .Type = DTYPE_String}, + .Header = {.Size = USB_STRING_LEN(18), .Type = DTYPE_String}, .UnicodeString = L"AVR CDC Bootloader" }; diff --git a/LUFA/Drivers/USB/LowLevel/Endpoint.c b/LUFA/Drivers/USB/LowLevel/Endpoint.c index a872a00ffd40d3b754474c7cefcb9e0745239339..f4f2bdc0b4934eed1ed0daa2e82a8935dab21d03 100644 --- a/LUFA/Drivers/USB/LowLevel/Endpoint.c +++ b/LUFA/Drivers/USB/LowLevel/Endpoint.c @@ -288,9 +288,11 @@ uint8_t Endpoint_Read_Stream_BE(void* Buffer, uint16_t Length uint8_t Endpoint_Write_Control_Stream_LE(const void* Buffer, uint16_t Length) { - uint8_t* DataStream = (uint8_t*)Buffer; + uint8_t* DataStream = (uint8_t*)Buffer; bool LastPacketFull = false; - bool ShortTransfer = (Length < USB_ControlRequest.wLength); + + if (Length > USB_ControlRequest.wLength) + Length = USB_ControlRequest.wLength; while (Length && !(Endpoint_IsOUTReceived())) { @@ -309,7 +311,7 @@ uint8_t Endpoint_Write_Control_Stream_LE(const void* Buffer, uint16_t Length) if (Endpoint_IsOUTReceived()) return ENDPOINT_RWCSTREAM_ERROR_HostAborted; - if (LastPacketFull || ShortTransfer) + if (LastPacketFull) { while (!(Endpoint_IsINReady())); Endpoint_ClearIN(); @@ -324,26 +326,29 @@ uint8_t Endpoint_Write_Control_Stream_BE(const void* Buffer, uint16_t Length) { uint8_t* DataStream = (uint8_t*)(Buffer + Length - 1); bool LastPacketFull = false; - bool ShortTransfer = (Length < USB_ControlRequest.wLength); + if (Length > USB_ControlRequest.wLength) + Length = USB_ControlRequest.wLength; + while (Length && !(Endpoint_IsOUTReceived())) { - while (!(Endpoint_IsINReady())); - - while (Length && (Endpoint_BytesInEndpoint() < USB_ControlEndpointSize)) + if (Endpoint_IsINReady()) { - Endpoint_Write_Byte(*(DataStream--)); - Length--; + while (Length && (Endpoint_BytesInEndpoint() < USB_ControlEndpointSize)) + { + Endpoint_Write_Byte(*(DataStream--)); + Length--; + } + + LastPacketFull = (Endpoint_BytesInEndpoint() == USB_ControlEndpointSize); + Endpoint_ClearIN(); } - - LastPacketFull = (Endpoint_BytesInEndpoint() == USB_ControlEndpointSize); - Endpoint_ClearIN(); } if (Endpoint_IsOUTReceived()) return ENDPOINT_RWCSTREAM_ERROR_HostAborted; - if (LastPacketFull || ShortTransfer) + if (LastPacketFull) { while (!(Endpoint_IsINReady())); Endpoint_ClearIN(); @@ -360,15 +365,16 @@ uint8_t Endpoint_Read_Control_Stream_LE(void* Buffer, uint16_t Length) while (Length) { - while (!(Endpoint_IsOUTReceived())); - - while (Length && Endpoint_BytesInEndpoint()) + if (Endpoint_IsOUTReceived()) { - *(DataStream++) = Endpoint_Read_Byte(); - Length--; + while (Length && Endpoint_BytesInEndpoint()) + { + *(DataStream++) = Endpoint_Read_Byte(); + Length--; + } + + Endpoint_ClearOUT(); } - - Endpoint_ClearOUT(); } while (!(Endpoint_IsINReady())); @@ -382,15 +388,16 @@ uint8_t Endpoint_Read_Control_Stream_BE(void* Buffer, uint16_t Length) while (Length) { - while (!(Endpoint_IsOUTReceived())); - - while (Length && Endpoint_BytesInEndpoint()) + if (Endpoint_IsOUTReceived()) { - *(DataStream--) = Endpoint_Read_Byte(); - Length--; + while (Length && Endpoint_BytesInEndpoint()) + { + *(DataStream--) = Endpoint_Read_Byte(); + Length--; + } + + Endpoint_ClearOUT(); } - - Endpoint_ClearOUT(); } while (!(Endpoint_IsINReady()));