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

@@ -84,7 +84,7 @@ namespace DiscImageChef.Core.Devices.Dumping
sidecar.BlockMedia[0].SecureDigital = new SecureDigitalType();
uint blocksToRead = 256;
uint blocksToRead = 1;
uint blockSize = 512;
ulong blocks = 0;
byte[] cid = null;