JoeLabView wrote:
> I hate answering with a question, but if it helps you find a quick
> solution, it should be okay, right? ;o)
>
>
> Are you able to communicate with the Omega data logger using a
> standard serial communication software, such as "HyperTerminal"?
>
no
> You may try with slower comm port settings, such as 2400 or 4800. I
> can't remember the speeds back then, but I do remember the data
> loggers.
Here is what the quick basic program had:
OPEN "COM1:9600,N,8,1,LF" FOR RANDOM AS #1
PRINT #1, "TS0"
PRINT #1, CHR$(&H1B) + "T";
PRINT #1, "FM0,01,20"
LINE INPUT #1, D$
The problem may be a simple port setting. If you have the
> manuals, look up the speeds.
I seem to remember that they were quite
> slow (900??? or 1200???). Check als
o the parity, data bits and stop
> bit settings. I can't remember what they were.
so from the original program that worked (on a DOS 5 machine!) the baud
is 9600, No parity, data bits is 8, 1 stop bit. The LF is assumed to be
the terminator.
I use the serial port init for the open line leaving terminator unwired.
Then I use visa write and send using \ codes:
TSO\r\n\1BTFM0,01,20\r\n
read just times out 😞
Tried leaving out \r but no luck. even tried without \n but no luck.
BTW, model number is RD3750 (which google and the others return nothing
on. Omega site has nothing on this old sucker).
BTW also, I have two of these in the set up and neither is playing yet.
>
> Good luck and hope you get them back up & running.
> It brings back memories... 🐵
Anything else you could remember pass it on.
Thanks,
Jim