diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-05-20 16:16:28 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-05-20 16:16:28 +0200 |
commit | bb64b314c83843a792103de83ef67cc5b0d1d9be (patch) | |
tree | 1538dad1ad322fad67e9f29094c1d87b022cf54c /src/OutputUHD.h | |
parent | 5ebfab9364d4315394a136732fd464ffe2229588 (diff) | |
download | dabmod-bb64b314c83843a792103de83ef67cc5b0d1d9be.tar.gz dabmod-bb64b314c83843a792103de83ef67cc5b0d1d9be.tar.bz2 dabmod-bb64b314c83843a792103de83ef67cc5b0d1d9be.zip |
Get rid of FCT discontinuity check
The timestamp discontinuity verification takes care of this now
Diffstat (limited to 'src/OutputUHD.h')
-rw-r--r-- | src/OutputUHD.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/OutputUHD.h b/src/OutputUHD.h index f725268..6ebacef 100644 --- a/src/OutputUHD.h +++ b/src/OutputUHD.h @@ -89,14 +89,6 @@ struct UHDWorkerFrameData { struct frame_timestamp ts; }; -struct fct_discontinuity_error : public std::exception -{ - const char* what () const throw () - { - return "FCT discontinuity detected"; - } -}; - enum refclk_lock_loss_behaviour_t { CRASH, IGNORE }; struct UHDWorkerData { @@ -273,13 +265,6 @@ class OutputUHD: public ModOutput, public RemoteControllable { boost::unique_future<bool> gps_fix_future; boost::thread gps_fix_task; - - // What transmission mode we're using defines by how - // much the FCT should increment for each - // transmission frame. - int fct_increment; - int last_fct; - // Wait time in seconds to get fix static const int initial_gps_fix_wait = 180; |