diff options
author | Josh Blum <josh@joshknows.com> | 2011-06-12 19:54:42 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-06-14 17:27:47 -0700 |
commit | 89fa3291548b2b2c413c9613977db032b5dc048b (patch) | |
tree | c15500a1dc4e45d730ec4ed3750eced39bf1a5d6 /host/lib/usrp/usrp1/mboard_impl.cpp | |
parent | 397521fcdbe88d4d797bf9a5bcd2cdb097003ab3 (diff) | |
download | uhd-89fa3291548b2b2c413c9613977db032b5dc048b.tar.gz uhd-89fa3291548b2b2c413c9613977db032b5dc048b.tar.bz2 uhd-89fa3291548b2b2c413c9613977db032b5dc048b.zip |
usrp1: super packet handler support squashed
Diffstat (limited to 'host/lib/usrp/usrp1/mboard_impl.cpp')
-rw-r--r-- | host/lib/usrp/usrp1/mboard_impl.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/host/lib/usrp/usrp1/mboard_impl.cpp b/host/lib/usrp/usrp1/mboard_impl.cpp index f699c8e12..87911b312 100644 --- a/host/lib/usrp/usrp1/mboard_impl.cpp +++ b/host/lib/usrp/usrp1/mboard_impl.cpp @@ -352,6 +352,7 @@ void usrp1_impl::mboard_set(const wax::obj &key, const wax::obj &val) bool s = this->disable_rx(); _iface->poke32(FR_RX_MUX, calc_rx_mux(_rx_subdev_spec, _mboard_proxy->get_link())); this->restore_rx(s); + this->update_xport_channel_mapping(); }return; case MBOARD_PROP_TX_SUBDEV_SPEC:{ @@ -367,6 +368,7 @@ void usrp1_impl::mboard_set(const wax::obj &key, const wax::obj &val) bool s = this->disable_tx(); _iface->poke32(FR_TX_MUX, calc_tx_mux(_tx_subdev_spec, _mboard_proxy->get_link())); this->restore_tx(s); + this->update_xport_channel_mapping(); }return; case MBOARD_PROP_EEPROM_MAP: |