diff options
Diffstat (limited to 'host/lib/rfnoc/rfnoc_graph.cpp')
-rw-r--r-- | host/lib/rfnoc/rfnoc_graph.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/host/lib/rfnoc/rfnoc_graph.cpp b/host/lib/rfnoc/rfnoc_graph.cpp index 795ffd289..f820a6960 100644 --- a/host/lib/rfnoc/rfnoc_graph.cpp +++ b/host/lib/rfnoc/rfnoc_graph.cpp @@ -663,7 +663,9 @@ private: std::string("Flushing and resetting blocks on mboard ") + std::to_string(mb_idx)); - mb_cz->complete_flush_all_blocks(); + if (!mb_cz->complete_flush_all_blocks()) { + UHD_LOG_WARNING(LOG_ID, "One or more blocks timed out during flush!"); + } // Reset for (size_t portno = 0; portno < num_blocks; ++portno) { |