Changeset 8702 in ntrip for trunk


Ignore:
Timestamp:
Apr 26, 2019, 2:07:11 PM (5 years ago)
Author:
stuerze
Message:

minor changes

Location:
trunk/BNC/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/RTCM3/RTCM3Decoder.cpp

    r8682 r8702  
    11251125    _gloFrq = QString("%1 %2").arg(eph._prn.toString().c_str()).arg(eph._frequency_number, 2, 'f', 0);
    11261126
    1127     emit newGlonassEph(eph);
    1128     decoded = true;
     1127    if (eph._xv.size() == 6) {
     1128      emit newGlonassEph(eph);
     1129      decoded = true;
     1130    }
    11291131  }
    11301132  return decoded;
  • trunk/BNC/src/bncephuser.cpp

    r8678 r8702  
    226226      return;
    227227    }
    228     else if (eph->type() == t_eph::GLONASS && timeDiff > 1 * 3600) { // updated every 30 minutes
     228    else if (eph->type() == t_eph::GLONASS && timeDiff > 2 * 3600) { // updated every 30 minutes
    229229      eph->setCheckState(t_eph::outdated);
    230230      return;
     
    272272      return;
    273273    }
    274     else if (eph->type() == t_eph::GLONASS && dt > 1*3600) {
     274    else if (eph->type() == t_eph::GLONASS && dt > 2*3600) {
    275275      ephL->setCheckState(t_eph::outdated);
    276276      return;
  • trunk/BNC/src/bncephuser.h

    r8368 r8702  
    7676  void checkEphemeris(t_eph* eph, bool realTime);
    7777  QMutex                             _mutex;
    78   static const unsigned              _maxQueueSize = 5;
     78  static const unsigned              _maxQueueSize = 6;
    7979  QMap<QString, std::deque<t_eph*> > _eph;
    8080};
Note: See TracChangeset for help on using the changeset viewer.