├── .gitignore ├── GodSharp.SerialPort.sln ├── LICENSE ├── README.md ├── appveyor.yml ├── src └── GodSharp.SerialPort │ ├── Core │ ├── GodSerialPort.Event.cs │ ├── GodSerialPort.Static.cs │ ├── GodSerialPort.cs │ └── SerialConfigOptions.cs │ ├── Enums │ └── SerialPortDataFormat.cs │ ├── Extensions │ ├── ByteExtension.cs │ └── StringExtension.cs │ └── GodSharp.SerialPort.csproj └── test ├── GodSharp.SerialPort.ConsoleSample ├── GodSharp.SerialPort.ConsoleSample.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── app.config ├── GodSharp.SerialPort.NetCore.ConsoleSample ├── GodSharp.SerialPort.NetCore.ConsoleSample.csproj └── Program.cs └── GodSharp.SerialPort.Tests ├── GodSharp.SerialPort.Tests.csproj ├── Properties └── AssemblyInfo.cs ├── SerialClassTests.cs └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godsharp/GodSharp.SerialPort/HEAD/.gitignore -------------------------------------------------------------------------------- /GodSharp.SerialPort.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godsharp/GodSharp.SerialPort/HEAD/GodSharp.SerialPort.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godsharp/GodSharp.SerialPort/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godsharp/GodSharp.SerialPort/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godsharp/GodSharp.SerialPort/HEAD/appveyor.yml -------------------------------------------------------------------------------- /src/GodSharp.SerialPort/Core/GodSerialPort.Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godsharp/GodSharp.SerialPort/HEAD/src/GodSharp.SerialPort/Core/GodSerialPort.Event.cs -------------------------------------------------------------------------------- /src/GodSharp.SerialPort/Core/GodSerialPort.Static.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godsharp/GodSharp.SerialPort/HEAD/src/GodSharp.SerialPort/Core/GodSerialPort.Static.cs -------------------------------------------------------------------------------- /src/GodSharp.SerialPort/Core/GodSerialPort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godsharp/GodSharp.SerialPort/HEAD/src/GodSharp.SerialPort/Core/GodSerialPort.cs -------------------------------------------------------------------------------- /src/GodSharp.SerialPort/Core/SerialConfigOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godsharp/GodSharp.SerialPort/HEAD/src/GodSharp.SerialPort/Core/SerialConfigOptions.cs -------------------------------------------------------------------------------- /src/GodSharp.SerialPort/Enums/SerialPortDataFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godsharp/GodSharp.SerialPort/HEAD/src/GodSharp.SerialPort/Enums/SerialPortDataFormat.cs -------------------------------------------------------------------------------- /src/GodSharp.SerialPort/Extensions/ByteExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godsharp/GodSharp.SerialPort/HEAD/src/GodSharp.SerialPort/Extensions/ByteExtension.cs -------------------------------------------------------------------------------- /src/GodSharp.SerialPort/Extensions/StringExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godsharp/GodSharp.SerialPort/HEAD/src/GodSharp.SerialPort/Extensions/StringExtension.cs -------------------------------------------------------------------------------- /src/GodSharp.SerialPort/GodSharp.SerialPort.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godsharp/GodSharp.SerialPort/HEAD/src/GodSharp.SerialPort/GodSharp.SerialPort.csproj -------------------------------------------------------------------------------- /test/GodSharp.SerialPort.ConsoleSample/GodSharp.SerialPort.ConsoleSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godsharp/GodSharp.SerialPort/HEAD/test/GodSharp.SerialPort.ConsoleSample/GodSharp.SerialPort.ConsoleSample.csproj -------------------------------------------------------------------------------- /test/GodSharp.SerialPort.ConsoleSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godsharp/GodSharp.SerialPort/HEAD/test/GodSharp.SerialPort.ConsoleSample/Program.cs -------------------------------------------------------------------------------- /test/GodSharp.SerialPort.ConsoleSample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godsharp/GodSharp.SerialPort/HEAD/test/GodSharp.SerialPort.ConsoleSample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /test/GodSharp.SerialPort.ConsoleSample/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godsharp/GodSharp.SerialPort/HEAD/test/GodSharp.SerialPort.ConsoleSample/app.config -------------------------------------------------------------------------------- /test/GodSharp.SerialPort.NetCore.ConsoleSample/GodSharp.SerialPort.NetCore.ConsoleSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godsharp/GodSharp.SerialPort/HEAD/test/GodSharp.SerialPort.NetCore.ConsoleSample/GodSharp.SerialPort.NetCore.ConsoleSample.csproj -------------------------------------------------------------------------------- /test/GodSharp.SerialPort.NetCore.ConsoleSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godsharp/GodSharp.SerialPort/HEAD/test/GodSharp.SerialPort.NetCore.ConsoleSample/Program.cs -------------------------------------------------------------------------------- /test/GodSharp.SerialPort.Tests/GodSharp.SerialPort.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godsharp/GodSharp.SerialPort/HEAD/test/GodSharp.SerialPort.Tests/GodSharp.SerialPort.Tests.csproj -------------------------------------------------------------------------------- /test/GodSharp.SerialPort.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godsharp/GodSharp.SerialPort/HEAD/test/GodSharp.SerialPort.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /test/GodSharp.SerialPort.Tests/SerialClassTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godsharp/GodSharp.SerialPort/HEAD/test/GodSharp.SerialPort.Tests/SerialClassTests.cs -------------------------------------------------------------------------------- /test/GodSharp.SerialPort.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godsharp/GodSharp.SerialPort/HEAD/test/GodSharp.SerialPort.Tests/packages.config --------------------------------------------------------------------------------