示例#1
0
 public byte[] getNetworkMsgReply(String imei, int serialNo)
 {
     byte[] command = { 0x27, 0x27, 0x11 };
     return(Encoder.getNetworkMsgReply(imei, serialNo, command, encryptType, aesKey));
 }
示例#2
0
 public byte[] getConfigSettingMsg(String imei, String content)
 {
     byte[] command = { 0x27, 0x27, (byte)0x81 };
     return(Encoder.getConfigSettingMsg(imei, content, command, encryptType, aesKey));
 }
示例#3
0
 public byte[] getLocationAlarmMsgReply(String imei, bool needSerialNo, int serialNo, int sourceAlarmCode)
 {
     byte[] command = { 0x27, 0x27, 0x04 };
     return(Encoder.getLocationAlarmMsgReply(imei, needSerialNo, serialNo, sourceAlarmCode, command, encryptType, aesKey));
 }
示例#4
0
 public byte[] getBluetoothPeripheralMsgReply(String imei, int serialNo)
 {
     byte[] command = { 0x27, 0x27, 0x10 };
     return(Encoder.getBluetoothPeripheralDataMsgReply(imei, serialNo, command, encryptType, aesKey));
 }
示例#5
0
 public byte[] getLocationMsgReply(String imei, bool needSerialNo, int serialNo)
 {
     byte[] command = { 0x27, 0x27, 0x02 };
     return(Encoder.getLocationMsgReply(imei, needSerialNo, serialNo, command, encryptType, aesKey));
 }