Changeset 9567 in ntrip for trunk


Ignore:
Timestamp:
Dec 15, 2021, 2:26:31 PM (2 years ago)
Author:
stuerze
Message:

update regarding PPP

Location:
trunk/BNC/src
Files:
2 edited

Legend:

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

    r9565 r9567  
    174174  // -----------------------------------
    175175  for (unsigned ii = 0; ii < satObs.size(); ii++) {
    176     char system = satObs[ii]->_prn.system();
    177     if (_opt->useSystem(system)) {
     176    char sys = satObs[ii]->_prn.system();
     177    if (_opt->useSystem(sys)) {
    178178      t_pppSatObs* pppSatObs = new t_pppSatObs(*satObs[ii]);
    179179      if (pppSatObs->isValid()) {
     
    521521      useObsWithCodeBiasesOnly(_obsRover);
    522522
    523 
    524523      if (int(_obsRover.size()) < _opt->_minObs) {
    525524        LOG << "t_pppClient::processEpoch not enough observations" << endl;
  • trunk/BNC/src/satObs.h

    r9544 r9567  
    5454    _prn   = old._prn;
    5555    _time  = old._time;
    56     _type = old._type;
     56    _type  = old._type;
    5757    for (unsigned ii = 0; ii < old._obs.size(); ii++) {
    5858      _obs.push_back(new t_frqObs(*old._obs[ii]));
Note: See TracChangeset for help on using the changeset viewer.