Euan Torano

Results 258 comments of Euan Torano

Agreed. > On 28 Apr 2015, at 16:36, Jones [email protected] wrote: > > Themes should also get an update process similar to plugins (like Wordpress has). > > — >...

Very interesting indeed. Out of interest, which OS are you using? I don’t have an Arduino to hand, but do have access to various machines to test with so will...

It also may be worth trying the raw serial port rather than the serial stream, purely out of interest. The API is similar but you would use `newSerialPort` instead. On...

Perfect, thanks. I’ll have a look over this weekend and see if I can work out what’s going on. I’m fairly sure it’ll be related to the handshaking as that...

I’ve had a quick glance at the pyserial source and their flush method seems to be a bit different to ours: - Theirs: https://github.com/pyserial/pyserial/blob/master/serial/serialposix.py#L673 - Ours: https://github.com/euantorano/serial.nim/blob/master/src/serial/private/serialport/serialport_posix.nim#L837 They use `tcdrain`...

@ijustlovemath any chance you can try out the changes in #47? If you're using Nimble, you should be able to require the branch like follows I believe (in your Nimble...

I was just about to ask if you had some code available! I'll try and test this after dinner tonight and see what happens. If I spot any improvements I'll...

That's very helpful, thanks. I'm tied up with work today and tomorrow but will take another look at this over the weekend. I suspected the termios struct might be slightly...

> Would you be open to my adding an `iflush()`, `oflush()`, and `drain()` procs as wrappers for `tcflush(..., TCIFLUSH), tcflush(..., TCOFLUSH), tcdrain()` ? This would allow future users of this...

That looks about right, my Linux machine doesn’t have Bluetooth so I’ll have to take your word that it works 😂 On Fri, 4 Oct 2019, at 11:40, LucaWolf wrote:...