예제 #1
0
        public NotchFilter NotchFilter()
        {
            int  freqeuncy = 0;
            uint bandwidth = 0;
            bool actvie    = false;

            _radio.Check(_api.GetNotchFilter(_radio.GetHandle(), _ddc2.Channel(), ref actvie));
            _radio.Check(_api.GetNotchFilterBandwidth(_radio.GetHandle(), _ddc2.Channel(), ref bandwidth));
            _radio.Check(_api.GetNotchFilterFrequency(_radio.GetHandle(), _ddc2.Channel(), ref freqeuncy));

            return(new NotchFilter {
                Active = actvie, Bandwidth = bandwidth, Frequency = freqeuncy
            });
        }