diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2022-08-24 16:14:15 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2022-08-24 16:14:15 +0200 |
commit | 7441d427947aaa79b88e1eae157981c95d7ca5fa (patch) | |
tree | a45e955da7a7946264d215a30758e531b92322b4 /src/output/SDR.cpp | |
parent | 1383ded72f3796a00eeb25551160f66eb89f378e (diff) | |
download | dabmod-7441d427947aaa79b88e1eae157981c95d7ca5fa.tar.gz dabmod-7441d427947aaa79b88e1eae157981c95d7ca5fa.tar.bz2 dabmod-7441d427947aaa79b88e1eae157981c95d7ca5fa.zip |
Add TS debugging output
Diffstat (limited to 'src/output/SDR.cpp')
-rw-r--r-- | src/output/SDR.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/output/SDR.cpp b/src/output/SDR.cpp index f1ed2b0..bd02cab 100644 --- a/src/output/SDR.cpp +++ b/src/output/SDR.cpp @@ -370,6 +370,12 @@ void SDR::handle_frame(struct FrameData& frame) return; } + if (frame.ts.fct == 0) { + etiLog.level(debug) << + "OutputSDR: TX FCT=" << frame.ts.fct << + " TS " << frame.ts.to_string(); + } + m_device->transmit_frame(frame); } |