Changeset 6864 in ntrip for trunk/BNC/src/bncgetthread.cpp


Ignore:
Timestamp:
May 29, 2015, 12:19:02 PM (9 years ago)
Author:
stuerze
Message:

scanning of GLONASS slots is added

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/bncgetthread.cpp

    r6812 r6864  
    790790                       hh, antT));
    791791      }
     792
     793      // RTCM GLONASS slots
     794      // ------------------
     795      if (decoder()->_gloFrq.size()) {
     796        bool allFound = true;
     797        QString slot = decoder()->_gloFrq;
     798        if (_gloSlots.indexOf(slot) == -1) {
     799          _gloSlots.append(slot);
     800          allFound = false;
     801        }
     802        if (!allFound) {
     803          _gloSlots.sort();
     804          emit(newMessage(_staID + ": GLONASS slots "  + _gloSlots.join(" ").toAscii(), true));
     805        }
     806      }
    792807    }
    793808  }
     
    816831#endif
    817832
     833  decoder()->_gloFrq.clear();
    818834  decoder()->_typeList.clear();
    819835  decoder()->_antType.clear();
Note: See TracChangeset for help on using the changeset viewer.