home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #26 / NN_1992_26.iso / spool / comp / os / linux / 16204 < prev    next >
Encoding:
Text File  |  1992-11-09  |  1.9 KB  |  54 lines

  1. Newsgroups: comp.os.linux
  2. Path: sparky!uunet!mcrware!adam
  3. From: adam@microware.com (Adam Goldberg)
  4. Subject: Re: CMS jumbo 250
  5. Message-ID: <1992Nov9.144911.16802@microware.com>
  6. Sender: news@microware.com
  7. Nntp-Posting-Host: ren
  8. Organization: Microware Systems Corp., Des Moines, Iowa
  9. References: <1deoedINNnji@master.cs.rose-hulman.edu>
  10. Date: Mon, 9 Nov 1992 14:49:11 GMT
  11. Lines: 41
  12.  
  13. foustwf@HYDRA.ROSE-HULMAN.EDU writes:
  14.  
  15. >I posted earlier asking if there was any programs or device drives or 
  16. >something out there so that I can use my CMS jumbo 250 with Linux.
  17. >I got no response, so I am assuming that the answer is No. So, I have
  18. >contacted the QIC committee and will be receiving a copy of the 
  19. >QIC-80 specs next week. I will TRY to write something to make
  20. >use of the Jumbo 250. If anyone has any suggestions on how to do
  21. >this, or has done any work in the area, Please contact me with suggestions
  22. >etc.
  23.  
  24. Good luck (and I mean that constructively).
  25.  
  26. The problem with QIC-02-interface drives is that the communication between
  27. the host computer and the tape drive is via 3 (is it 4?) wires:  To
  28. send a command to the drive, you must TOGGLE THE LINES MANUALLY.
  29.  
  30. ie, say the command-code for rewind is (hex)83, and you must have 15msec
  31. between each bit.  You must:
  32.  
  33.   for(command=0x83, bits=16; bits>0 ; bits--, command>>=1)
  34.   {
  35.      send_bit(command & 1);
  36.      pause(15msec);
  37.    }
  38.  
  39. But in Linux (and any other _real_ OS), you can't (reasonably) hog the
  40. CPU for 1/4 second, therefore, a QIC-02 driver would be icky.  (Though,
  41. perhaps, not impossible).
  42.  
  43. Disclaimer:  It's been a few months since I looked into this.  This was
  44. the issue which made us decide to not even try to write an OS-9000 driver
  45. for the QIC-02 drives.  Your Mileage May Vary(tm).
  46.  
  47.  
  48.   
  49. -- 
  50. Adam G.
  51. adamg@microware.com, or ...!uunet!mcrware!adamg
  52. The above is not to be construed in any way as the official or unofficial
  53. statements of Microware, or any Microware employees.
  54.