Changeset 215 in ntrip


Ignore:
Timestamp:
Oct 6, 2006, 5:18:46 PM (18 years ago)
Author:
mervart
Message:

* empty log message *

Location:
trunk/BNC/RTCM
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/RTCM/GPSDecoder.h

    r207 r215  
    11// -*- C++ -*-
    22//
    3 // $Id: GPSDecoder.h,v 1.1.1.1 2006/05/30 11:05:27 mervart Exp $
     3// $Id: GPSDecoder.h,v 1.2 2006/10/06 10:51:43 mervart Exp $
    44// 2005/04/11: include 'int iPCode' into class 'GPSDecoder' (BKG)
    55#if !defined(__GPSDecoder_h__)
     
    4242                ,short _SNR2
    4343                ,int _pCodeIndicator
    44                 ,u_int _cumuLossOfCont)
     44                ,unsigned _cumuLossOfCont)
    4545    :SVPRN(_svprn)
    4646    ,GPSWeek(_GPSWeek)
     
    6969    short SNR2;    //<  signal-to noise ration (0.1 dB)
    7070    int   pCodeIndicator;  // 0 ... CA Code, 1 ... P Code
    71     u_int cumuLossOfCont;  // 0 to 31
     71    unsigned cumuLossOfCont;  // 0 to 31
    7272} ;
    7373
  • trunk/BNC/RTCM/RTCM2.cpp

    r214 r215  
    10611061  _buffer.append(buffer, bufLen);
    10621062
    1063   int    refWeek;
    1064   double refSecs;
    1065   gpsWeekAndSec(refWeek, refSecs);
    1066 
    10671063  while(true) {
    10681064    _PP.getPacket(_buffer);
     
    10701066
    10711067    if ( _PP.ID()==18 || _PP.ID()==19 ) {   
     1068
     1069      int    refWeek;
     1070      double refSecs;
     1071      gpsWeekAndSec(refWeek, refSecs);
     1072
    10721073      _ObsBlock.extract(_PP);
    10731074      if (!_ObsBlock.valid()) continue;
Note: See TracChangeset for help on using the changeset viewer.