Changeset 8689 in ntrip
- Timestamp:
- Apr 24, 2019, 11:02:55 AM (6 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/ephemeris.cpp
r8618 r8689 613 613 double dtPos = bncTime(GPSweek, GPSweeks) - _tt; 614 614 615 if (fabs(dtPos) > 24*3600.0) {615 if (fabs(dtPos) > 3600.0) { 616 616 return failure; 617 617 } -
trunk/BNC/src/latencychecker.h
r8442 r8689 40 40 void checkCorrLatency(int corrGPSEpochTime, int type); 41 41 double currentLatency() { return _curLat;} 42 //QByteArray currentLatencyType() {return l._type;}43 42 44 43 class t_latency { 45 44 public: 46 45 t_latency() { 47 _oldSec = -1;48 _newSec = -1;49 _numGaps = 50 _diffSec = 51 _numLat = 52 _sumLat = 53 _sumLatQ = 54 _meanDiff = 46 _oldSec = 0; 47 _newSec = 0; 48 _numGaps = 0; 49 _diffSec = 0; 50 _numLat = 0; 51 _sumLat = 0.0; 52 _sumLatQ = 0.0; 53 _meanDiff = 0.0; 55 54 _minLat = 1000.0; 56 55 _maxLat = -1000.0; 57 _curLat = 58 _type = 59 _followSec = 56 _curLat = 0.0; 57 _type = ""; 58 _followSec = false; 60 59 } 61 60 void init() { -
trunk/BNC/src/upload/bncrtnetuploadcaster.cpp
r8679 r8689 504 504 } 505 505 else { 506 in >> numVal; 507 for (int ii = 0; ii < numVal; ii++) { 508 double dummy; 509 in >> dummy; 510 } 506 511 emit(newMessage(" RTNET format error: " 507 512 + lines[ii].toLatin1(), false)); -
trunk/BNC/src/upload/bncuploadcaster.cpp
r8275 r8689 102 102 _outBuffer.clear(); 103 103 } 104 msleep( 100); //sleep 0.1sec104 msleep(200); //sleep 0.2 sec 105 105 } 106 106 else {
Note:
See TracChangeset
for help on using the changeset viewer.