- Timestamp:
- Jun 21, 2022, 3:10:51 PM (2 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bnccore.cpp
r9765 r9767 202 202 t_irc ircPut = _ephUser.putNewEph(eph, true); 203 203 #ifdef BNC_DEBUG_BCEP 204 if (eph->checkState() == t_eph::bad) { 204 if (eph->checkState() == t_eph::unhealthy) { 205 messagePrivate(QString("%1: UNHEALTHY %2:%3") 206 .arg(eph->receptStaID()) 207 .arg(eph->navTypeString(eph->navType(), eph->prn(), 99.0)) 208 .arg(eph->rinexDateStr(eph->TOC(), eph->prn(), 99.0)).toLatin1()); 209 } 210 else if (eph->checkState() == t_eph::bad) { 205 211 messagePrivate(QString("%1: WRONG %2:%3") 206 212 .arg(eph->receptStaID()) 207 213 .arg(eph->navTypeString(eph->navType(), eph->prn(), 99.0)) 208 214 .arg(eph->rinexDateStr(eph->TOC(), eph->prn(), 99.0)).toLatin1()); 209 return failure;210 215 } 211 216 else if (eph->checkState() == t_eph::outdated) { 212 217 messagePrivate(QString("%1: OUTDATED %2:%3") 213 .arg(eph->receptStaID())214 .arg(eph->navTypeString(eph->navType(), eph->prn(), 99.0))215 .arg(eph->rinexDateStr(eph->TOC(), eph->prn(), 99.0)).toLatin1());216 return failure;217 }218 else if (eph->checkState() == t_eph::unhealthy) {219 messagePrivate(QString("%1: UNHEALTHY %2:%3")220 218 .arg(eph->receptStaID()) 221 219 .arg(eph->navTypeString(eph->navType(), eph->prn(), 99.0)) -
trunk/BNC/src/bncephuser.cpp
r9488 r9767 195 195 if (eph->isUnhealthy()) { 196 196 eph->setCheckState(t_eph::unhealthy); 197 return;197 //return; 198 198 } 199 199
Note:
See TracChangeset
for help on using the changeset viewer.