Home
last modified time | relevance | path

Searched refs:set_rx_agc (Results 1 – 15 of 15) sorted by relevance

/dports/comms/gnuradio/gnuradio-3.8.4.0/gr-uhd/include/gnuradio/uhd/
H A Dusrp_source.h262 virtual void set_rx_agc(const bool enable, size_t chan = 0) = 0;
/dports/comms/gnuradio/gnuradio-3.8.4.0/gr-uhd/lib/
H A Dusrp_source_impl.h85 void set_rx_agc(const bool enable, size_t chan);
H A Dusrp_source_impl.cc148 void usrp_source_impl::set_rx_agc(const bool enable, size_t chan) in set_rx_agc() function in gr::uhd::usrp_source_impl
152 return _dev->set_rx_agc(enable, chan); in set_rx_agc()
/dports/comms/uhd/uhd-90ce6062b6b5df2eddeee723777be85108e4e7c7/host/lib/rfnoc/
H A Dradio_control_python.hpp100 .def("set_rx_agc", &radio_control::set_rx_agc) in export_radio_control()
H A Dradio_control_impl.cpp434 void radio_control_impl::set_rx_agc(const bool, const size_t) in set_rx_agc() function in radio_control_impl
/dports/comms/uhd/uhd-90ce6062b6b5df2eddeee723777be85108e4e7c7/host/lib/usrp/dboard/e3xx/
H A De3xx_radio_control_impl.hpp97 void set_rx_agc(const bool enable, const size_t chan);
H A De3xx_radio_control_impl.cpp247 void e3xx_radio_control_impl::set_rx_agc(const bool enb, const size_t chan) in set_rx_agc() function in e3xx_radio_control_impl
/dports/comms/uhd/uhd-90ce6062b6b5df2eddeee723777be85108e4e7c7/host/include/uhd/rfnoc/
H A Dradio_control.hpp323 virtual void set_rx_agc(const bool enable, const size_t chan) = 0;
/dports/comms/uhd/uhd-90ce6062b6b5df2eddeee723777be85108e4e7c7/host/lib/include/uhdlib/rfnoc/
H A Dradio_control_impl.hpp73 virtual void set_rx_agc(const bool enable, const size_t chan);
/dports/comms/uhd/uhd-90ce6062b6b5df2eddeee723777be85108e4e7c7/host/include/uhd/usrp/
H A Dmulti_usrp.hpp1036 virtual void set_rx_agc(bool enable, size_t chan = 0) = 0;
/dports/comms/uhd/uhd-90ce6062b6b5df2eddeee723777be85108e4e7c7/host/lib/usrp/
H A Dmulti_usrp_python.hpp108 … .def("set_rx_agc" , &multi_usrp::set_rx_agc, py::arg("enable"), py::arg("chan") = 0) in export_multi_usrp()
H A Dmulti_usrp_rfnoc.cpp1429 void set_rx_agc(bool enable, size_t chan = 0) in set_rx_agc() function in multi_usrp_rfnoc
1431 MUX_RX_API_CALL(set_rx_agc, enable); in set_rx_agc()
1433 rx_chain.radio->set_rx_agc(enable, rx_chain.block_chan); in set_rx_agc()
H A Dusrp_c.cpp714 UHD_SAFE_C_SAVE_ERROR(h, USRP(h)->set_rx_agc(enable, chan);) in uhd_usrp_set_rx_agc()
H A Dmulti_usrp.cpp1647 void set_rx_agc(bool enable, size_t chan = 0) in set_rx_agc() function in multi_usrp_impl
1660 this->set_rx_agc(enable, c); in set_rx_agc()
/dports/comms/soapyuhd/SoapyUHD-soapy-uhd-0.4.1/
H A DSoapyUHDDevice.cpp538 if (dir == SOAPY_SDR_RX) return _dev->set_rx_agc(automatic, channel); in setGainMode()