Posts: 1,841
Threads: 54
Joined: Jul 2005
Hello,
AFAIK the HP-IL interface manual covers how to send and receive data from the tape drive.
It's more than 15 years ago since I wrote a little file manager for the tpae drive, and I don't have the sources here...
But as I recall, you could use SEND for most things related to loop/drive control.
Something like
SEND DDL 7
to rewind the tape, etc...
Regards,
Raymond
Posts: 1,162
Threads: 26
Joined: Aug 2005
There is a special HPIL manual for the HP71. It's the 'HP-IL Interface Owner's Manual for the HP-71'. The one I have here is part number 82401-90001
Section 3 of this manual covers 'Mass Storage Operatios', which includes things like the tape drive (I can confirm that the 82161 tape drive will work with an HP71).
But here's a little information to get started. To format the tape (equivalent to NEWM on the HP41), you use the INITIALIZE command. Soething like INITIALISE MYTAPE:MASSMEM. The 'MYTAPE' is the volume name (and is optional), the 'MASSMEM' specifies the device you want to use -- in this case the first (or only) MASS MEMory device on the loop.
An HP41 formatted tape is fine too, and you can use the same tape to store files from both the th HP41 and the HP71 (and an HP75 if you have one of those). Now, suppose you have a program in memory called 'GAME1' that you want to save to tape under the name 'TTT'. Just type
COPY GAME1 TO TTT:MASSMEM (this is roughly the equivalent of the WRTP command on the HP41, except that it works with all types of files (text, data, sdata, basic, etc, not just basic programs).
To load the program back in again, you just use the COPY command again :
COPY TTT:MASSMEM TO PROG will load the program back in and call it 'PROG'. To see what's on the tape (the equivalent of DIR on the HP41), use CAT :MASSMEM .
There are a lot of other commands, of course, but that should get you started. Actaully, a lot of the cammands are the obvious extensions of the HP71's RAM filesystem commands.
Posts: 5
Threads: 1
Joined: Jan 1970
Thank you gentlemen for your assistance and to Wayne for sending me his .TIF of the quick reference card... I'll piece the rest together it think... I was checking further on Dave's CD set and he has manual for the Dual IL-loop which is the 82402A.. I have the 82401A which is listed as the HP-IL Interface... Any idea what the difference is except that it has 2 sets of ports for in/out.. I wonder if the operation is the same... Time to play, I guess... Thanks, and sounds like this may be a subject to be explored further and posted...