Changeset 10387 in ntrip for trunk/BNC/src
- Timestamp:
- Mar 12, 2024, 11:59:06 AM (10 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppParlist.cpp
r10384 r10387 435 435 required.push_back(new t_pppParam(t_pppParam::crdZ, t_prn(), t_lc::dummy)); 436 436 437 // Receiver Clock s438 // -------------- -437 // Receiver Clock 438 // -------------- 439 439 required.push_back(new t_pppParam(t_pppParam::rClk, t_prn(), t_lc::dummy)); 440 440 441 441 // GLONASS Clock Offset 442 442 // -------------------- 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')) ) { 444 446 required.push_back(new t_pppParam(t_pppParam::offGlo, t_prn(), t_lc::dummy)); 445 447 } … … 447 449 // Galileo Clock Offset 448 450 // -------------------- 449 if (OPT->useSystem(' E')) {451 if (OPT->useSystem('G') && OPT->useSystem('E')) { 450 452 required.push_back(new t_pppParam(t_pppParam::offGal, t_prn(), t_lc::dummy)); 451 453 } … … 453 455 // BDS Clock Offset 454 456 // ---------------- 455 if (OPT->useSystem('C')) { 457 if ((OPT->useSystem('G') && OPT->useSystem('C')) || 458 (OPT->useSystem('E') && OPT->useSystem('C'))) { 456 459 required.push_back(new t_pppParam(t_pppParam::offBds, t_prn(), t_lc::dummy)); 457 460 }
Note:
See TracChangeset
for help on using the changeset viewer.