Changeset 253 in ntrip for trunk/BNC/RTCM
- Timestamp:
- Oct 17, 2006, 1:54:02 PM (18 years ago)
- Location:
- trunk/BNC/RTCM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/RTCM/RTCM2.cpp
r249 r253 18 18 // 2006/10/05 OMO Specified const'ness of various member functions 19 19 // 2006/10/13 LMV Fixed resolvedPhase to handle missing C1 range 20 // 2006/10/14 LMV Fixed loop cunter in ThirtyBitWord 21 // 2006/10/14 LMV Exception handling 22 // 2006/10/17 OMO Removed obsolete check of multiple message indicator 20 23 // 21 24 // (c) DLR/GSOC … … 723 726 724 727 availability.reset(); // Message status flags 725 pendingMsg = true; // Multiple message indicator726 728 727 729 }; … … 769 771 bool RTCM2_Obs::valid() const { 770 772 771 return ( allGPS() && (allGLONASS() || !anyGLONASS()) && !pendingMsg);773 return ( allGPS() && (allGLONASS() || !anyGLONASS()) ); 772 774 773 775 }; … … 813 815 814 816 // Multiple Message Indicator (only checked for first satellite) 815 pendingMsg = ( P.getUnsignedBits(24,1)==1 );817 // pendingMsg = ( P.getUnsignedBits(24,1)==1 ); 816 818 817 819 // Handle epoch: store epoch of first GPS message and … … 901 903 902 904 // Multiple Message Indicator (only checked for first satellite) 903 pendingMsg = ( P.getUnsignedBits(24,1)==1 );905 // pendingMsg = ( P.getUnsignedBits(24,1)==1 ); 904 906 905 907 // Handle epoch: store epoch of first GPS message and -
trunk/BNC/RTCM/RTCM2.h
r242 r253 26 26 // 2006/09/17 OMO Created 27 27 // 2006/10/05 OMO Specified const'ness of various member functions 28 // 2006/10/17 OMO Removed obsolete check of multiple message indicator 28 29 // 29 30 // (c) DLR/GSOC … … 319 320 320 321 msgflags availability; // Msg availability flags 321 bool pendingMsg; // Multiple message indicator322 322 323 323 };
Note:
See TracChangeset
for help on using the changeset viewer.