Help for this page

Select Code to Download


  1. or download this
    use if ($^O eq "MSWin32"), 'Win32::Process';
    use if ($^O eq "MSWin32"), 'Win32::SearchPath';
    use if ($^O ne "MSWin32"), 'POSIX';
    
  2. or download this
    use Perl::OSType qw' is_os_type ';
    use if is_os_type('Windows'), qw' Win32::SerialPort ';
    use if not is_os_type('Windows'), qw' Device::SerialPort ';