Sorry, the code block is incorrect and has a close($serial) that was added later when troubleshooting. The code actually looks like this:
use IO::Select; use IO::Handle; $COM_PORT = "COM1"; my $Serial; #system("mode com1 baud=9600 stop=1 data=8 parity=n rts=on dtr=on"); #open $Serial,"+<", "$COM_PORT" or die "failed to open com port\n"; sysopen $Serial,"$COM_PORT", O_RDWR|O_NDELAY|O_NCOTTY or die "failed t +o open com port\n"; $sel = IO::Select->new; $sel -> add($Serial); if($sel -> exists($Serial)) { print "Handle exists \n"; } print $Serial "\n"; my $timeout = 0; if (my @ready = $sel -> can_read(0)) { print "Ready to read! \n"; } if (my @ready = $sel -> can_write(0)) { print "Ready to write! \n"; } if(my @ready = $sel -> has_error(0)) { print "Exceptions found! \n"; } close ($Serial); print "Finished... \n";

In reply to Re: Serial Port I/O by Anonymous Monk
in thread Serial Port I/O by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.