Changeset 8704 in ntrip for branches/BNC_2.12
- Timestamp:
- Apr 26, 2019, 10:39:35 PM (6 years ago)
- Location:
- branches/BNC_2.12/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/BNC_2.12/src/bncephuser.cpp
r8703 r8704 227 227 return; 228 228 } 229 else if (eph->type() == t_eph::GLONASS && timeDiff > 3*3600) { // updated every 30 minutes229 else if (eph->type() == t_eph::GLONASS && timeDiff > 2*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 > 3*3600) {275 else if (eph->type() == t_eph::GLONASS && dt > 2*3600) { 276 276 ephL->setCheckState(t_eph::outdated); 277 277 return; -
branches/BNC_2.12/src/bncephuser.h
r8703 r8704 76 76 void checkEphemeris(t_eph* eph, bool realTime); 77 77 QMutex _mutex; 78 static const unsigned _maxQueueSize = 7;78 static const unsigned _maxQueueSize = 6; 79 79 QMap<QString, std::deque<t_eph*> > _eph; 80 80 }; -
branches/BNC_2.12/src/upload/bncuploadcaster.cpp
r8687 r8704 98 98 _outBuffer.clear(); 99 99 } 100 msleep( 200); //sleep 0.2sec100 msleep(100); //sleep 0.1 sec 101 101 } 102 102 else {
Note:
See TracChangeset
for help on using the changeset viewer.