Changeset 8678 in ntrip for trunk


Ignore:
Timestamp:
Apr 12, 2019, 10:11:11 AM (5 years ago)
Author:
stuerze
Message:

minor changes

Location:
trunk/BNC/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/bnccaster.cpp

    r8670 r8678  
    211211                           .arg(string(obs._time).c_str())
    212212                           .arg(obs._prn.toString().c_str())
    213                            .toAscii(), true) );
     213                             .toLatin1(), true) );
    214214        }
    215215      }
  • trunk/BNC/src/bncephuser.cpp

    r8659 r8678  
    226226      return;
    227227    }
    228     else if (eph->type() == t_eph::GLONASS && timeDiff > 2 * 3600) { // updated every 30 minutes
     228    else if (eph->type() == t_eph::GLONASS && timeDiff > 1 * 3600) { // updated every 30 minutes
    229229      eph->setCheckState(t_eph::outdated);
    230230      return;
     
    272272      return;
    273273    }
    274     else if (eph->type() == t_eph::GLONASS && dt > 2*3600) {
     274    else if (eph->type() == t_eph::GLONASS && dt > 1*3600) {
    275275      ephL->setCheckState(t_eph::outdated);
    276276      return;
  • trunk/BNC/src/latencychecker.cpp

    r8673 r8678  
    331331            .arg(_staID.data())
    332332            .arg(obs._prn.toString().data())
    333             .toAscii(), true) );
     333            .toLatin1(), true) );
    334334      }
    335335      l._newSec = static_cast<int>(nint(obs._time.gpssec()*10));
Note: See TracChangeset for help on using the changeset viewer.