mirror of
https://github.com/SDRSharpR/SDRSharp.git
synced 2025-12-06 03:42:01 +01:00
28 lines
239 B
C#
28 lines
239 B
C#
namespace SDRSharp.Common
|
|
{
|
|
public interface IVFOSource
|
|
{
|
|
long VFOFrequency
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
int VFODecimation
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
int VFOMinIQDecimation
|
|
{
|
|
get;
|
|
}
|
|
|
|
double VFOMaxSampleRate
|
|
{
|
|
get;
|
|
}
|
|
}
|
|
}
|