Changeset 1205 in ntrip for trunk/BNS/RTCM
- Timestamp:
- Nov 16, 2008, 1:05:32 AM (16 years ago)
- Location:
- trunk/BNS/RTCM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/BNS/RTCM/clock_orbit_rtcm.c ¶
r878 r1205 3 3 Name: clock_orbit_rtcm.c 4 4 Project: RTCM3 5 Version: $Id$ 5 Version: $Id: clock_orbit_rtcm.c,v 1.3 2008/08/15 16:29:40 weber Exp $ 6 6 Authors: Dirk Stöcker 7 7 Description: state space approach for RTCM3 … … 495 495 if(!co) return GCOBR_NOCLOCKORBITPARAMETER; 496 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 */ 497 499 G_MULTIPLE_MESSAGE_INDICATOR(mmi) 498 500 G_RESERVED6 … … 521 523 if(!co) return GCOBR_NOCLOCKORBITPARAMETER; 522 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 */ 523 527 G_MULTIPLE_MESSAGE_INDICATOR(mmi) 524 528 G_RESERVED6 … … 539 543 if(!co) return -5; 540 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 */ 541 547 G_MULTIPLE_MESSAGE_INDICATOR(mmi) 542 548 G_RESERVED6 -
TabularUnified trunk/BNS/RTCM/clock_orbit_rtcm.h ¶
r878 r1205 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/08/15 16:29:19 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.