aboutsummaryrefslogtreecommitdiffstats
path: root/host
diff options
context:
space:
mode:
authorLane Kolbly <lane.kolbly@ni.com>2021-11-17 09:58:44 -0600
committerAaron Rossetto <aaron.rossetto@ni.com>2021-12-09 13:00:36 -0800
commit370e8766daddec469244e4b5c9bac6dac7da3621 (patch)
treea625917a636650626b28d9c10837ab11ecbb9a52 /host
parent853de46533e48f9ef9b2bf4ebb745ea7f66e9cd0 (diff)
downloaduhd-370e8766daddec469244e4b5c9bac6dac7da3621.tar.gz
uhd-370e8766daddec469244e4b5c9bac6dac7da3621.tar.bz2
uhd-370e8766daddec469244e4b5c9bac6dac7da3621.zip
host: Fix typos and small things
Diffstat (limited to 'host')
-rw-r--r--host/include/uhd/rfnoc/rf_control/core_iface.hpp5
-rw-r--r--host/lib/include/uhdlib/experts/expert_nodes.hpp2
-rw-r--r--host/lib/include/uhdlib/usrp/dboard/debug_dboard.hpp1
3 files changed, 6 insertions, 2 deletions
diff --git a/host/include/uhd/rfnoc/rf_control/core_iface.hpp b/host/include/uhd/rfnoc/rf_control/core_iface.hpp
index a96ed2f60..8f0a66815 100644
--- a/host/include/uhd/rfnoc/rf_control/core_iface.hpp
+++ b/host/include/uhd/rfnoc/rf_control/core_iface.hpp
@@ -9,6 +9,7 @@
#include <uhd/types/device_addr.hpp>
#include <uhd/types/ranges.hpp>
#include <stdint.h>
+#include <memory>
#include <string>
#include <vector>
@@ -24,6 +25,8 @@ namespace uhd { namespace rfnoc { namespace rf_control {
class core_iface
{
public:
+ using sptr = std::shared_ptr<core_iface>;
+
virtual ~core_iface() = default;
/*! Return the selected TX antenna for channel \p chan.
@@ -38,7 +41,7 @@ public:
*/
virtual std::vector<std::string> get_tx_antennas(const size_t chan) const = 0;
- /*! Select RX antenna \p for channel \p chan.
+ /*! Select TX antenna \p for channel \p chan.
*
* \throws uhd::value_error if \p ant is not a valid value.
*/
diff --git a/host/lib/include/uhdlib/experts/expert_nodes.hpp b/host/lib/include/uhdlib/experts/expert_nodes.hpp
index 66dd0f246..554706741 100644
--- a/host/lib/include/uhdlib/experts/expert_nodes.hpp
+++ b/host/lib/include/uhdlib/experts/expert_nodes.hpp
@@ -394,7 +394,7 @@ public:
};
/*!---------------------------------------------------------
- * class data_reader_t
+ * class data_writer_t
*
* Accessor to read and write the value of a data node and
* to establish a worker node => data node dependency
diff --git a/host/lib/include/uhdlib/usrp/dboard/debug_dboard.hpp b/host/lib/include/uhdlib/usrp/dboard/debug_dboard.hpp
index 44aa8a478..0c22831b5 100644
--- a/host/lib/include/uhdlib/usrp/dboard/debug_dboard.hpp
+++ b/host/lib/include/uhdlib/usrp/dboard/debug_dboard.hpp
@@ -11,6 +11,7 @@
#include <uhd/property_tree.hpp>
#include <uhd/types/eeprom.hpp>
#include <uhdlib/rfnoc/rf_control/dboard_iface.hpp>
+#include <uhdlib/usrp/common/mpmd_mb_controller.hpp>
#include <string>
#define UHD_LOG_SKIP_CFG() \