readme.txt 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. SCSI2SD, The SCSI Hard Drive Emulator for retro computing.
  2. Traditional hard drives last 5 years*. Maybe, if you're luckly, you'll get 10
  3. years of service from a particular drive. The lubricants wear out, the spindles
  4. rust. SCSI2SD is a modern replacement for failed drives. It allows the use of
  5. vintage computer hardware long after their mechanical drives fail. The use of
  6. SD memory cards solves the problem of transferring data between the vintage
  7. computer and a modern PC (who still has access to a working floppy drive ?)
  8. *All statistics are made up.
  9. Features
  10. In-built active terminator.
  11. Can optional supply terminator power back to the SCSI bus
  12. Emulates a non-removable hard drive for maximum compatibility.
  13. Firmware updatable over USB (TODO software not yet implemented)
  14. Highly configurable over USB (TODO software not yet implemented)
  15. Selectable SCSI ID
  16. Selectable parity support
  17. Enable/disable Unit Attention Condition
  18. Artificial limits on the SCSI disk size (eg. limit size to 4G to avoid OS bugs)
  19. Technical Specifications
  20. SCSI Interface
  21. SCSI-2 Narrow 8-bit 50-pin connector. Supports asynchronous transfers only.
  22. SD Card Interface
  23. Standard SDSC (1GB maximum size)
  24. SDHC (32GB maximum size)
  25. SDXC cards are untested. Donations welcome.
  26. Communication is via the SPI protocol at 25MHz.
  27. Power
  28. 5V via standard molex drive connector.
  29. Dimensions
  30. 10cm x 10cm x 1.5cm
  31. A 3D-printable bracket is in testing to suit a standard 3.5" hard disk bay.
  32. Performance
  33. As currently implemented:
  34. Sequential read: 250kb/sec Sequential write: 240kb/sec
  35. Tested with a 16GB class 10 SD card, via the commands:
  36. # WRITE TEST
  37. sudo dd bs=8192 count=100 if=/dev/zero of=/dev/sdX oflag=dsync
  38. # READ TEST
  39. sudo dd bs=8192 count=100 if=/dev/sdX of=/dev/null
  40. I am working on updating the slow polling SD card communication to use DMA. I expect the performance to reach 1Mb/sec.
  41. Compatibility
  42. Tested with Linux (current), Apple Macintosh System 7.5.3 on LC-III, and LC-475
  43. hardware.