Changeset 8702 in ntrip
- Timestamp:
- Apr 26, 2019, 2:07:11 PM (6 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/RTCM3/RTCM3Decoder.cpp
r8682 r8702 1125 1125 _gloFrq = QString("%1 %2").arg(eph._prn.toString().c_str()).arg(eph._frequency_number, 2, 'f', 0); 1126 1126 1127 emit newGlonassEph(eph); 1128 decoded = true; 1127 if (eph._xv.size() == 6) { 1128 emit newGlonassEph(eph); 1129 decoded = true; 1130 } 1129 1131 } 1130 1132 return decoded; -
trunk/BNC/src/bncephuser.cpp
r8678 r8702 226 226 return; 227 227 } 228 else if (eph->type() == t_eph::GLONASS && timeDiff > 1* 3600) { // updated every 30 minutes228 else if (eph->type() == t_eph::GLONASS && timeDiff > 2 * 3600) { // updated every 30 minutes 229 229 eph->setCheckState(t_eph::outdated); 230 230 return; … … 272 272 return; 273 273 } 274 else if (eph->type() == t_eph::GLONASS && dt > 1*3600) {274 else if (eph->type() == t_eph::GLONASS && dt > 2*3600) { 275 275 ephL->setCheckState(t_eph::outdated); 276 276 return; -
trunk/BNC/src/bncephuser.h
r8368 r8702 76 76 void checkEphemeris(t_eph* eph, bool realTime); 77 77 QMutex _mutex; 78 static const unsigned _maxQueueSize = 5;78 static const unsigned _maxQueueSize = 6; 79 79 QMap<QString, std::deque<t_eph*> > _eph; 80 80 };
Note:
See TracChangeset
for help on using the changeset viewer.