Changeset 10259 in ntrip for trunk/BNC/src/PPP/pppParlist.cpp
- Timestamp:
- Nov 27, 2023, 3:58:48 PM (11 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppParlist.cpp
r10256 r10259 497 497 // GLONASS Clock Offset 498 498 // -------------------- 499 if (OPT->useSystem('R')) { 499 if ( _usedSystems.contains('R') && 500 (_usedSystems.contains('G') || _usedSystems.contains('E') || _usedSystems.contains('C'))) { 500 501 required.push_back(new t_pppParam(t_pppParam::offGlo, t_prn(), t_lc::dummy)); 502 } 503 else { 504 PPP_CLIENT->resetOffGlo(); 501 505 } 502 506 503 507 // Galileo Clock Offset 504 508 // -------------------- 505 if ( OPT->useSystem('E')) {509 if (_usedSystems.contains('E') && _usedSystems.contains('G')) { 506 510 required.push_back(new t_pppParam(t_pppParam::offGal, t_prn(), t_lc::dummy)); 511 } 512 else { 513 PPP_CLIENT->resetOffGal(); 507 514 } 508 515 509 516 // BDS Clock Offset 510 517 // ---------------- 511 if ( OPT->useSystem('C')) {518 if (_usedSystems.contains('C') && (_usedSystems.contains('G') || _usedSystems.contains('E'))) { 512 519 required.push_back(new t_pppParam(t_pppParam::offBds, t_prn(), t_lc::dummy)); 520 } 521 else { 522 PPP_CLIENT->resetOffBds(); 513 523 } 514 524
Note:
See TracChangeset
for help on using the changeset viewer.