Changeset 1238 in ntrip
- Timestamp:
- Nov 26, 2008, 1:05:37 PM (16 years ago)
- Location:
- trunk/clock_and_orbit
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/clock_and_orbit/clock_orbit_rtcm.c
r956 r1238 3 3 Name: clock_orbit_rtcm.c 4 4 Project: RTCM3 5 Version: $Id $5 Version: $Id: clock_orbit_rtcm.c,v 1.4 2008/11/16 00:05:02 weber Exp $ 6 6 Authors: Dirk Stöcker 7 7 Description: state space approach for RTCM3 … … 85 85 #define SCALEADDBITS(a, b, c) ADDBITS(a, (int64_t)(b*c)) 86 86 87 #if 0 87 88 #define DEBUGSCALEADDBITS(n, a, b, c) \ 88 89 { \ … … 95 96 } \ 96 97 SCALEADDBITS(a,b,c) 98 #else 99 #define DEBUGSCALEADDBITS(n, a, b, c) SCALEADDBITS(a,b,c) 100 #endif 97 101 98 102 /* standard values */ … … 491 495 if(!co) return GCOBR_NOCLOCKORBITPARAMETER; 492 496 G_GPS_EPOCH_TIME(co->GPSEpochTime, co->NumberOfGPSSat) 497 co->epochGPS[co->epochSize] = co->GPSEpochTime; /* Weber, for latency */ 498 if(co->epochSize < 100) {co->epochSize += 1;} /* Weber, for latency */ 493 499 G_MULTIPLE_MESSAGE_INDICATOR(mmi) 494 500 G_RESERVED6 … … 517 523 if(!co) return GCOBR_NOCLOCKORBITPARAMETER; 518 524 G_GPS_EPOCH_TIME(co->GPSEpochTime, co->NumberOfGPSSat) 525 co->epochGPS[co->epochSize] = co->GPSEpochTime; /* Weber, for latency */ 526 if(co->epochSize < 100) {co->epochSize += 1;} /* Weber, for latency */ 519 527 G_MULTIPLE_MESSAGE_INDICATOR(mmi) 520 528 G_RESERVED6 … … 535 543 if(!co) return -5; 536 544 G_GPS_EPOCH_TIME(co->GPSEpochTime, co->NumberOfGPSSat) 545 co->epochGPS[co->epochSize] = co->GPSEpochTime; /* Weber, for latency */ 546 if(co->epochSize < 100) {co->epochSize += 1;} /* Weber, for latency */ 537 547 G_MULTIPLE_MESSAGE_INDICATOR(mmi) 538 548 G_RESERVED6 -
trunk/clock_and_orbit/clock_orbit_rtcm.h
r956 r1238 6 6 Name: clock_orbit_rtcm.h 7 7 Project: RTCM3 8 Version: $Id $8 Version: $Id: clock_orbit_rtcm.h,v 1.3 2008/11/16 00:05:32 weber Exp $ 9 9 Authors: Dirk Stöcker 10 10 Description: state space approach for RTCM3 … … 52 52 int ClockDataSupplied; /* boolean */ 53 53 int OrbitDataSupplied; /* boolean */ 54 int epochGPS[101]; /* Weber, for latency */ 55 int epochSize; /* Weber, for latency */ 54 56 enum SatelliteReferencePoint SatRefPoint; 55 57 enum SatelliteReferenceDatum SatRefDatum;
Note:
See TracChangeset
for help on using the changeset viewer.