Changeset 8581 in ntrip


Ignore:
Timestamp:
Jan 16, 2019, 1:09:33 PM (5 years ago)
Author:
stuerze
Message:

minor changes

File:
1 edited

Legend:

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

    r8542 r8581  
    5858
    5959  if (_checkState == bad ||
    60       _checkState == unhealthy) {
     60      _checkState == unhealthy ||
     61      _checkState == outdated) {
    6162    return failure;
    6263  }
     
    313314
    314315  if (_checkState == bad ||
    315       _checkState == unhealthy) {
     316      _checkState == unhealthy ||
     317      _checkState == outdated) {
    316318    return failure;
    317319  }
     
    400402  xc[4] = _clock_drift + _clock_driftrate*tc;
    401403  xc[5] = _clock_driftrate;
    402  
     404
    403405  return success;
    404406}
     
    611613
    612614  if (_checkState == bad ||
    613       _checkState == unhealthy) {
     615      _checkState == unhealthy ||
     616      _checkState == outdated) {
    614617    return failure;
    615618  }
     
    914917
    915918  if (_checkState == bad ||
    916       _checkState == unhealthy) {
     919      _checkState == unhealthy ||
     920      _checkState == outdated) {
    917921    return failure;
    918922  }
     
    10031007  xc[4] = _clock_drift + _clock_driftrate*tc;
    10041008  xc[5] = _clock_driftrate;
    1005  
     1009
    10061010  return success;
    10071011}
     
    12991303
    13001304  if (_checkState == bad ||
    1301       _checkState == unhealthy) {
     1305      _checkState == unhealthy ||
     1306      _checkState == outdated) {
    13021307    return failure;
    13031308  }
     
    15151520
    15161521  if (_checkState == bad ||
    1517       _checkState == unhealthy) {
     1522      _checkState == unhealthy ||
     1523      _checkState == outdated) {
    15181524    return failure;
    15191525  }
Note: See TracChangeset for help on using the changeset viewer.