diff options
author | Josh Blum <josh@joshknows.com> | 2011-06-29 21:53:38 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-06-29 21:53:38 -0700 |
commit | bc9c9f551a2b8c3bdab4e61c0d63f8377694da2c (patch) | |
tree | 9f0d009db24e3596e7296d7ef4bd2fba930fa334 /host/lib/usrp/b100/b100_impl.cpp | |
parent | ba088e27b054ddec8e5ec05f53da113f92c2be07 (diff) | |
download | uhd-bc9c9f551a2b8c3bdab4e61c0d63f8377694da2c.tar.gz uhd-bc9c9f551a2b8c3bdab4e61c0d63f8377694da2c.tar.bz2 uhd-bc9c9f551a2b8c3bdab4e61c0d63f8377694da2c.zip |
b100: removed old impl files, moved async processing to io impl
Diffstat (limited to 'host/lib/usrp/b100/b100_impl.cpp')
-rw-r--r-- | host/lib/usrp/b100/b100_impl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/usrp/b100/b100_impl.cpp b/host/lib/usrp/b100/b100_impl.cpp index b3bf7b7f0..14ccbbf9b 100644 --- a/host/lib/usrp/b100/b100_impl.cpp +++ b/host/lib/usrp/b100/b100_impl.cpp @@ -201,7 +201,7 @@ b100_impl::b100_impl(const device_addr_t &device_addr){ //////////////////////////////////////////////////////////////////// // Create controller objects //////////////////////////////////////////////////////////////////// - _fpga_ctrl = b100_ctrl::make(_ctrl_transport); + _fpga_ctrl = b100_ctrl::make(_ctrl_transport, boost::bind(&b100_impl::handle_async_message, this, _1)); this->check_fpga_compat(); //check after making control _fpga_i2c_ctrl = i2c_core_100::make(_fpga_ctrl, B100_REG_SLAVE(3)); _fpga_spi_ctrl = spi_core_100::make(_fpga_ctrl, B100_REG_SLAVE(2)); @@ -467,5 +467,5 @@ void b100_impl::prepare_gpif(void){ //TODO check the order of this: enable_gpif(_fx2_ctrl, true); reset_gpif(_fx2_ctrl, 6); - clear_fpga_fifo(_fx2_ctrl); + //clear_fpga_fifo(_fx2_ctrl); } |