瀏覽代碼

Remove debug code

Michael McMaster 9 年之前
父節點
當前提交
d169647a23
共有 3 個文件被更改,包括 4 次插入4 次删除
  1. 1 1
      lib/SCSI2SD/CHANGELOG
  2. 1 1
      lib/SCSI2SD/src/firmware/config.c
  3. 2 2
      lib/SCSI2SD/src/firmware/scsiPhy.c

+ 1 - 1
lib/SCSI2SD/CHANGELOG

@@ -1,4 +1,4 @@
-20161006		6.0.12
+20161006		6.0.13
 	- Fixed SCSI timing issue
 	- Added glitch filter on SCSI signals.
 	- Re-implemented SCSI parity checking.

+ 1 - 1
lib/SCSI2SD/src/firmware/config.c

@@ -37,7 +37,7 @@
 
 #include <string.h>
 
-static const uint16_t FIRMWARE_VERSION = 0x060C;
+static const uint16_t FIRMWARE_VERSION = 0x060D;
 
 // 1 flash row
 static const uint8_t DEFAULT_CONFIG[128] =

+ 2 - 2
lib/SCSI2SD/src/firmware/scsiPhy.c

@@ -592,13 +592,13 @@ void scsiPhyReset()
 	}
 	#endif
 
-	//#ifdef SCSI_FREQ_TEST
+	#ifdef SCSI_FREQ_TEST
 	while(1)
 	{
 		*SCSI_CTRL_DBX = 0xAA;
 		*SCSI_CTRL_DBX = 0x55;
 	}
-	//#endif
+	#endif
 
 }