示例#1
0
 public byte[] getObdConfigSettingMsg(String imei, String content)
 {
     byte[] command = { 0x26, 0x26, (byte)0x82 };
     return(Encoder.getConfigSettingMsg(imei, content, command, encryptType, aesKey));
 }
示例#2
0
 /// <summary>
 /// Get config setting msg byte [ ].
 /// </summary>
 /// <param name="imei">The imei</param>
 /// <param name="content">The config Content,also you can use sms command</param>
 /// <returns>The config setting msg byte [ ].</returns>
 public static byte[] getConfigSettingMsg(String imei, String content)
 {
     byte[] command = { 0x23, 0x23, (byte)0x81 };
     return(Encoder.getConfigSettingMsg(imei, content, command, MessageEncryptType.NONE, null));
 }