Xref: utzoo comp.sys.amiga:73894 comp.sys.amiga.tech:16828 Path: utzoo!censor!geac!torsqnt!news-server.csri.toronto.edu!rutgers!cmcl2!sbcs!csserv1.ic.sunysb.edu!dtiberio From: dtiberio@csserv1.ic.sunysb.edu (David Tiberio) Newsgroups: comp.sys.amiga,comp.sys.amiga.tech Subject: Re: Setting the serial port baudrate from Basic Message-ID: <1990Dec7.175136.6218@sbcs.sunysb.edu> Date: 7 Dec 90 17:51:36 GMT References: <1990Dec7.080001.10766@lth.se> Sender: usenet@sbcs.sunysb.edu (Usenet poster) Organization: State University of New York at Stony Brook Lines: 16 Are you using AmigaBASIC? If so, try a compiler such as Blitz or GFA. to open the serial port: open "COM1:19200,n,8,1" as #1 COM1 is the serial port 19200 is the highest baud I have ever used (for my modem) n is "no parity", your choices may differ 8 is 8 data bits (you can use 7 too 1 is 1 stop bit (you can use 0,1,2) then INPUT#1 or PRINT#1 to exchange data. If you want to talk more about BASIC, please contact me. I use HiSoft BASIC for many of my programs.