├── .gitattributes ├── .gitignore ├── BaoYuanSerial.sln ├── BaoYuanSerial ├── App.axaml ├── App.axaml.cs ├── Assets │ ├── Language │ │ ├── en-US.json │ │ └── zh-CN.json │ ├── ascii.json │ ├── avalonia-logo.ico │ ├── clear.png │ ├── hide-left.png │ ├── locSet.json │ ├── options.png │ ├── pause.png │ ├── save.png │ ├── start.png │ ├── stop.png │ ├── weixin.png │ ├── yinyang_32.png │ ├── yinyang_64.ico │ ├── yinyang_64.png │ └── zhifubao.png ├── BaoYuanSerial.csproj ├── Base │ └── NotifyPropertyBase.cs ├── GlobalPara.cs ├── Models │ ├── AsciiJson.cs │ ├── DisplayPara.cs │ ├── LocSet.cs │ ├── LogPara.cs │ ├── ReceivePara.cs │ ├── SendPara.cs │ ├── SerialPort.cs │ └── SerialPortPara.cs ├── Program.cs ├── Util │ ├── DataConvertUtility.cs │ ├── JSONHelper.cs │ ├── LocalizeExtension.cs │ ├── Localizer.cs │ ├── StringCheck.cs │ └── Tool.cs ├── ViewLocator.cs ├── ViewModels │ ├── AboutViewModel.cs │ ├── AsciiCodeViewModel.cs │ ├── MainWindowViewModel.cs │ ├── OptionsViewModel.cs │ ├── ToolBoxViewModel.cs │ └── ViewModelBase.cs ├── Views │ ├── AboutWindow.axaml │ ├── AboutWindow.axaml.cs │ ├── AsciiCodeWindow.axaml │ ├── AsciiCodeWindow.axaml.cs │ ├── DonateWindow.axaml │ ├── DonateWindow.axaml.cs │ ├── MainWindow.axaml │ ├── MainWindow.axaml.cs │ ├── Options.axaml │ ├── Options.axaml.cs │ ├── ToolBoxWindow.axaml │ └── ToolBoxWindow.axaml.cs ├── libnserial.so ├── libnserial.so.1 ├── libnserial.so.1.1 └── nuget.config ├── Img ├── MainUI_Ubuntu.png ├── MainUI_WIN10.png ├── ascii.png ├── main_ch.png ├── opt1.png ├── opt2.png ├── opt3.png ├── opt4.png ├── toolbox.png └── toolbox2.png ├── LICENSE ├── Language.cfg ├── README.md └── 编译说明.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/.gitignore -------------------------------------------------------------------------------- /BaoYuanSerial.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial.sln -------------------------------------------------------------------------------- /BaoYuanSerial/App.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/App.axaml -------------------------------------------------------------------------------- /BaoYuanSerial/App.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/App.axaml.cs -------------------------------------------------------------------------------- /BaoYuanSerial/Assets/Language/en-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/Assets/Language/en-US.json -------------------------------------------------------------------------------- /BaoYuanSerial/Assets/Language/zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/Assets/Language/zh-CN.json -------------------------------------------------------------------------------- /BaoYuanSerial/Assets/ascii.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/Assets/ascii.json -------------------------------------------------------------------------------- /BaoYuanSerial/Assets/avalonia-logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/Assets/avalonia-logo.ico -------------------------------------------------------------------------------- /BaoYuanSerial/Assets/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/Assets/clear.png -------------------------------------------------------------------------------- /BaoYuanSerial/Assets/hide-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/Assets/hide-left.png -------------------------------------------------------------------------------- /BaoYuanSerial/Assets/locSet.json: -------------------------------------------------------------------------------- 1 | { 2 | "Language":"en-US" 3 | } -------------------------------------------------------------------------------- /BaoYuanSerial/Assets/options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/Assets/options.png -------------------------------------------------------------------------------- /BaoYuanSerial/Assets/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/Assets/pause.png -------------------------------------------------------------------------------- /BaoYuanSerial/Assets/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/Assets/save.png -------------------------------------------------------------------------------- /BaoYuanSerial/Assets/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/Assets/start.png -------------------------------------------------------------------------------- /BaoYuanSerial/Assets/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/Assets/stop.png -------------------------------------------------------------------------------- /BaoYuanSerial/Assets/weixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/Assets/weixin.png -------------------------------------------------------------------------------- /BaoYuanSerial/Assets/yinyang_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/Assets/yinyang_32.png -------------------------------------------------------------------------------- /BaoYuanSerial/Assets/yinyang_64.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/Assets/yinyang_64.ico -------------------------------------------------------------------------------- /BaoYuanSerial/Assets/yinyang_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/Assets/yinyang_64.png -------------------------------------------------------------------------------- /BaoYuanSerial/Assets/zhifubao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/Assets/zhifubao.png -------------------------------------------------------------------------------- /BaoYuanSerial/BaoYuanSerial.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/BaoYuanSerial.csproj -------------------------------------------------------------------------------- /BaoYuanSerial/Base/NotifyPropertyBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/Base/NotifyPropertyBase.cs -------------------------------------------------------------------------------- /BaoYuanSerial/GlobalPara.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/GlobalPara.cs -------------------------------------------------------------------------------- /BaoYuanSerial/Models/AsciiJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/Models/AsciiJson.cs -------------------------------------------------------------------------------- /BaoYuanSerial/Models/DisplayPara.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/Models/DisplayPara.cs -------------------------------------------------------------------------------- /BaoYuanSerial/Models/LocSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/Models/LocSet.cs -------------------------------------------------------------------------------- /BaoYuanSerial/Models/LogPara.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/Models/LogPara.cs -------------------------------------------------------------------------------- /BaoYuanSerial/Models/ReceivePara.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/Models/ReceivePara.cs -------------------------------------------------------------------------------- /BaoYuanSerial/Models/SendPara.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/Models/SendPara.cs -------------------------------------------------------------------------------- /BaoYuanSerial/Models/SerialPort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/Models/SerialPort.cs -------------------------------------------------------------------------------- /BaoYuanSerial/Models/SerialPortPara.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/Models/SerialPortPara.cs -------------------------------------------------------------------------------- /BaoYuanSerial/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/Program.cs -------------------------------------------------------------------------------- /BaoYuanSerial/Util/DataConvertUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/Util/DataConvertUtility.cs -------------------------------------------------------------------------------- /BaoYuanSerial/Util/JSONHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/Util/JSONHelper.cs -------------------------------------------------------------------------------- /BaoYuanSerial/Util/LocalizeExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/Util/LocalizeExtension.cs -------------------------------------------------------------------------------- /BaoYuanSerial/Util/Localizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/Util/Localizer.cs -------------------------------------------------------------------------------- /BaoYuanSerial/Util/StringCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/Util/StringCheck.cs -------------------------------------------------------------------------------- /BaoYuanSerial/Util/Tool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/Util/Tool.cs -------------------------------------------------------------------------------- /BaoYuanSerial/ViewLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/ViewLocator.cs -------------------------------------------------------------------------------- /BaoYuanSerial/ViewModels/AboutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/ViewModels/AboutViewModel.cs -------------------------------------------------------------------------------- /BaoYuanSerial/ViewModels/AsciiCodeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/ViewModels/AsciiCodeViewModel.cs -------------------------------------------------------------------------------- /BaoYuanSerial/ViewModels/MainWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/ViewModels/MainWindowViewModel.cs -------------------------------------------------------------------------------- /BaoYuanSerial/ViewModels/OptionsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/ViewModels/OptionsViewModel.cs -------------------------------------------------------------------------------- /BaoYuanSerial/ViewModels/ToolBoxViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/ViewModels/ToolBoxViewModel.cs -------------------------------------------------------------------------------- /BaoYuanSerial/ViewModels/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/ViewModels/ViewModelBase.cs -------------------------------------------------------------------------------- /BaoYuanSerial/Views/AboutWindow.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/Views/AboutWindow.axaml -------------------------------------------------------------------------------- /BaoYuanSerial/Views/AboutWindow.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/Views/AboutWindow.axaml.cs -------------------------------------------------------------------------------- /BaoYuanSerial/Views/AsciiCodeWindow.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/Views/AsciiCodeWindow.axaml -------------------------------------------------------------------------------- /BaoYuanSerial/Views/AsciiCodeWindow.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/Views/AsciiCodeWindow.axaml.cs -------------------------------------------------------------------------------- /BaoYuanSerial/Views/DonateWindow.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/Views/DonateWindow.axaml -------------------------------------------------------------------------------- /BaoYuanSerial/Views/DonateWindow.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/Views/DonateWindow.axaml.cs -------------------------------------------------------------------------------- /BaoYuanSerial/Views/MainWindow.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/Views/MainWindow.axaml -------------------------------------------------------------------------------- /BaoYuanSerial/Views/MainWindow.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/Views/MainWindow.axaml.cs -------------------------------------------------------------------------------- /BaoYuanSerial/Views/Options.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/Views/Options.axaml -------------------------------------------------------------------------------- /BaoYuanSerial/Views/Options.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/Views/Options.axaml.cs -------------------------------------------------------------------------------- /BaoYuanSerial/Views/ToolBoxWindow.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/Views/ToolBoxWindow.axaml -------------------------------------------------------------------------------- /BaoYuanSerial/Views/ToolBoxWindow.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/Views/ToolBoxWindow.axaml.cs -------------------------------------------------------------------------------- /BaoYuanSerial/libnserial.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/libnserial.so -------------------------------------------------------------------------------- /BaoYuanSerial/libnserial.so.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/libnserial.so.1 -------------------------------------------------------------------------------- /BaoYuanSerial/libnserial.so.1.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/libnserial.so.1.1 -------------------------------------------------------------------------------- /BaoYuanSerial/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/BaoYuanSerial/nuget.config -------------------------------------------------------------------------------- /Img/MainUI_Ubuntu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/Img/MainUI_Ubuntu.png -------------------------------------------------------------------------------- /Img/MainUI_WIN10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/Img/MainUI_WIN10.png -------------------------------------------------------------------------------- /Img/ascii.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/Img/ascii.png -------------------------------------------------------------------------------- /Img/main_ch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/Img/main_ch.png -------------------------------------------------------------------------------- /Img/opt1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/Img/opt1.png -------------------------------------------------------------------------------- /Img/opt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/Img/opt2.png -------------------------------------------------------------------------------- /Img/opt3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/Img/opt3.png -------------------------------------------------------------------------------- /Img/opt4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/Img/opt4.png -------------------------------------------------------------------------------- /Img/toolbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/Img/toolbox.png -------------------------------------------------------------------------------- /Img/toolbox2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/Img/toolbox2.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/LICENSE -------------------------------------------------------------------------------- /Language.cfg: -------------------------------------------------------------------------------- 1 | en-US -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/README.md -------------------------------------------------------------------------------- /编译说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyuanbao/BaoYuanSerial/HEAD/编译说明.txt --------------------------------------------------------------------------------