diff options
author | Martin Braun <martin.braun@ettus.com> | 2021-07-06 17:23:14 +0200 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2021-07-20 07:21:41 -0500 |
commit | de68707dd42b55822c2b1fa19003675d03010982 (patch) | |
tree | 434a4e8503f43e92d1634e8c5e1e63922a022c42 /host/lib/usrp/b200/b200_io_impl.cpp | |
parent | 4185493a016eb69e2b78d6fd20101ace7c44064f (diff) | |
download | uhd-de68707dd42b55822c2b1fa19003675d03010982.tar.gz uhd-de68707dd42b55822c2b1fa19003675d03010982.tar.bz2 uhd-de68707dd42b55822c2b1fa19003675d03010982.zip |
b200: Move the B200 radio control core into usrp/b200/
This serves two purposes:
- This file no longer goes into the compiled DLL if B200 is disabled
- Discourage use of this file for new devices, making it clear that this
architecture is no longer used
The file itself is left untouched, only the class is renamed from
radio_ctrl_core_3000 to b200_radio_ctrl_core.
Note: In UHD 3, this file was also used by N230.
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 a20709497..2433ab2db 100644 --- a/host/lib/usrp/b200/b200_io_impl.cpp +++ b/host/lib/usrp/b200/b200_io_impl.cpp @@ -327,7 +327,7 @@ boost::optional<uhd::msg_task::msg_type_t> b200_impl::handle_async_task( case B200_RESP0_MSG_SID: 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) |