aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/usrp/b200/b200_impl.hpp
diff options
context:
space:
mode:
authormichael-west <michael.west@ettus.com>2016-07-18 15:44:48 -0700
committerMartin Braun <martin.braun@ettus.com>2016-07-22 11:31:41 -0700
commit5d360ab43eca63e3f12f0e5abde5a3186b7f12dc (patch)
tree798b34b886281828776c58119619faf8a7bb75b3 /host/lib/usrp/b200/b200_impl.hpp
parent1824770f44318e272b7aedc89eb5a6317a558f73 (diff)
downloaduhd-5d360ab43eca63e3f12f0e5abde5a3186b7f12dc.tar.gz
uhd-5d360ab43eca63e3f12f0e5abde5a3186b7f12dc.tar.bz2
uhd-5d360ab43eca63e3f12f0e5abde5a3186b7f12dc.zip
B200: Adding separate B200 radio control code
Diffstat (limited to 'host/lib/usrp/b200/b200_impl.hpp')
-rw-r--r--host/lib/usrp/b200/b200_impl.hpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/host/lib/usrp/b200/b200_impl.hpp b/host/lib/usrp/b200/b200_impl.hpp
index 130e93891..3ca76fce6 100644
--- a/host/lib/usrp/b200/b200_impl.hpp
+++ b/host/lib/usrp/b200/b200_impl.hpp
@@ -28,7 +28,7 @@
#include "tx_vita_core_3000.hpp"
#include "time_core_3000.hpp"
#include "gpio_atr_3000.hpp"
-#include "radio_ctrl_core_3000.hpp"
+#include "b200_radio_ctrl_core.hpp"
#include "rx_dsp_core_3000.hpp"
#include "tx_dsp_core_3000.hpp"
#include <uhd/device.hpp>
@@ -131,7 +131,7 @@ private:
//controllers
b200_iface::sptr _iface;
- radio_ctrl_core_3000::sptr _local_ctrl;
+ b200_radio_ctrl_core::sptr _local_ctrl;
uhd::usrp::ad9361_ctrl::sptr _codec_ctrl;
uhd::usrp::ad936x_manager::sptr _codec_mgr;
b200_local_spi_core::sptr _spi_iface;
@@ -154,8 +154,8 @@ private:
struct AsyncTaskData
{
boost::shared_ptr<async_md_type> async_md;
- boost::weak_ptr<radio_ctrl_core_3000> local_ctrl;
- boost::weak_ptr<radio_ctrl_core_3000> radio_ctrl[2];
+ boost::weak_ptr<b200_radio_ctrl_core> local_ctrl;
+ boost::weak_ptr<b200_radio_ctrl_core> radio_ctrl[2];
b200_uart::sptr gpsdo_uart;
};
boost::shared_ptr<AsyncTaskData> _async_task_data;
@@ -179,7 +179,7 @@ private:
//perifs in the radio core
struct radio_perifs_t
{
- radio_ctrl_core_3000::sptr ctrl;
+ b200_radio_ctrl_core::sptr ctrl;
uhd::usrp::gpio_atr::gpio_atr_3000::sptr atr;
uhd::usrp::gpio_atr::gpio_atr_3000::sptr fp_gpio;
time_core_3000::sptr time64;