Skip to content

Commit

Permalink
x411: thinbx: add missing implementation of virtual function
Browse files Browse the repository at this point in the history
  • Loading branch information
ptrkrysik committed May 23, 2023
1 parent ad3f782 commit f2901c6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions host/lib/include/uhdlib/usrp/dboard/thinbx/thinbx_dboard.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,8 @@ class thinbx_dboard_impl : public uhd::usrp::x400::x400_dboard_iface
};
}

bool select_adc_self_cal_gain(size_t chan) override;

rf_control::gain_profile_iface::sptr get_tx_gain_profile_api() override
{
return _tx_gain_profile_api;
Expand Down
8 changes: 8 additions & 0 deletions host/lib/usrp/dboard/thinbx/thinbx_dboard.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -411,6 +411,14 @@ std::string thinbx_dboard_impl::get_dboard_fe_from_chan(
std::string("[X400] Invalid channel: ") + std::to_string(chan));
}

/*********************************************************************
* ADC Self Cal API
**********************************************************************/
bool thinbx_dboard_impl::select_adc_self_cal_gain(size_t chan)
{
return true;
}

/*********************************************************************
* Private misc/calculative helper functions
**********************************************************************/
Expand Down

0 comments on commit f2901c6

Please sign in to comment.