Changeset 10387 in ntrip


Ignore:
Timestamp:
Mar 12, 2024, 11:59:06 AM (7 weeks ago)
Author:
stuerze
Message:

changes regarding PPP

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/PPP/pppParlist.cpp

    r10384 r10387  
    435435  required.push_back(new t_pppParam(t_pppParam::crdZ, t_prn(), t_lc::dummy));
    436436
    437   // Receiver Clocks
    438   // ---------------
     437  // Receiver Clock
     438  // --------------
    439439  required.push_back(new t_pppParam(t_pppParam::rClk, t_prn(), t_lc::dummy));
    440440
    441441  // GLONASS Clock Offset
    442442  // --------------------
    443   if (OPT->useSystem('R')) {
     443  if ((OPT->useSystem('G') && OPT->useSystem('R')) ||
     444      (OPT->useSystem('E') && OPT->useSystem('R')) ||
     445      (OPT->useSystem('C') && OPT->useSystem('R')) ) {
    444446    required.push_back(new t_pppParam(t_pppParam::offGlo, t_prn(), t_lc::dummy));
    445447  }
     
    447449  // Galileo Clock Offset
    448450  // --------------------
    449   if (OPT->useSystem('E')) {
     451  if (OPT->useSystem('G') && OPT->useSystem('E')) {
    450452    required.push_back(new t_pppParam(t_pppParam::offGal, t_prn(), t_lc::dummy));
    451453  }
     
    453455  // BDS Clock Offset
    454456  // ----------------
    455   if (OPT->useSystem('C')) {
     457  if ((OPT->useSystem('G') && OPT->useSystem('C')) ||
     458      (OPT->useSystem('E') && OPT->useSystem('C'))) {
    456459    required.push_back(new t_pppParam(t_pppParam::offBds, t_prn(), t_lc::dummy));
    457460  }
Note: See TracChangeset for help on using the changeset viewer.