From: Michael McMaster Date: Wed, 22 May 2019 09:56:46 +0000 (+1000) Subject: Fix regression for EMU EMAX X-Git-Tag: v4.8.3~4 X-Git-Url: http://git.codesrc.com/?a=commitdiff_plain;h=076117156e1d8fe3c402436e752094c6ab66c756;p=SCSI2SD.git Fix regression for EMU EMAX --- diff --git a/software/SCSI2SD/src/scsiPhy.c b/software/SCSI2SD/src/scsiPhy.c index 275cc71..46f6653 100755 --- a/software/SCSI2SD/src/scsiPhy.c +++ b/software/SCSI2SD/src/scsiPhy.c @@ -401,7 +401,8 @@ void scsiEnterPhase(int phase) { // XEBEC S1410 manual (old SASI controller) gives 10uSec delay // between phase bits and REQ. - CyDelayUs(10); + // EMU EMAX needs 100uS ! 10uS is not enough. + CyDelayUs(100); } } }