]> localhost Git - SCSI2SD-V6.git/commitdiff
Fix for more than 2 devices via USB MSC
authorMichael McMaster <michael@codesrc.com>
Tue, 16 Aug 2016 09:31:09 +0000 (19:31 +1000)
committerMichael McMaster <michael@codesrc.com>
Tue, 16 Aug 2016 09:31:09 +0000 (19:31 +1000)
CHANGELOG
src/firmware/usb_device/usbd_msc_bot.c

index d07d0848cc210650b531d3508800869f85010e9d..1f4f29cb679a663ca8403416189431dfbc643f90 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+20160815               6.0.6
+       - Fix performance bugs
+
 20160814               6.05
        - More SCSI bug fixes (some timing issues resolved in the FPGA image)
        - Firmware update support using scsi2sd-util6.
index 116033c65a4c6e4e62d31cd614be7dad9680dfae..98ac924e3bd86d9c02ac54686733a6b065e32d0d 100755 (executable)
@@ -236,7 +236,7 @@ static void  MSC_BOT_CBW_Decode (USBD_HandleTypeDef  *pdev)
 
        if ((USBD_LL_GetRxDataSize (pdev ,MSC_EPOUT_ADDR) != USBD_BOT_CBW_LENGTH) ||
                (hmsc->cbw.dSignature != USBD_BOT_CBW_SIGNATURE)||
-               (hmsc->cbw.bLUN > 1) || 
+               //(hmsc->cbw.bLUN > 1) || 
                (hmsc->cbw.bCBLength < 1) || 
                (hmsc->cbw.bCBLength > 16))
        {