diff options
author | Josh Blum <josh@joshknows.com> | 2011-06-12 19:54:54 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-06-14 17:27:47 -0700 |
commit | bafe93a272129b4974b2f8386a3a33c793c59a9b (patch) | |
tree | 7bc5af05dd82f9d9f0cf3971f860caefaf2f4c6e /host/lib/usrp/usrp_e100/dsp_impl.cpp | |
parent | 89fa3291548b2b2c413c9613977db032b5dc048b (diff) | |
download | uhd-bafe93a272129b4974b2f8386a3a33c793c59a9b.tar.gz uhd-bafe93a272129b4974b2f8386a3a33c793c59a9b.tar.bz2 uhd-bafe93a272129b4974b2f8386a3a33c793c59a9b.zip |
usrp_e100: super packet handler support squashed
Diffstat (limited to 'host/lib/usrp/usrp_e100/dsp_impl.cpp')
-rw-r--r-- | host/lib/usrp/usrp_e100/dsp_impl.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/host/lib/usrp/usrp_e100/dsp_impl.cpp b/host/lib/usrp/usrp_e100/dsp_impl.cpp index 8d084f066..93034b5dc 100644 --- a/host/lib/usrp/usrp_e100/dsp_impl.cpp +++ b/host/lib/usrp/usrp_e100/dsp_impl.cpp @@ -104,6 +104,7 @@ void usrp_e100_impl::rx_ddc_set(const wax::obj &key_, const wax::obj &val){ dsp_type1::calc_iq_scale_word(default_rx_scale_iq, default_rx_scale_iq) ); } + this->update_xport_channel_mapping(); //rate changed -> update return; default: UHD_THROW_PROP_SET_ERROR(); @@ -181,6 +182,7 @@ void usrp_e100_impl::tx_duc_set(const wax::obj &key_, const wax::obj &val){ //set the scaling _iface->poke32(UE_REG_DSP_TX_SCALE_IQ, dsp_type1::calc_iq_scale_word(_duc_interp)); } + this->update_xport_channel_mapping(); //rate changed -> update return; default: UHD_THROW_PROP_SET_ERROR(); |