Exemplo n.º 1
0
        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());
            }
        }
Exemplo n.º 2
0
 public void Stop()
 {
     if (_LimeDev != null)
     {
         _LimeDev.Stop();
     }
 }