refactor protocol

This commit is contained in:
UzixLS
2018-02-08 21:36:42 +03:00
parent 21496719dd
commit e5aa75b7e6
8 changed files with 196 additions and 140 deletions

17
ProtocolInterface.cs Normal file
View File

@ -0,0 +1,17 @@
/*
* Created by SharpDevelop.
* User: uzix
* Date: 04.01.2017
* Time: 16:02
*/
using System;
namespace SDRSharp.SerialController
{
public interface ProtocolInterface
{
string EndMarker { get; }
string PktTransmitter(string ChangedProperty);
string PktReceiver(string ReveivedData);
}
}