diff options
author | Josh Blum <josh@joshknows.com> | 2010-03-22 13:12:03 +0000 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-03-22 13:12:03 +0000 |
commit | a31761cb0c37b61f7243836d6dd8c40cbf49efc0 (patch) | |
tree | a316d9c025fe06bf372c7c5699577ba2985bc8ae /host/lib/usrp/usrp1e/dboard_impl.cpp | |
parent | 6ba5135c96d81d23eafa4f0740ebbf113d8c798f (diff) | |
download | uhd-a31761cb0c37b61f7243836d6dd8c40cbf49efc0.tar.gz uhd-a31761cb0c37b61f7243836d6dd8c40cbf49efc0.tar.bz2 uhd-a31761cb0c37b61f7243836d6dd8c40cbf49efc0.zip |
filled in more skeleton code, filled in dboard interface spi and i2c with ioctls, added file descriptor opening, and checking for usrp1 kernel header
Diffstat (limited to 'host/lib/usrp/usrp1e/dboard_impl.cpp')
-rw-r--r-- | host/lib/usrp/usrp1e/dboard_impl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/usrp/usrp1e/dboard_impl.cpp b/host/lib/usrp/usrp1e/dboard_impl.cpp index 7d46366bc..a2798dce3 100644 --- a/host/lib/usrp/usrp1e/dboard_impl.cpp +++ b/host/lib/usrp/usrp1e/dboard_impl.cpp @@ -37,11 +37,11 @@ void usrp1e_impl::dboard_init(void){ ); //setup the dboard proxies - _rx_dboard_proxy = wax_obj_proxy( + _rx_dboard_proxy = wax_obj_proxy::make( boost::bind(&usrp1e_impl::rx_dboard_get, this, _1, _2), boost::bind(&usrp1e_impl::rx_dboard_set, this, _1, _2) ); - _tx_dboard_proxy = wax_obj_proxy( + _tx_dboard_proxy = wax_obj_proxy::make( boost::bind(&usrp1e_impl::tx_dboard_get, this, _1, _2), boost::bind(&usrp1e_impl::tx_dboard_set, this, _1, _2) ); |