Changeset 5850 in ntrip
- Timestamp:
- Aug 7, 2014, 12:46:07 PM (10 years ago)
- Location:
- trunk/BNC/src/PPP
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppThread.cpp
r5848 r5850 223 223 // Process the oldest epoch 224 224 // ------------------------ 225 if (_epoData.size() > 1) {225 while (_epoData.size() && _epoData.front()->_time < _lastClkCorrTime) { 226 226 227 227 const vector<t_satObs*>& satObs = _epoData.front()->_satObs; … … 324 324 if (cc) { 325 325 clkCorr.push_back(cc); 326 if (_lastClkCorrTime.undef() || cc->_time > _lastClkCorrTime) { 327 _lastClkCorrTime = cc->_time; 328 } 326 329 } 327 330 } -
trunk/BNC/src/PPP/pppThread.h
r5840 r5850 47 47 int _lastOrbCorrIOD[t_prn::MAXPRN+1]; 48 48 double _lastClkCorrValue[t_prn::MAXPRN+1]; 49 bncTime _lastClkCorrTime; 49 50 }; 50 51
Note:
See TracChangeset
for help on using the changeset viewer.