Changeset 1205 in ntrip for trunk/BNS/RTCM


Ignore:
Timestamp:
Nov 16, 2008, 1:05:32 AM (15 years ago)
Author:
weber
Message:

* empty log message *

Location:
trunk/BNS/RTCM
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNS/RTCM/clock_orbit_rtcm.c

    r878 r1205  
    33        Name:           clock_orbit_rtcm.c
    44        Project:        RTCM3
    5         Version:        $Id$
     5        Version:        $Id: clock_orbit_rtcm.c,v 1.3 2008/08/15 16:29:40 weber Exp $
    66        Authors:        Dirk Stöcker
    77        Description:    state space approach for RTCM3
     
    495495    if(!co) return GCOBR_NOCLOCKORBITPARAMETER;
    496496    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 */
    497499    G_MULTIPLE_MESSAGE_INDICATOR(mmi)
    498500    G_RESERVED6
     
    521523    if(!co) return GCOBR_NOCLOCKORBITPARAMETER;
    522524    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 */
    523527    G_MULTIPLE_MESSAGE_INDICATOR(mmi)
    524528    G_RESERVED6
     
    539543    if(!co) return -5;
    540544    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 */
    541547    G_MULTIPLE_MESSAGE_INDICATOR(mmi)
    542548    G_RESERVED6
  • trunk/BNS/RTCM/clock_orbit_rtcm.h

    r878 r1205  
    66        Name:           clock_orbit_rtcm.h
    77        Project:        RTCM3
    8         Version:        $Id$
     8        Version:        $Id: clock_orbit_rtcm.h,v 1.3 2008/08/15 16:29:19 weber Exp $
    99        Authors:        Dirk Stöcker
    1010        Description:    state space approach for RTCM3
     
    5252  int ClockDataSupplied;            /* boolean */
    5353  int OrbitDataSupplied;            /* boolean */
     54  int epochGPS[101];                /* Weber, for latency */
     55  int epochSize;                    /* Weber, for latency */
    5456  enum SatelliteReferencePoint SatRefPoint;
    5557  enum SatelliteReferenceDatum SatRefDatum;
Note: See TracChangeset for help on using the changeset viewer.