diff options
author | Josh Blum <josh@joshknows.com> | 2010-06-17 16:48:14 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-06-17 16:48:14 -0700 |
commit | 9d59ce56526d827839de6df1b922f7ed1608e94e (patch) | |
tree | 6f3d0205241fba208d2eb14f73001021376182b5 /host/lib/usrp/dboard/db_wbx.cpp | |
parent | c554cefcab4707331ed23c9cf7567c3104a529bf (diff) | |
download | uhd-9d59ce56526d827839de6df1b922f7ed1608e94e.tar.gz uhd-9d59ce56526d827839de6df1b922f7ed1608e94e.tar.bz2 uhd-9d59ce56526d827839de6df1b922f7ed1608e94e.zip |
uhd: added enums for aux adc and dac, usrp2: implemented enums in db iface
Diffstat (limited to 'host/lib/usrp/dboard/db_wbx.cpp')
-rw-r--r-- | host/lib/usrp/dboard/db_wbx.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp/dboard/db_wbx.cpp b/host/lib/usrp/dboard/db_wbx.cpp index 95dcb3802..aa5daf9a3 100644 --- a/host/lib/usrp/dboard/db_wbx.cpp +++ b/host/lib/usrp/dboard/db_wbx.cpp @@ -246,7 +246,7 @@ void wbx_xcvr::set_tx_gain(float gain, const std::string &name){ _tx_gains[name] = gain; //write the new voltage to the aux dac - this->get_iface()->write_aux_dac(dboard_iface::UNIT_TX, 0, dac_volts); + this->get_iface()->write_aux_dac(dboard_iface::UNIT_TX, dboard_iface::AUX_DAC_A, dac_volts); } else UHD_THROW_INVALID_CODE_PATH(); } |