- Timestamp:
- Oct 6, 2006, 5:18:46 PM (18 years ago)
- Location:
- trunk/BNC/RTCM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/RTCM/GPSDecoder.h
r207 r215 1 1 // -*- C++ -*- 2 2 // 3 // $Id: GPSDecoder.h,v 1. 1.1.1 2006/05/30 11:05:27mervart Exp $3 // $Id: GPSDecoder.h,v 1.2 2006/10/06 10:51:43 mervart Exp $ 4 4 // 2005/04/11: include 'int iPCode' into class 'GPSDecoder' (BKG) 5 5 #if !defined(__GPSDecoder_h__) … … 42 42 ,short _SNR2 43 43 ,int _pCodeIndicator 44 ,u _int_cumuLossOfCont)44 ,unsigned _cumuLossOfCont) 45 45 :SVPRN(_svprn) 46 46 ,GPSWeek(_GPSWeek) … … 69 69 short SNR2; //< signal-to noise ration (0.1 dB) 70 70 int pCodeIndicator; // 0 ... CA Code, 1 ... P Code 71 u _intcumuLossOfCont; // 0 to 3171 unsigned cumuLossOfCont; // 0 to 31 72 72 } ; 73 73 -
trunk/BNC/RTCM/RTCM2.cpp
r214 r215 1061 1061 _buffer.append(buffer, bufLen); 1062 1062 1063 int refWeek;1064 double refSecs;1065 gpsWeekAndSec(refWeek, refSecs);1066 1067 1063 while(true) { 1068 1064 _PP.getPacket(_buffer); … … 1070 1066 1071 1067 if ( _PP.ID()==18 || _PP.ID()==19 ) { 1068 1069 int refWeek; 1070 double refSecs; 1071 gpsWeekAndSec(refWeek, refSecs); 1072 1072 1073 _ObsBlock.extract(_PP); 1073 1074 if (!_ObsBlock.valid()) continue;
Note:
See TracChangeset
for help on using the changeset viewer.