This website works better with JavaScript.
Home
Explore
Help
Sign In
SmallChi
/
JTNewEnergy
mirror of
https://github.com/SmallChi/JTNewEnergy.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
1
Wiki
Activity
Browse Source
增加信息类型标志枚举
tags/1.0.0
SmallChi
7 years ago
parent
878aff575c
commit
dc62a27c11
1 changed files
with
24 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+24
-0
src/GBNewEnergy.Protocol/Enums/NEInfoType.cs
+ 24
- 0
src/GBNewEnergy.Protocol/Enums/NEInfoType.cs
View File
@@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace GBNewEnergy.Protocol.Enums
{
/// <summary>
/// 信息类型标志
/// </summary>
public enum NEInfoType:byte
{
整车数据=0x01,
驱动电机数据=0x02,
燃料电池数据=0x03,
发动机数据=0x04,
车辆位置数据=0x05,
极值数据=0x06,
报警数据=0x07,
终端数据预留=0x08,
平台交换协议自定义数据=0x0A,
预留=0x30,
用户自定义=0x80
}
}
Write
Preview
Loading…
Cancel
Save