Add 10ms delay to seek command

This commit is contained in:
Michael McMaster 2019-03-02 15:12:29 +10:00
parent efca14f6b5
commit bc8faaea31
1 changed files with 4 additions and 0 deletions

View File

@ -293,6 +293,10 @@ static void doSeek(uint32 lba)
scsiDev.target->sense.asc = LOGICAL_BLOCK_ADDRESS_OUT_OF_RANGE;
scsiDev.phase = STATUS;
}
else
{
CyDelay(10);
}
}
static int doTestUnitReady()