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

revert last changes

File:
1 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);
Note: See TracChangeset for help on using the changeset viewer.