Changeset 10482 in ntrip for trunk


Ignore:
Timestamp:
May 7, 2024, 10:00:37 PM (7 months ago)
Author:
stuerze
Message:

minor changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/combination/bnccomb.cpp

    r10481 r10482  
    537537      if ((newClk._time >= currentTime) ||       // future time stamp
    538538          (currentTime - newClk._time) > 60.0) { // very old data sets
     539  #ifdef BNC_DEBUG_CMB
    539540        emit newMessage("bncComb: future or very old data sets: " + acName.toLatin1() + " " + newClk._prn.toString().c_str() +
    540541            QString(" %1 ").arg(newClk._time.timestr().c_str()).toLatin1() + "vs. current time" +
    541542            QString(" %1 ").arg(currentTime.timestr().c_str()).toLatin1(), true);
     543  #endif
    542544        continue;
    543545      }
     
    547549    // --------------------
    548550    if (_resTime.valid() && newClk._time <= _resTime) {
     551#ifdef BNC_DEBUG_CMB
    549552      emit newMessage("bncComb: old correction: " + acName.toLatin1() + " " + newClk._prn.toString().c_str() +
    550553          QString(" %1 ").arg(newClk._time.timestr().c_str()).toLatin1() + "vs. last processing Epoch" +
    551554          QString(" %1 ").arg(_resTime.timestr().c_str()).toLatin1(), true);
     555#endif
    552556      continue;
    553557    }
     
    736740             ephLast->checkState() == t_eph::outdated ||
    737741             ephLast->checkState() == t_eph::unhealthy) {
     742#ifdef BNC_DEBUG_CMB
    738743      emit newMessage("bncComb: ephLast not ok (checkState: " +  ephLast->checkStateToString().toLatin1() + ") for "  + prn.mid(0,3).toLatin1(), true);
     744#endif
    739745      delete _newCorr; _newCorr = 0;
    740746      continue;
Note: See TracChangeset for help on using the changeset viewer.