Changeset 8581 in ntrip
- Timestamp:
- Jan 16, 2019, 1:09:33 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/ephemeris.cpp
r8542 r8581 58 58 59 59 if (_checkState == bad || 60 _checkState == unhealthy) { 60 _checkState == unhealthy || 61 _checkState == outdated) { 61 62 return failure; 62 63 } … … 313 314 314 315 if (_checkState == bad || 315 _checkState == unhealthy) { 316 _checkState == unhealthy || 317 _checkState == outdated) { 316 318 return failure; 317 319 } … … 400 402 xc[4] = _clock_drift + _clock_driftrate*tc; 401 403 xc[5] = _clock_driftrate; 402 404 403 405 return success; 404 406 } … … 611 613 612 614 if (_checkState == bad || 613 _checkState == unhealthy) { 615 _checkState == unhealthy || 616 _checkState == outdated) { 614 617 return failure; 615 618 } … … 914 917 915 918 if (_checkState == bad || 916 _checkState == unhealthy) { 919 _checkState == unhealthy || 920 _checkState == outdated) { 917 921 return failure; 918 922 } … … 1003 1007 xc[4] = _clock_drift + _clock_driftrate*tc; 1004 1008 xc[5] = _clock_driftrate; 1005 1009 1006 1010 return success; 1007 1011 } … … 1299 1303 1300 1304 if (_checkState == bad || 1301 _checkState == unhealthy) { 1305 _checkState == unhealthy || 1306 _checkState == outdated) { 1302 1307 return failure; 1303 1308 } … … 1515 1520 1516 1521 if (_checkState == bad || 1517 _checkState == unhealthy) { 1522 _checkState == unhealthy || 1523 _checkState == outdated) { 1518 1524 return failure; 1519 1525 }
Note:
See TracChangeset
for help on using the changeset viewer.