Changeset 253 in ntrip


Ignore:
Timestamp:
Oct 17, 2006, 1:54:02 PM (18 years ago)
Author:
mervart
Message:

* empty log message *

Location:
trunk/BNC/RTCM
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/RTCM/RTCM2.cpp

    r249 r253  
    1818//   2006/10/05  OMO  Specified const'ness of various member functions
    1919//   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
    2023//
    2124// (c) DLR/GSOC
     
    723726 
    724727  availability.reset();    // Message status flags
    725   pendingMsg = true;       // Multiple message indicator
    726728 
    727729};
     
    769771bool RTCM2_Obs::valid() const {
    770772
    771   return ( allGPS() && (allGLONASS() || !anyGLONASS()) && !pendingMsg );
     773  return ( allGPS() && (allGLONASS() || !anyGLONASS()) );
    772774 
    773775};
     
    813815
    814816    // Multiple Message Indicator (only checked for first satellite)
    815     pendingMsg = ( P.getUnsignedBits(24,1)==1 );
     817    // pendingMsg = ( P.getUnsignedBits(24,1)==1 );
    816818   
    817819    // Handle epoch: store epoch of first GPS message and
     
    901903
    902904    // Multiple Message Indicator (only checked for first satellite)
    903     pendingMsg = ( P.getUnsignedBits(24,1)==1 );
     905    // pendingMsg = ( P.getUnsignedBits(24,1)==1 );
    904906   
    905907    // Handle epoch: store epoch of first GPS message and
  • trunk/BNC/RTCM/RTCM2.h

    r242 r253  
    2626//   2006/09/17  OMO  Created
    2727//   2006/10/05  OMO  Specified const'ness of various member functions
     28//   2006/10/17  OMO  Removed obsolete check of multiple message indicator
    2829//
    2930// (c) DLR/GSOC
     
    319320   
    320321    msgflags             availability;      // Msg availability flags
    321     bool                 pendingMsg;        // Multiple message indicator
    322322   
    323323};
Note: See TracChangeset for help on using the changeset viewer.