Changeset 10192 in ntrip for trunk/BNC/src/combination
- Timestamp:
- Aug 31, 2023, 10:17:54 PM (19 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/combination/bnccomb.cpp
r10153 r10192 485 485 // Check regarding current time 486 486 // ---------------------------- 487 if ((newClk->_time >= currentTime) || // future time stamp 488 (currentTime - newClk->_time) > 60.0) { // very old data sets 489 #ifdef BNC_DEBUG_CMB 490 emit newMessage("bncComb: very old data sets: " + acName.toLatin1() + " " + newClk->_prn.toString().c_str() + 491 QString(" %1 ").arg(newClk->_time.timestr().c_str()).toLatin1() + "vs. current time" + 492 QString(" %1 ").arg(currentTime.timestr().c_str()).toLatin1(), true); 493 #endif 494 delete newClk; 495 continue; 487 if (BNC_CORE->mode() != t_bncCore::batchPostProcessing) { 488 if ((newClk->_time >= currentTime) || // future time stamp 489 (currentTime - newClk->_time) > 60.0) { // very old data sets 490 #ifdef BNC_DEBUG_CMB 491 emit newMessage("bncComb: very old data sets: " + acName.toLatin1() + " " + newClk->_prn.toString().c_str() + 492 QString(" %1 ").arg(newClk->_time.timestr().c_str()).toLatin1() + "vs. current time" + 493 QString(" %1 ").arg(currentTime.timestr().c_str()).toLatin1(), true); 494 #endif 495 delete newClk; 496 continue; 497 } 496 498 } 497 499
Note:
See TracChangeset
for help on using the changeset viewer.