diff options
| author | Josh Blum <josh@joshknows.com> | 2011-06-13 08:43:07 -0700 | 
|---|---|---|
| committer | Josh Blum <josh@joshknows.com> | 2011-06-14 17:27:47 -0700 | 
| commit | d04fe45f552daa98be18995674ee34fa24f9652f (patch) | |
| tree | bff02b21577c5cf24d955028781a845aeec9e639 | |
| parent | b092b291082612dca65bd8910feb89856550e3f0 (diff) | |
| download | uhd-d04fe45f552daa98be18995674ee34fa24f9652f.tar.gz uhd-d04fe45f552daa98be18995674ee34fa24f9652f.tar.bz2 uhd-d04fe45f552daa98be18995674ee34fa24f9652f.zip  | |
uhd: update packet handlers when the clock rate is changed
| -rw-r--r-- | host/lib/usrp/usrp1/mboard_impl.cpp | 1 | ||||
| -rw-r--r-- | host/lib/usrp/usrp2/mboard_impl.cpp | 1 | ||||
| -rw-r--r-- | host/lib/usrp/usrp_e100/mboard_impl.cpp | 1 | 
3 files changed, 3 insertions, 0 deletions
diff --git a/host/lib/usrp/usrp1/mboard_impl.cpp b/host/lib/usrp/usrp1/mboard_impl.cpp index 87911b312..a265a5089 100644 --- a/host/lib/usrp/usrp1/mboard_impl.cpp +++ b/host/lib/usrp/usrp1/mboard_impl.cpp @@ -389,6 +389,7 @@ void usrp1_impl::mboard_set(const wax::obj &key, const wax::obj &val)              << "See the application notes for USRP1 for further instructions.\n"          ;          _clock_ctrl->set_master_clock_freq(val.as<double>()); +        this->update_xport_channel_mapping();          return;      case MBOARD_PROP_CLOCK_CONFIG:{ diff --git a/host/lib/usrp/usrp2/mboard_impl.cpp b/host/lib/usrp/usrp2/mboard_impl.cpp index 4a28ea9c4..6bf412a3e 100644 --- a/host/lib/usrp/usrp2/mboard_impl.cpp +++ b/host/lib/usrp/usrp2/mboard_impl.cpp @@ -466,6 +466,7 @@ void usrp2_mboard_impl::set(const wax::obj &key, const wax::obj &val){      case MBOARD_PROP_CLOCK_RATE:          UHD_ASSERT_THROW(val.as<double>() == this->get_master_clock_freq()); +        _device.update_xport_channel_mapping();          return;      default: UHD_THROW_PROP_SET_ERROR(); diff --git a/host/lib/usrp/usrp_e100/mboard_impl.cpp b/host/lib/usrp/usrp_e100/mboard_impl.cpp index 483286e47..f4b8d79f6 100644 --- a/host/lib/usrp/usrp_e100/mboard_impl.cpp +++ b/host/lib/usrp/usrp_e100/mboard_impl.cpp @@ -214,6 +214,7 @@ void usrp_e100_impl::mboard_set(const wax::obj &key, const wax::obj &val){              << "See the application notes for USRP-E1XX for further instructions.\n"          ;          _clock_ctrl->set_fpga_clock_rate(val.as<double>()); +        this->update_xport_channel_mapping();          return;      default: UHD_THROW_PROP_SET_ERROR();  | 
