How to Access Serial Port in Perl

2003-03-11 Thread David Cheng
Hi all, How to open, initialize, read and write to a serial port in Perl? Any advice helps, thanks. David

Re: How to Access Serial Port in Perl

2003-03-11 Thread R. Joseph Newton
David Cheng wrote: Hi all, How to open, initialize, read and write to a serial port in Perl? Any advice helps, thanks. David perldoc -q serial port Joseph -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: How to Access Serial Port in Perl

2003-03-11 Thread beau
On 10 Mar 2003 at 13:31, David Cheng wrote: Hi all, How to open, initialize, read and write to a serial port in Perl? Any advice helps, thanks. David David, I have used Win32::SerialPort and Device::SerialPort (Linux) with excellent results. You may want to go to:

Re: How to Access Serial Port in Perl

2003-03-11 Thread Mat Harris
i have just tried Device::SerialPort as we need something at work to control set of video switchers over rs232. I can send strings to a test device (a std modem) but I can't get it to send me data back properly. Sometimes i get the data as i should, but more often than not I get the command I

Re: How to Access Serial Port in Perl

2003-03-11 Thread zentara
On Mon, 10 Mar 2003 13:31:47 -0800, [EMAIL PROTECTED] (David Cheng) wrote: Hi all, How to open, initialize, read and write to a serial port in Perl? Any advice helps, thanks. Get the Device-SerialPort module from http://cpan.org It has plenty of demos. -- To unsubscribe, e-mail: [EMAIL

RE: How to Access Serial Port in Perl

2003-03-11 Thread LoBue, Mark
-Original Message- From: Mat Harris [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 11, 2003 2:50 AM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED]; David Cheng Subject: Re: How to Access Serial Port in Perl i have just tried Device::SerialPort as we need something at work