KFDtool/sw/control/KFDtool.P25/DeviceProtocol/IDeviceProtocol.cs

22 lines
410 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace KFDtool.P25.DeviceProtocol
{
public interface IDeviceProtocol
{
void SendKeySignature();
void InitSession();
void CheckTargetMrConnection();
void EndSession();
byte[] PerformKmmTransfer(byte[] kmm);
}
}