Changeset 5999 in ntrip for trunk/BNC/src/PPP
- Timestamp:
- Aug 18, 2014, 9:56:20 AM (10 years ago)
- Location:
- trunk/BNC/src/PPP
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppRun.cpp
r5998 r5999 258 258 // Process the oldest epochs 259 259 // ------------------------ 260 while (_epoData.size() && 261 (!_opt->_realTime || _epoData.front()->_time < _lastClkCorrTime + 10.0)) { 260 while (_epoData.size() && !waitForCorr(_epoData.front()->_time)) { 262 261 263 262 const vector<t_satObs*>& satObs = _epoData.front()->_satObs; … … 582 581 } 583 582 583 // 584 //////////////////////////////////////////////////////////////////////////// 585 bool 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 56 56 }; 57 57 58 bool waitForCorr(const bncTime& epoTime) const; 59 58 60 QMutex _mutex; 59 61 const t_pppOptions* _opt;
Note:
See TracChangeset
for help on using the changeset viewer.