Changeset 8216 in ntrip for branches/BNC_2.12/src/PPP


Ignore:
Timestamp:
Dec 13, 2017, 1:24:38 PM (6 years ago)
Author:
stuerze
Message:

unhealthy satellites are reported within log file but are remainig in stream and file output

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/BNC_2.12/src/PPP/pppEphPool.cpp

    r7278 r8216  
    2626/////////////////////////////////////////////////////////////////////////////
    2727void t_pppEphPool::putEphemeris(t_eph* eph) {
    28   if (eph && eph->checkState() != t_eph::bad) {
     28  if (eph && (eph->checkState() != t_eph::bad ||
     29              eph->checkState() != t_eph::unhealthy))  {
    2930    _satEphPool[eph->prn().toInt()].putEphemeris(_maxQueueSize, eph);
    3031  }
Note: See TracChangeset for help on using the changeset viewer.