diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2022-10-14 22:10:30 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2022-10-14 22:10:30 +0200 |
commit | 56e046c3390a15aab4baddb502a490bb4505942a (patch) | |
tree | aa6b51bb531dc9ea0b5e2f4f6e34c0b52503349f /src/output/SDR.cpp | |
parent | 388d247d6799bc3ba9fda7b208a620d13db8f8ad (diff) | |
download | dabmod-56e046c3390a15aab4baddb502a490bb4505942a.tar.gz dabmod-56e046c3390a15aab4baddb502a490bb4505942a.tar.bz2 dabmod-56e046c3390a15aab4baddb502a490bb4505942a.zip |
Rework timestamp_refresh
Since we have the 'timestamp in the past' warning refresh requests can be lost
Diffstat (limited to 'src/output/SDR.cpp')
-rw-r--r-- | src/output/SDR.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/output/SDR.cpp b/src/output/SDR.cpp index 6078fc7..b0c09b6 100644 --- a/src/output/SDR.cpp +++ b/src/output/SDR.cpp @@ -2,7 +2,7 @@ Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Her Majesty the Queen in Right of Canada (Communications Research Center Canada) - Copyright (C) 2018 + Copyright (C) 2022 Matthias P. Braendli, matthias.braendli@mpb.li http://opendigitalradio.org @@ -297,6 +297,10 @@ void SDR::handle_frame(struct FrameData& frame) return; } + if (frame.ts.offset_changed) { + m_device->require_timestamp_refresh(); + } + if (last_tx_time_initialised) { const size_t sizeIn = frame.buf.size() / sizeof(complexf); @@ -325,7 +329,7 @@ void SDR::handle_frame(struct FrameData& frame) tx_second << "+" << (double)tx_pps/16384000.0 << "(" << tx_pps << ")"; - frame.ts.timestamp_refresh = true; + m_device->require_timestamp_refresh(); } } |