diff options
author | Grant Meyerhoff <grant.meyerhoff@ni.com> | 2021-06-14 11:25:58 -0500 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2021-06-17 12:35:32 -0500 |
commit | 86a1c47ee1a1d1d2aa9b7904ecf5486bb3bf3eac (patch) | |
tree | eba0358aec899fdaf3c85bb78ebb3c94c053fd7f /host/lib/rfnoc | |
parent | c0a44be527e65aa83f1a00ab59785906a5411612 (diff) | |
download | uhd-86a1c47ee1a1d1d2aa9b7904ecf5486bb3bf3eac.tar.gz uhd-86a1c47ee1a1d1d2aa9b7904ecf5486bb3bf3eac.tar.bz2 uhd-86a1c47ee1a1d1d2aa9b7904ecf5486bb3bf3eac.zip |
uhd: Add callback for setting sync_sources
Diffstat (limited to 'host/lib/rfnoc')
-rw-r--r-- | host/lib/rfnoc/mb_controller.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/host/lib/rfnoc/mb_controller.cpp b/host/lib/rfnoc/mb_controller.cpp index 356224f83..c7034fd5f 100644 --- a/host/lib/rfnoc/mb_controller.cpp +++ b/host/lib/rfnoc/mb_controller.cpp @@ -191,3 +191,9 @@ void mb_controller::set_gpio_src(const std::string&, const std::vector<std::stri { throw uhd::not_implemented_error("set_gpio_src() not supported on this motherboard!"); } + +void mb_controller::register_sync_source_updater(mb_controller::sync_source_updater_t) +{ + throw uhd::not_implemented_error( + "register_sync_source_updater() not supported on this motherboard!"); +} |