diff options
author | Martin Braun <martin.braun@ettus.com> | 2019-05-30 14:21:41 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2019-11-26 11:49:18 -0800 |
commit | 6ec8cf3eeac70d4458ad7a4f7f1eea4f082c140d (patch) | |
tree | b85288ac4916432aba5ff287acaac0e014c36b0f /host/lib/rfnoc/block_ctrl_base.cpp | |
parent | 36853315741aaba41af91cca93c742a6171ae46d (diff) | |
download | uhd-6ec8cf3eeac70d4458ad7a4f7f1eea4f082c140d.tar.gz uhd-6ec8cf3eeac70d4458ad7a4f7f1eea4f082c140d.tar.bz2 uhd-6ec8cf3eeac70d4458ad7a4f7f1eea4f082c140d.zip |
rfnoc: Add default block controller
The default block controller should get instantiated when no other
suitable block controller can be found.
Diffstat (limited to 'host/lib/rfnoc/block_ctrl_base.cpp')
-rw-r--r-- | host/lib/rfnoc/block_ctrl_base.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/rfnoc/block_ctrl_base.cpp b/host/lib/rfnoc/block_ctrl_base.cpp index 911f1a4e0..d186910b9 100644 --- a/host/lib/rfnoc/block_ctrl_base.cpp +++ b/host/lib/rfnoc/block_ctrl_base.cpp @@ -44,7 +44,7 @@ block_ctrl_base::block_ctrl_base(const make_args_t& make_args) "No block definition found, using default block configuration " "for block with NOC ID: " + str(boost::format("0x%08X") % _noc_id)); - _block_def = blockdef::make_from_noc_id(DEFAULT_NOC_ID); + _block_def = blockdef::make_from_noc_id(DEFAULT_NOC_ID_64); } UHD_ASSERT_THROW(_block_def); // For the block ID, we start with block count 0 and increase until |