├── .github └── FUNDING.yml ├── .gitignore ├── Installer-System ├── Installer-System.aip └── Installer-System.aiproj ├── Installer ├── Installer.aip └── Installer.aiproj ├── LICENSE ├── LICENSE.rtf ├── README.md └── SimplySerial ├── App.config ├── Arguments.cs ├── Boards.cs ├── ComPorts.cs ├── DataClasses.cs ├── Filters.cs ├── Properties └── AssemblyInfo.cs ├── SimplySerial.cs ├── SimplySerial.csproj ├── SimplySerial.sln ├── boards.json └── packages.config /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [fasteddy516] 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fasteddy516/SimplySerial/HEAD/.gitignore -------------------------------------------------------------------------------- /Installer-System/Installer-System.aip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fasteddy516/SimplySerial/HEAD/Installer-System/Installer-System.aip -------------------------------------------------------------------------------- /Installer-System/Installer-System.aiproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fasteddy516/SimplySerial/HEAD/Installer-System/Installer-System.aiproj -------------------------------------------------------------------------------- /Installer/Installer.aip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fasteddy516/SimplySerial/HEAD/Installer/Installer.aip -------------------------------------------------------------------------------- /Installer/Installer.aiproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fasteddy516/SimplySerial/HEAD/Installer/Installer.aiproj -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fasteddy516/SimplySerial/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fasteddy516/SimplySerial/HEAD/LICENSE.rtf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fasteddy516/SimplySerial/HEAD/README.md -------------------------------------------------------------------------------- /SimplySerial/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fasteddy516/SimplySerial/HEAD/SimplySerial/App.config -------------------------------------------------------------------------------- /SimplySerial/Arguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fasteddy516/SimplySerial/HEAD/SimplySerial/Arguments.cs -------------------------------------------------------------------------------- /SimplySerial/Boards.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fasteddy516/SimplySerial/HEAD/SimplySerial/Boards.cs -------------------------------------------------------------------------------- /SimplySerial/ComPorts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fasteddy516/SimplySerial/HEAD/SimplySerial/ComPorts.cs -------------------------------------------------------------------------------- /SimplySerial/DataClasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fasteddy516/SimplySerial/HEAD/SimplySerial/DataClasses.cs -------------------------------------------------------------------------------- /SimplySerial/Filters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fasteddy516/SimplySerial/HEAD/SimplySerial/Filters.cs -------------------------------------------------------------------------------- /SimplySerial/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fasteddy516/SimplySerial/HEAD/SimplySerial/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SimplySerial/SimplySerial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fasteddy516/SimplySerial/HEAD/SimplySerial/SimplySerial.cs -------------------------------------------------------------------------------- /SimplySerial/SimplySerial.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fasteddy516/SimplySerial/HEAD/SimplySerial/SimplySerial.csproj -------------------------------------------------------------------------------- /SimplySerial/SimplySerial.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fasteddy516/SimplySerial/HEAD/SimplySerial/SimplySerial.sln -------------------------------------------------------------------------------- /SimplySerial/boards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fasteddy516/SimplySerial/HEAD/SimplySerial/boards.json -------------------------------------------------------------------------------- /SimplySerial/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fasteddy516/SimplySerial/HEAD/SimplySerial/packages.config --------------------------------------------------------------------------------