public void Stop() { try { _gui.btnRadioInfo.Enabled = false; _gui.btnRadioRefresh.Enabled = true; _isStreaming = false; _gui.grpChannel.Enabled = true; _gui.samplerateComboBox.Enabled = true; if (_LimeDev != null) { try { _LimeDev.Stop(); } catch { } } } catch (Exception ex) { Debug.Write(ex.ToString()); } }
public void Stop() { if (_LimeDev != null) { _LimeDev.Stop(); } }