Changeset 1022 in ntrip for trunk/BNC/RTCM3
- Timestamp:
- Aug 6, 2008, 1:00:58 PM (17 years ago)
- Location:
- trunk/BNC/RTCM3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/RTCM3/RTCM3Decoder.cpp
r1021 r1022 65 65 const int LEAPSECONDS = 14; /* only needed for approx. time */ 66 66 67 // Ensure, that the Decoder uses the "old" convention for the data structure for Rinex2. Perlt 67 _staID = staID; 68 69 // Ensure, that the Decoder uses the "old" convention for the data structure for Rinex2. Perlt 68 70 _Parser.rinex3 = 0; 69 71 … … 108 110 if (_mode == unknown) { 109 111 _mode = corrections; 112 emit(newMessage( (_staID + " : mode set to corrections").toAscii() )); 110 113 } 111 114 } … … 232 235 if (_mode == unknown && decoded) { 233 236 _mode = observations; 237 emit(newMessage( (_staID + " : mode set to observations").toAscii() )); 234 238 } 235 239 } -
trunk/BNC/RTCM3/RTCM3Decoder.h
r1021 r1022 42 42 virtual t_irc Decode(char* buffer = 0, int bufLen = 0); 43 43 signals: 44 void newMessage(QByteArray msg); 44 45 void newGPSEph(gpsephemeris* gpseph); 45 46 void newGlonassEph(glonassephemeris* glonasseph); … … 47 48 enum t_mode{unknown = 0, observations, corrections}; 48 49 50 QString _staID; 49 51 struct RTCM3ParserData _Parser; 50 52 RTCM3coDecoder* _coDecoder;
Note:
See TracChangeset
for help on using the changeset viewer.