mirror of
https://github.com/cjcliffe/CubicSDR.git
synced 2026-06-01 21:54:39 -04:00
fix issue with SDRThread logging
This commit is contained in:
+2
-2
@@ -98,12 +98,12 @@ wxThread::ExitCode SDRThread::Entry() {
|
||||
|
||||
rtlsdr_read_sync(dev, buf, BUF_SIZE, &n_read);
|
||||
|
||||
std::cout << (n_read == BUF_SIZE) ? "." : "!";
|
||||
|
||||
if (i % 50 == 0) {
|
||||
std::cout << std::endl;
|
||||
}
|
||||
|
||||
std::cout << ((n_read == BUF_SIZE) ? "." : "!");
|
||||
|
||||
i++;
|
||||
}
|
||||
std::cout << std::endl << "Done." << std::endl << std::endl;
|
||||
|
||||
Reference in New Issue
Block a user