Changeset 1030 in ntrip for trunk/BNC/RTCM3
- Timestamp:
- Aug 10, 2008, 1:58:23 AM (17 years ago)
- Location:
- trunk/BNC/RTCM3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/RTCM3/RTCM3Decoder.cpp
r1022 r1030 124 124 125 125 while(int rr = RTCM3Parser(&_Parser)) { 126 127 // RTCM message types 128 // ------------------ 129 for (int kk = 0; kk < _Parser.typeSize; kk++) { 130 _typeList.push_back(_Parser.typeList[kk]); 131 } 132 _Parser.typeSize = 0; 126 133 127 134 // GNSS Observations -
trunk/BNC/RTCM3/rtcm3torinex.c
r1006 r1030 1 1 /* 2 2 Converter for RTCM3 data to RINEX. 3 $Id: rtcm3torinex.c,v 1. 292008/07/22 15:15:51 stoeckerExp $3 $Id: rtcm3torinex.c,v 1.12 2008/08/01 14:03:28 mervart Exp $ 4 4 Copyright (C) 2005-2008 by Dirk Stöcker <stoecker@alberding.eu> 5 5 … … 51 51 52 52 /* CVS revision and version */ 53 static char revisionstr[] = "$Revision: 1. 29$";53 static char revisionstr[] = "$Revision: 1.12 $"; 54 54 55 55 #ifndef COMPILEDATE … … 283 283 284 284 GETBITS(type,12) 285 handle->typeList[handle->typeSize] = type; /* RTCM message types */ 286 if(handle->typeSize < 100) {handle->typeSize += 1;} /* RTCM message types */ 285 287 switch(type) 286 288 { … … 1532 1534 1533 1535 #ifndef NO_RTCM3_MAIN 1534 static char datestr[] = "$Date: 2008/0 7/22 15:15:51$";1536 static char datestr[] = "$Date: 2008/08/01 14:03:28 $"; 1535 1537 1536 1538 /* The string, which is send as agent in HTTP request */ -
trunk/BNC/RTCM3/rtcm3torinex.h
r661 r1030 4 4 /* 5 5 Converter for RTCM3 data to RINEX. 6 $Id: rtcm3torinex.h,v 1. 9 2007/10/17 06:12:00mervart Exp $6 $Id: rtcm3torinex.h,v 1.10 2008/01/29 14:53:15 mervart Exp $ 7 7 Copyright (C) 2005-2006 by Dirk Stoecker <stoecker@alberding.eu> 8 8 … … 196 196 int lastlockl1[64]; 197 197 int lastlockl2[64]; 198 int typeSize; /* RTCM message types */ 199 int typeList[101]; /* RTCM message types */ 198 200 int datapos[RINEXENTRY_NUMBER]; 199 201 int dataflag[RINEXENTRY_NUMBER];
Note:
See TracChangeset
for help on using the changeset viewer.