Changeset 8703 in ntrip for branches/BNC_2.12
- Timestamp:
- Apr 26, 2019, 10:11:31 PM (6 years ago)
- Location:
- branches/BNC_2.12/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/BNC_2.12/src/bncephuser.cpp
r8690 r8703 227 227 return; 228 228 } 229 else if (eph->type() == t_eph::GLONASS && timeDiff > 2*3600) { // updated every 30 minutes229 else if (eph->type() == t_eph::GLONASS && timeDiff > 3*3600) { // updated every 30 minutes 230 230 eph->setCheckState(t_eph::outdated); 231 231 return; … … 273 273 return; 274 274 } 275 else if (eph->type() == t_eph::GLONASS && dt > 2*3600) {275 else if (eph->type() == t_eph::GLONASS && dt > 3*3600) { 276 276 ephL->setCheckState(t_eph::outdated); 277 277 return; -
branches/BNC_2.12/src/bncephuser.h
r8700 r8703 76 76 void checkEphemeris(t_eph* eph, bool realTime); 77 77 QMutex _mutex; 78 static const unsigned _maxQueueSize = 6;78 static const unsigned _maxQueueSize = 7; 79 79 QMap<QString, std::deque<t_eph*> > _eph; 80 80 };
Note:
See TracChangeset
for help on using the changeset viewer.