예제 #1
0
 public Vfo(VfoHookManager hookManager = null)
 {
     _hookManager = hookManager;
     _bandwidth = DefaultSSBBandwidth;
     _filterOrder = FilterBuilder.DefaultFilterOrder;
     _needConfigure = true;
 }
예제 #2
0
 public Vfo(VfoHookManager hookManager = null)
 {
     this._hookManager   = hookManager;
     this._bandwidth     = 2400;
     this._filterOrder   = 500;
     this._needConfigure = true;
 }
예제 #3
0
 public Vfo(VfoHookManager hookManager = null)
 {
     _hookManager   = hookManager;
     _bandwidth     = DefaultSSBBandwidth;
     _filterOrder   = FilterBuilder.DefaultFilterOrder;
     _needConfigure = true;
 }
예제 #4
0
        public MainForm()
        {
            _streamControl = new StreamControl();
            _vfoHookManager = new VfoHookManager();
            _vfo = new Vfo(_vfoHookManager);
            _vfoHookManager.Vfo = _vfo;

            InitializeComponent();
            InitializeGUI();
            InitialiseSharpPlugins();

            _vfoHookManager.RegisterStreamHook(this, ProcessorType.RawIQ);
        }