Changeset 10949 in ntrip for trunk/BNC/src


Ignore:
Timestamp:
Jun 25, 2026, 4:27:27 PM (7 days ago)
Author:
stuerze
Message:

emitMessage now used in bncComb

File:
1 edited

Legend:

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

    r10948 r10949  
    12071207      if (_antex->satCoMcorrection(corr->_prn, Mjd, xc.Rows(1,3), vv, dx) != success) {
    12081208        dx = 0;
    1209         _log += "antenna not found " + corr->_prn.mid(0,3).toLatin1() + '\n';
    1210       }
    1211       _log += _antex->takeGlonassYawLog().toLatin1();
     1209        emit newMessage("bncComb: antenna not found " + corr->_prn.mid(0,3).toLatin1(), false);
     1210      }
     1211      QString glonassYawLog = _antex->takeGlonassYawLog();
     1212      if (!glonassYawLog.isEmpty()) {
     1213        emit newMessage(("bncComb: " + glonassYawLog.trimmed()).toLatin1(), false);
     1214      }
    12121215    }
    12131216    if (masterIsAPC) {
Note: See TracChangeset for help on using the changeset viewer.