Process Isolated Serial Port
No documentation yet. Resort to tests at SharpSerial.Test subproject for guidance.
- Will use default encoding because there is no natural way to set it to all stdio streams
- On client side stdin.encode is ro, on the remote side stderr.encode is not available
- Utf8 should be default although ascii is enough for most stdio trafic
- Exception trafic may need utf8 encoding if running in non english Windows
- Unhandled exceptions are logged to stdout prefixed with ! and followed by exit(1)
- Client side api retrows exceptions received over stdout
- cleanup exceptions are ignored because no clear use case for them
- No logging outside the available stdio (no files)
- Windows 10 Pro 64x (Windows only)
- VS Code (Command prompt)
- .NET 6.0 SDK 6.0.405
- com0com-2.2.2.0-x64-fre-signed COM98/99
- Startech ICUSB2324I COM3/4
#nuget packing and publishing
dotnet clean SharpSerial -c Release
dotnet pack SharpSerial -c Release
dotnet publish SharpSerial -c Release
#cross platform test cases
dotnet test SharpSerial.Test
#console output for test cases
dotnet test SharpSerial.Test -v n
#test in release mode
dotnet test SharpSerial.Test -c Release
#individual tests
dotnet test SharpSerial.Test --filter FullyQualifiedName~SettingsTest
dotnet test SharpSerial.Test --filter FullyQualifiedName~ExceptionTest
dotnet test SharpSerial.Test --filter FullyQualifiedName~Com0ComTest
dotnet test SharpSerial.Test --filter FullyQualifiedName~DualFtdiTest
#run (close with enter)
dotnet run --project SharpSerial
- Improve documentation and samples
- Support Linux/macOS once proper dev environment
- Support .NET 6.0 targets once sub process is handled correctly
- Research issue: on fast close/open com0com wont clear inbuf
- Research issue: on fast close/open ftdi wont release port