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

19
SerialRadioInterface.cs Normal file
View File

@ -0,0 +1,19 @@
/*
* Created by SharpDevelop.
* User: uzix
* Date: 04.01.2017
* Time: 16:46
*/
using System;
using SDRSharp.Radio;
namespace SDRSharp.SerialController
{
public interface SerialRadioInterface
{
long RadioFrequency { get; set; }
DetectorType RadioMode { get; set; }
}
}