Blame | Last modification | View Log | RSS feed
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace nitdcscore
{
public interface IDevice
{
void InitDevice();
void SendData(int address, byte[] data, int count);
void ReadData(int address, byte[] data, int count);
}
}