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