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/UHD.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/UHD.cpp')
| -rw-r--r-- | src/output/UHD.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/output/UHD.cpp b/src/output/UHD.cpp index 3cf5aef..ac34ce4 100644 --- a/src/output/UHD.cpp +++ b/src/output/UHD.cpp @@ -348,7 +348,7 @@ void UHD::transmit_frame(const struct FrameData& frame) // EOB and quit the loop afterwards, to avoid an underrun. md_tx.end_of_burst = eob_because_muting or ( frame.ts.timestamp_valid and - frame.ts.timestamp_refresh and + m_require_timestamp_refresh and samps_to_send <= usrp_max_num_samps ); //send a single packet |
