Turn OFF double banking in the Webserver demo - leaving it on seems to destroy the system throughput.

This commit is contained in:
Dean Camera 2010-02-18 05:10:24 +00:00
parent 3b6987bca3
commit 012628f635
3 changed files with 5 additions and 6 deletions

View file

@ -48,11 +48,11 @@ USB_ClassInfo_MS_Device_t Disk_MS_Interface =
.DataINEndpointNumber = MASS_STORAGE_IN_EPNUM,
.DataINEndpointSize = MASS_STORAGE_IO_EPSIZE,
.DataINEndpointDoubleBank = false,
.DataINEndpointDoubleBank = true,
.DataOUTEndpointNumber = MASS_STORAGE_OUT_EPNUM,
.DataOUTEndpointSize = MASS_STORAGE_IO_EPSIZE,
.DataOUTEndpointDoubleBank = false,
.DataOUTEndpointDoubleBank = true,
.TotalLUNs = 1,
},