Ejemplo n.º 1
0
        private void UpdateEQMode(int seq, uint resp_val, string s)
        {
            if (resp_val != 0)
            {
                return;
            }

            //bool b = bool.TryParse(s, out _eq_enabled);
            // TODO: Maybe come back and change this with further EQ Expansion
            bool b = true;

            if (!b)
            {
                Debug.WriteLine("Equalizer: UpdateEQMode-Error parsing Mode (" + s + ")");
                return;
            }

            _radio.AddEqualizer(this);
        }