ruby-serialport icon indicating copy to clipboard operation
ruby-serialport copied to clipboard

ruby-serialport is a Ruby library that provides a class for using RS-232 serial ports

Results 36 ruby-serialport issues
Sort by recently updated
recently updated
newest added

Clang 15 has enabled -Werror=int-conversion by default. Hence, we now get ``` posix_serialport_impl.c:113:13: error: incompatible pointer to integer conversion passing 'struct RFile *' to parameter of type 'VALUE' (aka 'unsigned...

I am running with: ruby 2.7.0p0 (2019-12-25 revision 647ee6f091) [x86_64-linux-gnu] on Linux Mint 20.3 I have the following code snippet, but here is what I would expect: I would expect...

Clang 15 has enabled -Werror=int-conversion by default. Hence, we now get posix_serialport_impl.c:113:13: error: incompatible pointer to integer conversion passing 'struct RFile *' to parameter of type 'VALUE' (aka 'unsigned long')...

This avoids an implicit conversion from `struct RFile *` to `VALUE`, which some compilers treat as an error. Related to: * https://fedoraproject.org/wiki/Changes/PortingToModernC * https://fedoraproject.org/wiki/Toolchain/PortingToModernC

This fixed the issue of 0x11 in data stream is filtered out under linux.

The changelog entry for 1.3.2 has been missing. This PR is adding a very simple one.

Greetings, In order to install the serialport gem using Ruby 3.0.0 on MacOS Big Sur (11.1) the following is required: ``` $ gem install serialport -- --with-cflags=-Wno-implicit-function-declaration ``` In order...

When I run the test, I get the following output: ``` miniterm.rb:11:in `initialize': wrong number of arguments (5 for 1..2) (ArgumentError) from miniterm.rb:11:in `new' from miniterm.rb:11:in `' ``` Does that...

Seems the IO is opened in "text" mode and some ruby subsystem strips the carriage return (0x13) characters. That's no good if you are actually talking a binary protocol.

Hi, I've only just started playing with this but have been confused for an hour or so after trying to print debug information to the terminal I'm running my script...