RJCP.DLL.SerialPortStream icon indicating copy to clipboard operation
RJCP.DLL.SerialPortStream copied to clipboard

SerialPortStream is an independent implementation of System.IO.Ports.SerialPort and SerialStream for better reliability and maintainability. Default branch is 2.x and now has support for Mono with hel...

Results 12 RJCP.DLL.SerialPortStream issues
Sort by recently updated
recently updated
newest added

Hi, I saw some todos regarding custom baud rates in your code. I needed baud rate 345600 which is not a supported baud rate. Here is a pull request with...

In this https://github.com/dotnet/corefx/commit/45dba6ea7a49a9945a5ad497cfc3de2ec1246683#diff-221055955142c33d285c9271ba435005 .NET Core team replaced tcflush with tcdrain. Maybe SerialPortStream should use tcdrain too, because tcflush discards bytes, but Flush() API should send them. https://linux.die.net/man/3/tcdrain: * tcdrain() waits...

enhancement

https://github.com/jcurl/SerialPortStream/blob/d25bbf9f9d2f4f32e9f324b23771257d7e4b97d6/dll/serialunix/libnserial/baudrate.c#L181 Are there plans to implement this? My temporary fix is to Close the connection and then Open it again, but it's not a solution that I like personally. @jcurl...

enhancement

On Linux, when there are more usb - rs232 converters connected, the handy procedure is to symlink the /dev/ttyUSBx to your own name, for example /dev/ttyMY-USB-CONVERETR, via udev rules. The...

enhancement

The TIOCMIWAIT ioctl returns EINVAL on some drivers/hardware. This results in 100% CPU usage for the thread as instead of blocking the function call immediately returns. Perhaps it would be...

bug

I've been trying to debug a flakiness issue that happens for a couple of my users. After some amount of time of continuous reading and writing, the `IsOpen` flag changes...

The error occurs when calling Open() ` in RJCP.IO.Ports.Native.Windows.CommState.SetCommState() в C:\Users\jcurl\Documents\Programming\rjcp.base\framework\serialportstream\code\Native\Windows\CommState.cs:line66 in RJCP.IO.Ports.Native.WinNativeSerial.SetPortSettings() в C:\Users\jcurl\Documents\Programming\rjcp.base\framework\serialportstream\code\Native\WinNativeSerial.cs:line 803 in RJCP.IO.Ports.SerialPortStream.Open(Boolean setCommState) в C:\Users\jcurl\Documents\Programming\rjcp.base\framework\serialportstream\code\SerialPortStream.cs:line 313` The error disappears when calling OpenDirect(). OS: Windows...

Unable to compile this project. Is it possible to obtain the component only without racking my brains to find everything that is missing to compile it? RJCP.IO.Buffer RJCP.IO.DeviceMgr I'm not...

Good morning, I just upgraded my solution with the newer version v3.0.1 (my software was still working with the previous v.2.4.2). I get an error in the ReadAsync function.. is...

I'm working with an Arduino and attempting to read it in through a COM Port. I have it transmitting a bytes array constantly through the COM port. I have given...

feedback-required