Changeset 8704 in ntrip


Ignore:
Timestamp:
Apr 26, 2019, 10:39:35 PM (5 years ago)
Author:
stuerze
Message:

minor changes

Location:
branches/BNC_2.12/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/BNC_2.12/src/bncephuser.cpp

    r8703 r8704  
    227227      return;
    228228    }
    229     else if (eph->type() == t_eph::GLONASS && timeDiff > 3*3600) { // updated every 30 minutes
     229    else if (eph->type() == t_eph::GLONASS && timeDiff > 2*3600) { // updated every 30 minutes
    230230      eph->setCheckState(t_eph::outdated);
    231231      return;
     
    273273      return;
    274274    }
    275     else if (eph->type() == t_eph::GLONASS && dt > 3*3600) {
     275    else if (eph->type() == t_eph::GLONASS && dt > 2*3600) {
    276276      ephL->setCheckState(t_eph::outdated);
    277277      return;
  • branches/BNC_2.12/src/bncephuser.h

    r8703 r8704  
    7676  void checkEphemeris(t_eph* eph, bool realTime);
    7777  QMutex                             _mutex;
    78   static const unsigned              _maxQueueSize = 7;
     78  static const unsigned              _maxQueueSize = 6;
    7979  QMap<QString, std::deque<t_eph*> > _eph;
    8080};
  • branches/BNC_2.12/src/upload/bncuploadcaster.cpp

    r8687 r8704  
    9898        _outBuffer.clear();
    9999      }
    100       msleep(200); //sleep 0.2 sec
     100      msleep(100); //sleep 0.1 sec
    101101    }
    102102    else {
Note: See TracChangeset for help on using the changeset viewer.