diff options
author | Martin Braun <martin.braun@ettus.com> | 2016-10-07 16:44:49 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2016-10-07 16:44:49 -0700 |
commit | 1b70b3e70df40aae4d1e53037212d77af2fdc4e4 (patch) | |
tree | dcde2a418b7cfb4672e5ef5e57bbf85ae3c2d4b1 /host/examples/benchmark_rate.cpp | |
parent | 811444b126ed40aed115af4464422122afd0c607 (diff) | |
parent | 006c321c552781501bcb0cff9e156c991c24ce45 (diff) | |
download | uhd-1b70b3e70df40aae4d1e53037212d77af2fdc4e4.tar.gz uhd-1b70b3e70df40aae4d1e53037212d77af2fdc4e4.tar.bz2 uhd-1b70b3e70df40aae4d1e53037212d77af2fdc4e4.zip |
Merge branch 'maint'
Diffstat (limited to 'host/examples/benchmark_rate.cpp')
-rw-r--r-- | host/examples/benchmark_rate.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/host/examples/benchmark_rate.cpp b/host/examples/benchmark_rate.cpp index 1ea754ef2..6854fa43d 100644 --- a/host/examples/benchmark_rate.cpp +++ b/host/examples/benchmark_rate.cpp @@ -433,7 +433,12 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){ } std::cout << boost::format("Setting device timestamp to 0...") << std::endl; - bool sync_channels = (pps == "mimo" or ref == "mimo" or (rx_channel_nums.size() <= 1 and tx_channel_nums.size() <= 1)); + const bool sync_channels = + pps == "mimo" or + ref == "mimo" or + rx_channel_nums.size() > 1 or + tx_channel_nums.size() > 1 + ; if (!sync_channels) { usrp->set_time_now(0.0); } else { |