diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2017-01-27 16:36:49 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2017-01-27 16:36:49 +0100 |
commit | 42aaf8384b239f2e632a4ef042f24d4c9b7dac35 (patch) | |
tree | 98ad5e304685f320694907156545198cefaf312d /src/TimestampDecoder.cpp | |
parent | 3f36268768419eb5891be941565ff496ab27674e (diff) | |
download | dabmod-42aaf8384b239f2e632a4ef042f24d4c9b7dac35.tar.gz dabmod-42aaf8384b239f2e632a4ef042f24d4c9b7dac35.tar.bz2 dabmod-42aaf8384b239f2e632a4ef042f24d4c9b7dac35.zip |
Fix TIST usage for EDI input
Diffstat (limited to 'src/TimestampDecoder.cpp')
-rw-r--r-- | src/TimestampDecoder.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/TimestampDecoder.cpp b/src/TimestampDecoder.cpp index eb3a848..e68bb4b 100644 --- a/src/TimestampDecoder.cpp +++ b/src/TimestampDecoder.cpp @@ -202,8 +202,8 @@ void TimestampDecoder::updateTimestampEdi( uint32_t pps, // In units of 1/16384000 s int32_t fct) { - updateTimestampPPS(pps); time_secs = seconds_utc; + time_pps = pps; latestFCT = fct; full_timestamp_received = true; } |