in reply to Serial data delay

Unfortunately I can't reproduce the issue you describe on my end (at least with a fake serial port). When I've worked with Device::SerialPort, I've had the most success reading a single byte from the port at a time. However, I've had even better experiences on *NIX (including RPi) with IO::Termios, which I wrote about here: Lower-Level Serial Port Access on *NIX

Replies are listed 'Best First'.
Re^2: Serial data delay
by StepSteve (Novice) on Oct 23, 2018 at 23:14 UTC

    Hi haukex, looks like I’ll be jumping ship from from Device::Serialport. My programming knowledge is limited, I mainly work from examples I find online. I will try IO::Termios after work with examples from the link you provided. Thank you.