diff options
author | michael-west <michael.west@ettus.com> | 2016-07-18 15:44:48 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2016-07-22 11:31:41 -0700 |
commit | 5d360ab43eca63e3f12f0e5abde5a3186b7f12dc (patch) | |
tree | 798b34b886281828776c58119619faf8a7bb75b3 /host/lib/usrp/b200/b200_io_impl.cpp | |
parent | 1824770f44318e272b7aedc89eb5a6317a558f73 (diff) | |
download | uhd-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_io_impl.cpp')
-rw-r--r-- | host/lib/usrp/b200/b200_io_impl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp/b200/b200_io_impl.cpp b/host/lib/usrp/b200/b200_io_impl.cpp index 283091140..d186ec907 100644 --- a/host/lib/usrp/b200/b200_io_impl.cpp +++ b/host/lib/usrp/b200/b200_io_impl.cpp @@ -318,7 +318,7 @@ boost::optional<uhd::msg_task::msg_type_t> b200_impl::handle_async_task( case B200_RESP1_MSG_SID: case B200_LOCAL_RESP_SID: { - radio_ctrl_core_3000::sptr ctrl; + b200_radio_ctrl_core::sptr ctrl; if (sid == B200_RESP0_MSG_SID) ctrl = data->radio_ctrl[0].lock(); if (sid == B200_RESP1_MSG_SID) ctrl = data->radio_ctrl[1].lock(); if (sid == B200_LOCAL_RESP_SID) ctrl = data->local_ctrl.lock(); |