aboutsummaryrefslogtreecommitdiffstats
path: root/mpm/lib/dboards/e31x_db_manager.cpp
Commit message (Collapse)AuthorAgeFilesLines
* mpm: Apply clang-format against all .cpp and .hpp filesMartin Braun2020-03-031-5/+9
|
* uhd: Replace usage of boost smart pointers with C++11 counterpartsMartin Braun2019-11-261-10/+7
| | | | | | | | | | | | | | | | | | | 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.
* e310/e320: Move E310 to MPM architecture and refactorSugandha Gupta2019-05-011-0/+79
- Turns the E310 into an MPM device (like N3xx, E320) - Factor out common code between E320 and E310, maximize sharing between the two devices - Remove all pre-MPM E310 code that is no longer needed - Modify MPM to remove all existing overlays before applying new ones (this is necessary to enable idle image mode for E310) Co-authored-by: Virendra Kakade <virendra.kakade@ni.com> Signed-off-by: Virendra Kakade <virendra.kakade@ni.com>