diff options
Diffstat (limited to 'host/lib/usrp/dboard/zbx/zbx_dboard_init.cpp')
-rw-r--r-- | host/lib/usrp/dboard/zbx/zbx_dboard_init.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/usrp/dboard/zbx/zbx_dboard_init.cpp b/host/lib/usrp/dboard/zbx/zbx_dboard_init.cpp index f0558f8a4..6871080ff 100644 --- a/host/lib/usrp/dboard/zbx/zbx_dboard_init.cpp +++ b/host/lib/usrp/dboard/zbx/zbx_dboard_init.cpp @@ -245,8 +245,8 @@ uhd::usrp::pwr_cal_mgr::sptr zbx_dboard_impl::_init_power_cal( : get_rx_gain(ZBX_GAIN_STAGE_ALL, chan_idx); }, [this, trx, chan_idx](const double gain) { - trx == TX_DIRECTION ? set_tx_gain(gain, chan_idx) - : set_rx_gain(gain, chan_idx); + trx == TX_DIRECTION ? this->set_tx_gain(gain, chan_idx) + : this->set_rx_gain(gain, chan_idx); }}, 10 /* High priority */); /* If we had a digital (baseband) gain, we would register it here,*/ |