├── .github └── workflows │ └── dotnetcore.yml ├── .gitignore ├── LICENSE ├── README.md ├── global.json ├── publish.bat └── src ├── .editorconfig ├── Info.props ├── JT905.Protocol.Benchmark ├── JT905.Protocol.Benchmark.csproj ├── JT905SerializerContext.cs └── Program.cs ├── JT905.Protocol.Test ├── JT905.Protocol.Test.csproj ├── MessageBody │ ├── JT905_0x0001_Test.cs │ ├── JT905_0x0002_Test .cs │ ├── JT905_0x0104_Test.cs │ ├── JT905_0x0105_Test.cs │ ├── JT905_0x0200_Test.cs │ ├── JT905_0x0201_Test.cs │ ├── JT905_0x0203_Test.cs │ ├── JT905_0x0500_Test.cs │ ├── JT905_0x0800_Test.cs │ ├── JT905_0x0802_Test.cs │ ├── JT905_0x0B01_Test.cs │ ├── JT905_0x0B03_Test.cs │ ├── JT905_0x0B04_Test.cs │ ├── JT905_0x0B05_Test.cs │ ├── JT905_0x0B07_Test.cs │ ├── JT905_0x0B08_Test.cs │ ├── JT905_0x0B10_Test.cs │ ├── JT905_0x0B11_Test.cs │ ├── JT905_0x8001_Test.cs │ ├── JT905_0x8103_Test.cs │ ├── JT905_0x8104_Test.cs │ ├── JT905_0x8105_Test.cs │ ├── JT905_0x8201_Test.cs │ ├── JT905_0x8202_Test.cs │ ├── JT905_0x8300_Test.cs │ ├── JT905_0x8301_0x0301_Test.cs │ ├── JT905_0x8302_0x0302_Test.cs │ ├── JT905_0x8400_Test.cs │ ├── JT905_0x8401_Test.cs │ ├── JT905_0x8500_Test.cs │ ├── JT905_0x8801_Test.cs │ ├── JT905_0x8802_Test.cs │ ├── JT905_0x8803_Test.cs │ ├── JT905_0x8B00_Test.cs │ ├── JT905_0x8B01_Test.cs │ ├── JT905_0x8B09_Test.cs │ ├── JT905_0x8B0A_Test.cs │ ├── JT905_0x8B0B_Test.cs │ ├── JT905_0x8B10_Test.cs │ ├── JT905_0x8B11_Test.cs │ └── JTJsonWriterOptions.cs ├── SerialPort │ ├── BaseTest.cs │ ├── Taximeter_0x0000_Down_Test.cs │ └── Taximeter_0x00E8_Up_Test.cs └── Simples │ ├── Demo1.cs │ └── Demo2.cs ├── JT905.Protocol.sln └── JT905.Protocol ├── Buffers └── JT905BufferWriter.cs ├── Enums ├── JT905Alarm.cs ├── JT905BusinessType.cs ├── JT905CancellationReasons.cs ├── JT905ControlItem.cs ├── JT905ControlType.cs ├── JT905DeviceType.cs ├── JT905DirectionType.cs ├── JT905DrivenRouteType.cs ├── JT905ErrorCode.cs ├── JT905ISUResult.cs ├── JT905MsgId.cs ├── JT905MultimediaType.cs ├── JT905PhotoReason.cs ├── JT905PlatformResult.cs ├── JT905PositionType.cs ├── JT905Status.cs ├── JT905TelephoneBookContactType.cs ├── JT905TextFlag.cs └── JT905Version.cs ├── Exceptions └── JT905Exception.cs ├── Extensions ├── JT905AnalyzeExtensions.cs ├── JT905BinaryExtensions.cs ├── JT905ConfigExtensions.cs ├── JT905EnumExtensions.cs ├── JT905MessagePackFormatterResolverExtensions.cs ├── JT905PackageExtensions.cs └── JT905ValidationExtensions.cs ├── IJT905Builder.cs ├── Interfaces ├── IJT905Analyze.cs ├── IJT905Config.cs ├── IJT905Description.cs ├── IJT905ExternalRegister.cs ├── IJT905FormatterFactory.cs ├── IJT905MessagePackFormatter.cs ├── IJT905MsgIdFactory.cs ├── IJT905MsgSNDistributed.cs ├── IJT905SerialPortFactory.cs ├── IJT905_0x0200_Custom_Factory.cs ├── IJT905_0x0200_Factory.cs ├── IJT905_0x8103_Custom_Factory.cs ├── IJT905_0x8103_Factory.cs └── JT905GlobalConfigBase.cs ├── Internal ├── DefaultBuilder.cs ├── DefaultGlobalConfig.cs ├── DefaultMsgSNDistributedImpl.cs ├── JT905FormatterFactory.cs ├── JT905MsgIdFactory.cs ├── JT905SerialPortFactory.cs ├── JT905_0x0200_Custom_Factory.cs ├── JT905_0x0200_Factory.cs ├── JT905_0x8103_Custom_Factory.cs └── JT905_0x8103_Factory.cs ├── JT905.Protocol.csproj ├── JT905.Protocol.xml ├── JT905ArrayPool.cs ├── JT905Bodies.cs ├── JT905Constants.cs ├── JT905DependencyInjectionExtensions.cs ├── JT905Header.cs ├── JT905HeaderPackage.cs ├── JT905Package.cs ├── JT905Serializer.cs ├── MessageBody ├── JT905_0x0001.cs ├── JT905_0x0002.cs ├── JT905_0x0104.cs ├── JT905_0x0105.cs ├── JT905_0x0200.cs ├── JT905_0x0200_0x01.cs ├── JT905_0x0200_0x02.cs ├── JT905_0x0200_0x03.cs ├── JT905_0x0200_0x11.cs ├── JT905_0x0200_0x12.cs ├── JT905_0x0200_0x13.cs ├── JT905_0x0200_0x14.cs ├── JT905_0x0200_BodyBase.cs ├── JT905_0x0200_CustomBodyBase.cs ├── JT905_0x0200_CustomBodyBase2.cs ├── JT905_0x0200_CustomBodyBase3.cs ├── JT905_0x0200_CustomBodyBase4.cs ├── JT905_0x0201.cs ├── JT905_0x0202.cs ├── JT905_0x0203.cs ├── JT905_0x0301.cs ├── JT905_0x0302.cs ├── JT905_0x0500.cs ├── JT905_0x0800.cs ├── JT905_0x0802.cs ├── JT905_0x0B01.cs ├── JT905_0x0B03.cs ├── JT905_0x0B04.cs ├── JT905_0x0B05.cs ├── JT905_0x0B07.cs ├── JT905_0x0B08.cs ├── JT905_0x0B10.cs ├── JT905_0x0B11.cs ├── JT905_0x0B11_tlv.cs ├── JT905_0x8001.cs ├── JT905_0x8103.cs ├── JT905_0x8103_0x0001.cs ├── JT905_0x8103_0x0002.cs ├── JT905_0x8103_0x0003.cs ├── JT905_0x8103_0x0004.cs ├── JT905_0x8103_0x0005.cs ├── JT905_0x8103_0x0010.cs ├── JT905_0x8103_0x0011.cs ├── JT905_0x8103_0x0012.cs ├── JT905_0x8103_0x0013.cs ├── JT905_0x8103_0x0014.cs ├── JT905_0x8103_0x0015.cs ├── JT905_0x8103_0x0016.cs ├── JT905_0x8103_0x0017.cs ├── JT905_0x8103_0x0018.cs ├── JT905_0x8103_0x0019.cs ├── JT905_0x8103_0x001A.cs ├── JT905_0x8103_0x001B.cs ├── JT905_0x8103_0x001C.cs ├── JT905_0x8103_0x001D.cs ├── JT905_0x8103_0x0020.cs ├── JT905_0x8103_0x0021.cs ├── JT905_0x8103_0x0022.cs ├── JT905_0x8103_0x0023.cs ├── JT905_0x8103_0x0024.cs ├── JT905_0x8103_0x0025.cs ├── JT905_0x8103_0x0026.cs ├── JT905_0x8103_0x0027.cs ├── JT905_0x8103_0x0028.cs ├── JT905_0x8103_0x0029.cs ├── JT905_0x8103_0x002A.cs ├── JT905_0x8103_0x002B.cs ├── JT905_0x8103_0x002C.cs ├── JT905_0x8103_0x002D.cs ├── JT905_0x8103_0x002E.cs ├── JT905_0x8103_0x002F.cs ├── JT905_0x8103_0x0030.cs ├── JT905_0x8103_0x0040.cs ├── JT905_0x8103_0x0041.cs ├── JT905_0x8103_0x0042.cs ├── JT905_0x8103_0x0043.cs ├── JT905_0x8103_0x0044.cs ├── JT905_0x8103_0x0045.cs ├── JT905_0x8103_0x0046.cs ├── JT905_0x8103_0x0047.cs ├── JT905_0x8103_0x0048.cs ├── JT905_0x8103_0x0049.cs ├── JT905_0x8103_0x004A.cs ├── JT905_0x8103_0x004B.cs ├── JT905_0x8103_0x0050.cs ├── JT905_0x8103_0x0051.cs ├── JT905_0x8103_0x0052.cs ├── JT905_0x8103_0x0053.cs ├── JT905_0x8103_0x0055.cs ├── JT905_0x8103_0x0056.cs ├── JT905_0x8103_0x0057.cs ├── JT905_0x8103_0x0058.cs ├── JT905_0x8103_0x0059.cs ├── JT905_0x8103_0x005A.cs ├── JT905_0x8103_0x0070.cs ├── JT905_0x8103_0x0071.cs ├── JT905_0x8103_0x0072.cs ├── JT905_0x8103_0x0073.cs ├── JT905_0x8103_0x0074.cs ├── JT905_0x8103_0x0080.cs ├── JT905_0x8103_0x0081.cs ├── JT905_0x8103_0x0082.cs ├── JT905_0x8103_0x0090.cs ├── JT905_0x8103_0x0091.cs ├── JT905_0x8103_0x0092.cs ├── JT905_0x8103_0x0093.cs ├── JT905_0x8103_0x0094.cs ├── JT905_0x8103_0x00A0.cs ├── JT905_0x8103_0x00A1.cs ├── JT905_0x8103_0x00A2.cs ├── JT905_0x8103_0x00A3.cs ├── JT905_0x8103_0x00AF.cs ├── JT905_0x8103_0x00B0.cs ├── JT905_0x8103_0x00B1.cs ├── JT905_0x8103_0x00B2.cs ├── JT905_0x8103_0x00B3.cs ├── JT905_0x8103_0x00B4.cs ├── JT905_0x8103_0x00B5.cs ├── JT905_0x8103_BodyBase.cs ├── JT905_0x8103_CustomBodyBase.cs ├── JT905_0x8104.cs ├── JT905_0x8105.cs ├── JT905_0x8201.cs ├── JT905_0x8202.cs ├── JT905_0x8300.cs ├── JT905_0x8301.cs ├── JT905_0x8302.cs ├── JT905_0x8400.cs ├── JT905_0x8401.cs ├── JT905_0x8500.cs ├── JT905_0x8801.cs ├── JT905_0x8802.cs ├── JT905_0x8803.cs ├── JT905_0x8B00.cs ├── JT905_0x8B01.cs ├── JT905_0x8B09.cs ├── JT905_0x8B0A.cs ├── JT905_0x8B0B.cs ├── JT905_0x8B10.cs └── JT905_0x8B11.cs ├── MessagePack ├── JT905MessagePackReader.cs ├── JT905MessagePackWriter.cs ├── JT905SerialPortMessagePackReader.cs └── JT905SerialPortMessagePackWriter.cs └── SerialPort ├── Buffers └── JT905BufferWriter.cs ├── IBody.cs ├── SerialPortPackage.cs ├── SerialPortSerializer.cs ├── Taximeter ├── Taximeter_0x0000_Down.cs ├── Taximeter_0x0000_Up.cs ├── Taximeter_0x0004_Down.cs ├── Taximeter_0x0004_Up.cs ├── Taximeter_0x0005_Down.cs ├── Taximeter_0x0005_Up.cs ├── Taximeter_0x00E7_Down.cs ├── Taximeter_0x00E7_Up.cs ├── Taximeter_0x00E8_Down.cs ├── Taximeter_0x00E8_Up.cs ├── Taximeter_0x00F2_Down.cs └── Taximeter_0x00F2_Up.cs └── TerminalNumber.cs /.github/workflows/dotnetcore.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/.github/workflows/dotnetcore.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/README.md -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/global.json -------------------------------------------------------------------------------- /publish.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/publish.bat -------------------------------------------------------------------------------- /src/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/.editorconfig -------------------------------------------------------------------------------- /src/Info.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/Info.props -------------------------------------------------------------------------------- /src/JT905.Protocol.Benchmark/JT905.Protocol.Benchmark.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol.Benchmark/JT905.Protocol.Benchmark.csproj -------------------------------------------------------------------------------- /src/JT905.Protocol.Benchmark/JT905SerializerContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol.Benchmark/JT905SerializerContext.cs -------------------------------------------------------------------------------- /src/JT905.Protocol.Benchmark/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol.Benchmark/Program.cs -------------------------------------------------------------------------------- /src/JT905.Protocol.Test/JT905.Protocol.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol.Test/JT905.Protocol.Test.csproj -------------------------------------------------------------------------------- /src/JT905.Protocol.Test/MessageBody/JT905_0x0001_Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol.Test/MessageBody/JT905_0x0001_Test.cs -------------------------------------------------------------------------------- /src/JT905.Protocol.Test/MessageBody/JT905_0x0002_Test .cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol.Test/MessageBody/JT905_0x0002_Test .cs -------------------------------------------------------------------------------- /src/JT905.Protocol.Test/MessageBody/JT905_0x0104_Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol.Test/MessageBody/JT905_0x0104_Test.cs -------------------------------------------------------------------------------- /src/JT905.Protocol.Test/MessageBody/JT905_0x0105_Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol.Test/MessageBody/JT905_0x0105_Test.cs -------------------------------------------------------------------------------- /src/JT905.Protocol.Test/MessageBody/JT905_0x0200_Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol.Test/MessageBody/JT905_0x0200_Test.cs -------------------------------------------------------------------------------- /src/JT905.Protocol.Test/MessageBody/JT905_0x0201_Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol.Test/MessageBody/JT905_0x0201_Test.cs -------------------------------------------------------------------------------- /src/JT905.Protocol.Test/MessageBody/JT905_0x0203_Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol.Test/MessageBody/JT905_0x0203_Test.cs -------------------------------------------------------------------------------- /src/JT905.Protocol.Test/MessageBody/JT905_0x0500_Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol.Test/MessageBody/JT905_0x0500_Test.cs -------------------------------------------------------------------------------- /src/JT905.Protocol.Test/MessageBody/JT905_0x0800_Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol.Test/MessageBody/JT905_0x0800_Test.cs -------------------------------------------------------------------------------- /src/JT905.Protocol.Test/MessageBody/JT905_0x0802_Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol.Test/MessageBody/JT905_0x0802_Test.cs -------------------------------------------------------------------------------- /src/JT905.Protocol.Test/MessageBody/JT905_0x0B01_Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol.Test/MessageBody/JT905_0x0B01_Test.cs -------------------------------------------------------------------------------- /src/JT905.Protocol.Test/MessageBody/JT905_0x0B03_Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol.Test/MessageBody/JT905_0x0B03_Test.cs -------------------------------------------------------------------------------- /src/JT905.Protocol.Test/MessageBody/JT905_0x0B04_Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol.Test/MessageBody/JT905_0x0B04_Test.cs -------------------------------------------------------------------------------- /src/JT905.Protocol.Test/MessageBody/JT905_0x0B05_Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol.Test/MessageBody/JT905_0x0B05_Test.cs -------------------------------------------------------------------------------- /src/JT905.Protocol.Test/MessageBody/JT905_0x0B07_Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol.Test/MessageBody/JT905_0x0B07_Test.cs -------------------------------------------------------------------------------- /src/JT905.Protocol.Test/MessageBody/JT905_0x0B08_Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol.Test/MessageBody/JT905_0x0B08_Test.cs -------------------------------------------------------------------------------- /src/JT905.Protocol.Test/MessageBody/JT905_0x0B10_Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol.Test/MessageBody/JT905_0x0B10_Test.cs -------------------------------------------------------------------------------- /src/JT905.Protocol.Test/MessageBody/JT905_0x0B11_Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol.Test/MessageBody/JT905_0x0B11_Test.cs -------------------------------------------------------------------------------- /src/JT905.Protocol.Test/MessageBody/JT905_0x8001_Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol.Test/MessageBody/JT905_0x8001_Test.cs -------------------------------------------------------------------------------- /src/JT905.Protocol.Test/MessageBody/JT905_0x8103_Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol.Test/MessageBody/JT905_0x8103_Test.cs -------------------------------------------------------------------------------- /src/JT905.Protocol.Test/MessageBody/JT905_0x8104_Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol.Test/MessageBody/JT905_0x8104_Test.cs -------------------------------------------------------------------------------- /src/JT905.Protocol.Test/MessageBody/JT905_0x8105_Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol.Test/MessageBody/JT905_0x8105_Test.cs -------------------------------------------------------------------------------- /src/JT905.Protocol.Test/MessageBody/JT905_0x8201_Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol.Test/MessageBody/JT905_0x8201_Test.cs -------------------------------------------------------------------------------- /src/JT905.Protocol.Test/MessageBody/JT905_0x8202_Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol.Test/MessageBody/JT905_0x8202_Test.cs -------------------------------------------------------------------------------- /src/JT905.Protocol.Test/MessageBody/JT905_0x8300_Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol.Test/MessageBody/JT905_0x8300_Test.cs -------------------------------------------------------------------------------- /src/JT905.Protocol.Test/MessageBody/JT905_0x8301_0x0301_Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol.Test/MessageBody/JT905_0x8301_0x0301_Test.cs -------------------------------------------------------------------------------- /src/JT905.Protocol.Test/MessageBody/JT905_0x8302_0x0302_Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol.Test/MessageBody/JT905_0x8302_0x0302_Test.cs -------------------------------------------------------------------------------- /src/JT905.Protocol.Test/MessageBody/JT905_0x8400_Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol.Test/MessageBody/JT905_0x8400_Test.cs -------------------------------------------------------------------------------- /src/JT905.Protocol.Test/MessageBody/JT905_0x8401_Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol.Test/MessageBody/JT905_0x8401_Test.cs -------------------------------------------------------------------------------- /src/JT905.Protocol.Test/MessageBody/JT905_0x8500_Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol.Test/MessageBody/JT905_0x8500_Test.cs -------------------------------------------------------------------------------- /src/JT905.Protocol.Test/MessageBody/JT905_0x8801_Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol.Test/MessageBody/JT905_0x8801_Test.cs -------------------------------------------------------------------------------- /src/JT905.Protocol.Test/MessageBody/JT905_0x8802_Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol.Test/MessageBody/JT905_0x8802_Test.cs -------------------------------------------------------------------------------- /src/JT905.Protocol.Test/MessageBody/JT905_0x8803_Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol.Test/MessageBody/JT905_0x8803_Test.cs -------------------------------------------------------------------------------- /src/JT905.Protocol.Test/MessageBody/JT905_0x8B00_Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol.Test/MessageBody/JT905_0x8B00_Test.cs -------------------------------------------------------------------------------- /src/JT905.Protocol.Test/MessageBody/JT905_0x8B01_Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol.Test/MessageBody/JT905_0x8B01_Test.cs -------------------------------------------------------------------------------- /src/JT905.Protocol.Test/MessageBody/JT905_0x8B09_Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol.Test/MessageBody/JT905_0x8B09_Test.cs -------------------------------------------------------------------------------- /src/JT905.Protocol.Test/MessageBody/JT905_0x8B0A_Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol.Test/MessageBody/JT905_0x8B0A_Test.cs -------------------------------------------------------------------------------- /src/JT905.Protocol.Test/MessageBody/JT905_0x8B0B_Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol.Test/MessageBody/JT905_0x8B0B_Test.cs -------------------------------------------------------------------------------- /src/JT905.Protocol.Test/MessageBody/JT905_0x8B10_Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol.Test/MessageBody/JT905_0x8B10_Test.cs -------------------------------------------------------------------------------- /src/JT905.Protocol.Test/MessageBody/JT905_0x8B11_Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol.Test/MessageBody/JT905_0x8B11_Test.cs -------------------------------------------------------------------------------- /src/JT905.Protocol.Test/MessageBody/JTJsonWriterOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol.Test/MessageBody/JTJsonWriterOptions.cs -------------------------------------------------------------------------------- /src/JT905.Protocol.Test/SerialPort/BaseTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol.Test/SerialPort/BaseTest.cs -------------------------------------------------------------------------------- /src/JT905.Protocol.Test/SerialPort/Taximeter_0x0000_Down_Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol.Test/SerialPort/Taximeter_0x0000_Down_Test.cs -------------------------------------------------------------------------------- /src/JT905.Protocol.Test/SerialPort/Taximeter_0x00E8_Up_Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol.Test/SerialPort/Taximeter_0x00E8_Up_Test.cs -------------------------------------------------------------------------------- /src/JT905.Protocol.Test/Simples/Demo1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol.Test/Simples/Demo1.cs -------------------------------------------------------------------------------- /src/JT905.Protocol.Test/Simples/Demo2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol.Test/Simples/Demo2.cs -------------------------------------------------------------------------------- /src/JT905.Protocol.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol.sln -------------------------------------------------------------------------------- /src/JT905.Protocol/Buffers/JT905BufferWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Buffers/JT905BufferWriter.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/Enums/JT905Alarm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Enums/JT905Alarm.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/Enums/JT905BusinessType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Enums/JT905BusinessType.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/Enums/JT905CancellationReasons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Enums/JT905CancellationReasons.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/Enums/JT905ControlItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Enums/JT905ControlItem.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/Enums/JT905ControlType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Enums/JT905ControlType.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/Enums/JT905DeviceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Enums/JT905DeviceType.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/Enums/JT905DirectionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Enums/JT905DirectionType.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/Enums/JT905DrivenRouteType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Enums/JT905DrivenRouteType.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/Enums/JT905ErrorCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Enums/JT905ErrorCode.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/Enums/JT905ISUResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Enums/JT905ISUResult.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/Enums/JT905MsgId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Enums/JT905MsgId.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/Enums/JT905MultimediaType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Enums/JT905MultimediaType.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/Enums/JT905PhotoReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Enums/JT905PhotoReason.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/Enums/JT905PlatformResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Enums/JT905PlatformResult.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/Enums/JT905PositionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Enums/JT905PositionType.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/Enums/JT905Status.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Enums/JT905Status.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/Enums/JT905TelephoneBookContactType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Enums/JT905TelephoneBookContactType.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/Enums/JT905TextFlag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Enums/JT905TextFlag.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/Enums/JT905Version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Enums/JT905Version.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/Exceptions/JT905Exception.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Exceptions/JT905Exception.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/Extensions/JT905AnalyzeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Extensions/JT905AnalyzeExtensions.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/Extensions/JT905BinaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Extensions/JT905BinaryExtensions.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/Extensions/JT905ConfigExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Extensions/JT905ConfigExtensions.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/Extensions/JT905EnumExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Extensions/JT905EnumExtensions.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/Extensions/JT905MessagePackFormatterResolverExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Extensions/JT905MessagePackFormatterResolverExtensions.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/Extensions/JT905PackageExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Extensions/JT905PackageExtensions.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/Extensions/JT905ValidationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Extensions/JT905ValidationExtensions.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/IJT905Builder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/IJT905Builder.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/Interfaces/IJT905Analyze.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Interfaces/IJT905Analyze.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/Interfaces/IJT905Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Interfaces/IJT905Config.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/Interfaces/IJT905Description.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Interfaces/IJT905Description.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/Interfaces/IJT905ExternalRegister.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Interfaces/IJT905ExternalRegister.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/Interfaces/IJT905FormatterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Interfaces/IJT905FormatterFactory.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/Interfaces/IJT905MessagePackFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Interfaces/IJT905MessagePackFormatter.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/Interfaces/IJT905MsgIdFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Interfaces/IJT905MsgIdFactory.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/Interfaces/IJT905MsgSNDistributed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Interfaces/IJT905MsgSNDistributed.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/Interfaces/IJT905SerialPortFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Interfaces/IJT905SerialPortFactory.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/Interfaces/IJT905_0x0200_Custom_Factory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Interfaces/IJT905_0x0200_Custom_Factory.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/Interfaces/IJT905_0x0200_Factory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Interfaces/IJT905_0x0200_Factory.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/Interfaces/IJT905_0x8103_Custom_Factory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Interfaces/IJT905_0x8103_Custom_Factory.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/Interfaces/IJT905_0x8103_Factory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Interfaces/IJT905_0x8103_Factory.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/Interfaces/JT905GlobalConfigBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Interfaces/JT905GlobalConfigBase.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/Internal/DefaultBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Internal/DefaultBuilder.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/Internal/DefaultGlobalConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Internal/DefaultGlobalConfig.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/Internal/DefaultMsgSNDistributedImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Internal/DefaultMsgSNDistributedImpl.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/Internal/JT905FormatterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Internal/JT905FormatterFactory.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/Internal/JT905MsgIdFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Internal/JT905MsgIdFactory.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/Internal/JT905SerialPortFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Internal/JT905SerialPortFactory.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/Internal/JT905_0x0200_Custom_Factory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Internal/JT905_0x0200_Custom_Factory.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/Internal/JT905_0x0200_Factory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Internal/JT905_0x0200_Factory.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/Internal/JT905_0x8103_Custom_Factory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Internal/JT905_0x8103_Custom_Factory.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/Internal/JT905_0x8103_Factory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/Internal/JT905_0x8103_Factory.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/JT905.Protocol.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/JT905.Protocol.csproj -------------------------------------------------------------------------------- /src/JT905.Protocol/JT905.Protocol.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/JT905.Protocol.xml -------------------------------------------------------------------------------- /src/JT905.Protocol/JT905ArrayPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/JT905ArrayPool.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/JT905Bodies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/JT905Bodies.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/JT905Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/JT905Constants.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/JT905DependencyInjectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/JT905DependencyInjectionExtensions.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/JT905Header.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/JT905Header.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/JT905HeaderPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/JT905HeaderPackage.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/JT905Package.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/JT905Package.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/JT905Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/JT905Serializer.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x0001.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x0001.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x0002.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x0002.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x0104.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x0104.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x0105.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x0105.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x0200.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x0200.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x0200_0x01.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x0200_0x01.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x0200_0x02.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x0200_0x02.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x0200_0x03.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x0200_0x03.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x0200_0x11.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x0200_0x11.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x0200_0x12.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x0200_0x12.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x0200_0x13.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x0200_0x13.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x0200_0x14.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x0200_0x14.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x0200_BodyBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x0200_BodyBase.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x0200_CustomBodyBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x0200_CustomBodyBase.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x0200_CustomBodyBase2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x0200_CustomBodyBase2.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x0200_CustomBodyBase3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x0200_CustomBodyBase3.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x0200_CustomBodyBase4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x0200_CustomBodyBase4.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x0201.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x0201.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x0202.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x0202.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x0203.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x0203.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x0301.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x0301.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x0302.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x0302.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x0500.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x0500.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x0800.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x0800.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x0802.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x0802.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x0B01.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x0B01.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x0B03.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x0B03.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x0B04.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x0B04.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x0B05.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x0B05.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x0B07.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x0B07.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x0B08.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x0B08.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x0B10.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x0B10.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x0B11.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x0B11.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x0B11_tlv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x0B11_tlv.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8001.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8001.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0001.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0001.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0002.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0002.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0003.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0003.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0004.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0004.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0005.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0005.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0010.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0010.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0011.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0011.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0012.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0012.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0013.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0013.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0014.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0014.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0015.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0015.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0016.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0016.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0017.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0017.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0018.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0018.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0019.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0019.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x001A.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x001A.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x001B.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x001B.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x001C.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x001C.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x001D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x001D.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0020.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0020.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0021.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0021.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0022.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0022.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0023.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0023.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0024.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0024.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0025.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0025.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0026.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0026.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0027.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0027.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0028.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0028.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0029.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0029.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x002A.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x002A.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x002B.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x002B.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x002C.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x002C.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x002D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x002D.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x002E.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x002E.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x002F.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x002F.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0030.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0030.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0040.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0040.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0041.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0041.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0042.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0042.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0043.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0043.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0044.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0044.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0045.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0045.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0046.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0046.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0047.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0047.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0048.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0048.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0049.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0049.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x004A.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x004A.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x004B.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x004B.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0050.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0050.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0051.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0051.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0052.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0052.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0053.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0053.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0055.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0055.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0056.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0056.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0057.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0057.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0058.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0058.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0059.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0059.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x005A.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x005A.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0070.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0070.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0071.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0071.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0072.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0072.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0073.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0073.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0074.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0074.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0080.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0080.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0081.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0081.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0082.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0082.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0090.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0090.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0091.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0091.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0092.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0092.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0093.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0093.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x0094.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x0094.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x00A0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x00A0.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x00A1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x00A1.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x00A2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x00A2.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x00A3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x00A3.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x00AF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x00AF.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x00B0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x00B0.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x00B1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x00B1.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x00B2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x00B2.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x00B3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x00B3.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x00B4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x00B4.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_0x00B5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_0x00B5.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_BodyBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_BodyBase.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8103_CustomBodyBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8103_CustomBodyBase.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8104.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8104.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8105.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8105.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8201.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8201.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8202.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8202.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8300.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8300.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8301.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8301.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8302.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8302.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8400.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8400.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8401.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8401.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8500.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8500.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8801.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8801.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8802.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8802.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8803.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8803.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8B00.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8B00.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8B01.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8B01.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8B09.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8B09.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8B0A.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8B0A.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8B0B.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8B0B.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8B10.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8B10.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessageBody/JT905_0x8B11.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessageBody/JT905_0x8B11.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessagePack/JT905MessagePackReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessagePack/JT905MessagePackReader.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessagePack/JT905MessagePackWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessagePack/JT905MessagePackWriter.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessagePack/JT905SerialPortMessagePackReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessagePack/JT905SerialPortMessagePackReader.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/MessagePack/JT905SerialPortMessagePackWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/MessagePack/JT905SerialPortMessagePackWriter.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/SerialPort/Buffers/JT905BufferWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/SerialPort/Buffers/JT905BufferWriter.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/SerialPort/IBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/SerialPort/IBody.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/SerialPort/SerialPortPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/SerialPort/SerialPortPackage.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/SerialPort/SerialPortSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/SerialPort/SerialPortSerializer.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/SerialPort/Taximeter/Taximeter_0x0000_Down.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/SerialPort/Taximeter/Taximeter_0x0000_Down.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/SerialPort/Taximeter/Taximeter_0x0000_Up.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/SerialPort/Taximeter/Taximeter_0x0000_Up.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/SerialPort/Taximeter/Taximeter_0x0004_Down.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/SerialPort/Taximeter/Taximeter_0x0004_Down.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/SerialPort/Taximeter/Taximeter_0x0004_Up.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/SerialPort/Taximeter/Taximeter_0x0004_Up.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/SerialPort/Taximeter/Taximeter_0x0005_Down.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/SerialPort/Taximeter/Taximeter_0x0005_Down.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/SerialPort/Taximeter/Taximeter_0x0005_Up.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/SerialPort/Taximeter/Taximeter_0x0005_Up.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/SerialPort/Taximeter/Taximeter_0x00E7_Down.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/SerialPort/Taximeter/Taximeter_0x00E7_Down.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/SerialPort/Taximeter/Taximeter_0x00E7_Up.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/SerialPort/Taximeter/Taximeter_0x00E7_Up.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/SerialPort/Taximeter/Taximeter_0x00E8_Down.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/SerialPort/Taximeter/Taximeter_0x00E8_Down.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/SerialPort/Taximeter/Taximeter_0x00E8_Up.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/SerialPort/Taximeter/Taximeter_0x00E8_Up.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/SerialPort/Taximeter/Taximeter_0x00F2_Down.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/SerialPort/Taximeter/Taximeter_0x00F2_Down.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/SerialPort/Taximeter/Taximeter_0x00F2_Up.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/SerialPort/Taximeter/Taximeter_0x00F2_Up.cs -------------------------------------------------------------------------------- /src/JT905.Protocol/SerialPort/TerminalNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallChi/JT905/HEAD/src/JT905.Protocol/SerialPort/TerminalNumber.cs --------------------------------------------------------------------------------