├── .gitattributes ├── .gitignore ├── CH341DLL.DLL ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── MultimediaTimer.dll ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── README.md ├── RTC.xml ├── TestCH341.sln ├── TestCH341_I2C.csproj └── app.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webspiderteam/TestCH341/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webspiderteam/TestCH341/HEAD/.gitignore -------------------------------------------------------------------------------- /CH341DLL.DLL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webspiderteam/TestCH341/HEAD/CH341DLL.DLL -------------------------------------------------------------------------------- /Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webspiderteam/TestCH341/HEAD/Form1.Designer.cs -------------------------------------------------------------------------------- /Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webspiderteam/TestCH341/HEAD/Form1.cs -------------------------------------------------------------------------------- /Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webspiderteam/TestCH341/HEAD/Form1.resx -------------------------------------------------------------------------------- /MultimediaTimer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webspiderteam/TestCH341/HEAD/MultimediaTimer.dll -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webspiderteam/TestCH341/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webspiderteam/TestCH341/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webspiderteam/TestCH341/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webspiderteam/TestCH341/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webspiderteam/TestCH341/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webspiderteam/TestCH341/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webspiderteam/TestCH341/HEAD/README.md -------------------------------------------------------------------------------- /RTC.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webspiderteam/TestCH341/HEAD/RTC.xml -------------------------------------------------------------------------------- /TestCH341.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webspiderteam/TestCH341/HEAD/TestCH341.sln -------------------------------------------------------------------------------- /TestCH341_I2C.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webspiderteam/TestCH341/HEAD/TestCH341_I2C.csproj -------------------------------------------------------------------------------- /app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webspiderteam/TestCH341/HEAD/app.config --------------------------------------------------------------------------------