Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | uhd: Replace include guards with pragma once | Lane Kolbly | 2020-04-08 | 1 | -4/+1 |
| | | | | | Pragma once is the more modern version of include guards, eliminating any potential problems with mistyping include guards. Let's use those. | ||||
* | rfnoc_device: Remove spurious comment | Martin Braun | 2020-01-23 | 1 | -2/+1 |
| | | | | | This removes a comment that refers to Boost smart pointers, which were removed in UHD. | ||||
* | uhd: Replace usage of boost smart pointers with C++11 counterparts | Martin Braun | 2019-11-26 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | This removes the following Boost constructs: - boost::shared_ptr, boost::weak_ptr - boost::enable_shared_from_this - boost::static_pointer_cast, boost::dynamic_pointer_cast The appropriate includes were also removed. All C++11 versions of these require #include <memory>. Note that the stdlib and Boost versions have the exact same syntax, they only differ in the namespace (boost vs. std). The modifications were all done using sed, with the exception of boost::scoped_ptr, which was replaced by std::unique_ptr. References to boost::smart_ptr were also removed. boost::intrusive_ptr is not removed in this commit, since it does not have a 1:1 mapping to a C++11 construct. | ||||
* | rfnoc: rfnoc_device: Make get_mb_iface() pure virtual | Martin Braun | 2019-11-26 | 1 | -22/+1 |
| | |||||
* | rfnoc: Add mb_controller base class and X300/MPMD implementations | Martin Braun | 2019-11-26 | 1 | -0/+13 |
| | |||||
* | rfnoc: Add rfnoc_device base class | Martin Braun | 2019-11-26 | 1 | -0/+82 |
All USRP device impls that are RFNoC devices will need to derive from this (instead of device3). |