Changeset 10243 in ntrip for trunk


Ignore:
Timestamp:
Nov 6, 2023, 10:12:57 PM (7 months ago)
Author:
stuerze
Message:

revert last changes

Location:
trunk/BNC/src/combination
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/combination/bnccomb.cpp

    r10239 r10243  
    132132    _cmbSampl = 5;
    133133  }
    134 
    135   _cmbWait  = settings.value("cmbWait").toInt();
    136   if (_cmbWait <= 0) {
    137     _cmbSampl = 10;
    138   }
    139 
    140134  _useGps = (Qt::CheckState(settings.value("cmbGps").toInt()) == Qt::Checked) ? true : false;
    141135  if (_useGps) {
     
    457451void bncComb::slotNewClkCorrections(QList<t_clkCorr> clkCorrections) {
    458452  QMutexLocker locker(&_mutex);
     453  const double outWait = 1.0 * _cmbSampl;
    459454  int    currentWeek = 0;
    460455  double currentSec  = 0.0;
     
    581576    // Process the front epoch
    582577    // -----------------------
    583     if (epoTime < (_lastClkCorrTime - _cmbWait)) {
     578    if (epoTime < (_lastClkCorrTime - outWait)) {
    584579      _resTime = epoTime;
    585580      processEpoch(_resTime, clkCorrVec);
  • trunk/BNC/src/combination/bnccomb.h

    r10239 r10243  
    256256  e_method                                   _method;
    257257  int                                        _cmbSampl;
    258   int                                        _cmbWait;
    259258  int                                        _ms;
    260259  QMap<char, cmbEpoch>                       _buffer;
Note: See TracChangeset for help on using the changeset viewer.