├── .gitignore ├── README.md ├── Serial.sln ├── SerialCom ├── App.config ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── SerialCom.csproj ├── bitbug_favicon.ico └── favicon.ico └── 简介 ├── intr.jpg └── introducing1.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihaishy/SerialPort-Communication/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihaishy/SerialPort-Communication/HEAD/README.md -------------------------------------------------------------------------------- /Serial.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihaishy/SerialPort-Communication/HEAD/Serial.sln -------------------------------------------------------------------------------- /SerialCom/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihaishy/SerialPort-Communication/HEAD/SerialCom/App.config -------------------------------------------------------------------------------- /SerialCom/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihaishy/SerialPort-Communication/HEAD/SerialCom/Form1.Designer.cs -------------------------------------------------------------------------------- /SerialCom/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihaishy/SerialPort-Communication/HEAD/SerialCom/Form1.cs -------------------------------------------------------------------------------- /SerialCom/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihaishy/SerialPort-Communication/HEAD/SerialCom/Form1.resx -------------------------------------------------------------------------------- /SerialCom/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihaishy/SerialPort-Communication/HEAD/SerialCom/Program.cs -------------------------------------------------------------------------------- /SerialCom/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihaishy/SerialPort-Communication/HEAD/SerialCom/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SerialCom/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihaishy/SerialPort-Communication/HEAD/SerialCom/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SerialCom/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihaishy/SerialPort-Communication/HEAD/SerialCom/Properties/Resources.resx -------------------------------------------------------------------------------- /SerialCom/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihaishy/SerialPort-Communication/HEAD/SerialCom/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /SerialCom/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihaishy/SerialPort-Communication/HEAD/SerialCom/Properties/Settings.settings -------------------------------------------------------------------------------- /SerialCom/SerialCom.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihaishy/SerialPort-Communication/HEAD/SerialCom/SerialCom.csproj -------------------------------------------------------------------------------- /SerialCom/bitbug_favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihaishy/SerialPort-Communication/HEAD/SerialCom/bitbug_favicon.ico -------------------------------------------------------------------------------- /SerialCom/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihaishy/SerialPort-Communication/HEAD/SerialCom/favicon.ico -------------------------------------------------------------------------------- /简介/intr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihaishy/SerialPort-Communication/HEAD/简介/intr.jpg -------------------------------------------------------------------------------- /简介/introducing1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naihaishy/SerialPort-Communication/HEAD/简介/introducing1.jpg --------------------------------------------------------------------------------