On QEMU's virtual SDHCI reading several commands at once it blocking

the card right now, until I get real hardware and check out why it's
better to be safe than sorry, so reading is limited to 1 block at a
time.
This commit is contained in:
2017-09-29 06:10:35 +00:00
parent 91f85d4618
commit 74e4dadbdc
2 changed files with 2 additions and 2 deletions

View File

@@ -59,7 +59,7 @@ namespace DiscImageChef.Core.Devices.Scanning
uint timeout = 5;
double duration = 0;
ushort currentProfile = 0x0001;
uint blocksToRead = 256;
uint blocksToRead = 1;
uint blockSize = 512;
if(dev.Type == DeviceType.MMC)