Subversion Repositories group.electronics

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
158 pfowler 1
using System;
2
using System.Collections.Generic;
3
using System.Linq;
4
using System.Text;
5
using System.Threading.Tasks;
6
 
7
namespace nitdcscore
8
{
9
    public interface IDevice
10
    {
11
        void InitDevice();
12
 
13
        void SendData(int address, byte[] data, int count);
14
        void ReadData(int address, byte[] data, int count);
15
    }
16
}