in reply to Device::SerialPorDevice::SerialPort;t Problem

Why doesn't the buffer flush on print?

Because STDOUT is buffered by default, you have to disable buffering

use IO::Handle; STDOUT->autoflush;
  • Comment on Re: Device::SerialPorDevice::SerialPort;t Problem