Hello!
I am both learning REBOL and want to use it as soon as possible for some cartographic applications.
I'd like to drive an HP7550Plus plotter which is linked to COM1.
I did find some information from the book of Olivier Auverlot, but I can not get it to work!
First I would just like to replicate the BASIC program below which works from a command prompt window under Windows 98 (quickbasic).
I would work either from Windows 98 or Windows XP; on both machines the com1 port is defined as
baud: 9600
bits: 8
parity: none
stop bit: 1
handshaking: hardware
Thanks for the help.
Alain Delmotte
here is the BASIC program
OPEN "COM1:9600,S,8,1,RS,CS65535,DS,CD" FOR RANDOM AS #1
PRINT #1, "IN;OI;"
Input #1, ID$
PRINT #1, "SP1;PA 500,500;"
PRINT #1, "LB"; ID$; " COMMUNICATION OK"; CHR$(3)
PRINT #1, "PA 0,0;SP0;"
END