31 lines
602 B
C#
31 lines
602 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace XMX.FileTransmit
|
|
{
|
|
public delegate void SendToUartEventHandler(object sender,SendToUartEventArgs e);
|
|
|
|
interface ITransmitUart
|
|
{
|
|
event SendToUartEventHandler SendToUartEvent;
|
|
|
|
void ReceivedFromUart(byte[] data);
|
|
}
|
|
|
|
public class SendToUartEventArgs : EventArgs
|
|
{
|
|
private readonly byte[] _Data;
|
|
|
|
public SendToUartEventArgs(byte[] data)
|
|
{
|
|
_Data = data;
|
|
}
|
|
|
|
public byte[] Data
|
|
{
|
|
get { return _Data; }
|
|
}
|
|
}
|
|
}
|