Changeset 5999 in ntrip for trunk/BNC/src/PPP/pppRun.cpp


Ignore:
Timestamp:
Aug 18, 2014, 9:56:20 AM (10 years ago)
Author:
mervart
Message:
 
File:
1 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}
Note: See TracChangeset for help on using the changeset viewer.