Changeset 5999 in ntrip


Ignore:
Timestamp:
Aug 18, 2014, 9:56:20 AM (10 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src/PPP
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/PPP/pppRun.cpp

    r5998 r5999  
    258258  // Process the oldest epochs
    259259  // ------------------------
    260   while (_epoData.size() &&
    261          (!_opt->_realTime ||  _epoData.front()->_time < _lastClkCorrTime + 10.0)) {
     260  while (_epoData.size() && !waitForCorr(_epoData.front()->_time)) {
    262261
    263262    const vector<t_satObs*>& satObs = _epoData.front()->_satObs;
     
    582581}
    583582
     583// 
     584////////////////////////////////////////////////////////////////////////////
     585bool t_pppRun::waitForCorr(const bncTime& epoTime) const {
     586
     587  if (!_opt->_realTime) {
     588    return false;
     589  }
     590
     591  return false;
     592}
  • trunk/BNC/src/PPP/pppRun.h

    r5990 r5999  
    5656  };
    5757
     58  bool waitForCorr(const bncTime& epoTime) const;
     59
    5860  QMutex                 _mutex;
    5961  const t_pppOptions*    _opt;
Note: See TracChangeset for help on using the changeset viewer.