in reply to Re^4: How to send long sting Device::SerialPort
in thread How to send long sting Device::SerialPort
With just the tie (eschewing the config file):my $ob = Device::SerialPort->new($PORT) || die;
Untested though.my $ob = tie (*FH, 'Device::SerialPort', $PORT) || die;
|
|---|