Changeset 1022 in ntrip
- Timestamp:
- Aug 6, 2008, 1:00:58 PM (16 years ago)
- Location:
- trunk/BNC
- Files:
-
- 3 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; -
trunk/BNC/bncgetthread.cpp
r1020 r1022 370 370 emit(newMessage("Get Data: " + _staID + " in RTCM 3.x format")); 371 371 _decoder = new RTCM3Decoder(_staID); 372 connect((RTCM3Decoder*) _decoder, SIGNAL(newMessage(QByteArray)), 373 this, SIGNAL(newMessage(QByteArray))); 372 374 } 373 375 else if (_format.indexOf("RTIGS") != -1) {
Note:
See TracChangeset
for help on using the changeset viewer.