Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
use strict; use Win32::SerialPort; my $ob = Win32::SerialPort->new ('COM1') || die "Can't Open Port"; my @baud_array = $ob->baudrate; print "Baud Array contains @baud_array \n"; undef $ob;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Setting baudrate automatically?
by dHarry (Abbot) on Jan 22, 2009 at 08:34 UTC | |
|
Re: Setting baudrate automatically?
by ig (Vicar) on Jan 22, 2009 at 16:52 UTC |