- Timestamp:
- Sep 20, 2008, 3:10:51 PM (16 years ago)
- Location:
- trunk/BNC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/RTCM3/RTCM3Decoder.cpp
r1126 r1127 215 215 // --------------------------------------- 216 216 if (_mode == unknown || _mode == observations || _checkMountPoint == _staID || _checkMountPoint == "ALL") { 217 217 218 for (int ii = 0; ii < bufLen; ii++) { 218 219 219 _Parser.Message[_Parser.MessageSize++] = buffer[ii]; 220 220 221 if (_Parser.MessageSize >= _Parser.NeedBytes) { 221 222 222 223 // RTCM message types 223 224 // ------------------ 224 225 226 227 225 for (int kk = 0; kk < _Parser.typeSize; kk++) { 226 _typeList.push_back(_Parser.typeList[kk]); 227 } 228 _Parser.typeSize = 0; 228 229 229 230 while(int rr = RTCM3Parser(&_Parser)) { … … 232 233 // ----------------- 233 234 if (rr == 1 || rr == 2) { 234 235 decoded = true; 235 236 236 237 if (!_Parser.init) { -
trunk/BNC/todo.txt
r1122 r1127 5 5 connection. BNS just stops operation. 6 6 7 LM: it should be better now. At least it works fine on my notebook. 8 7 9 (*) BNS reconnect behavior with respect to BNC is sometimes a problem. 8 10 Reason: Once BNC is stopped and restarted, BNS does not continue 9 11 its operation. 10 12 13 LM: it should be better now. At least it works fine on my notebook. 14 11 15 (*) Outlier in orbit corrections, concerning only GLONASS. 12 16 Comment from Georg: I don't have an idea where to look for the problem. 13 17 Does anybody have an idea for a test scenario? 18 19 LM: I do not see the problem right now (on my notebook). Maybe is is already 20 O.K. due to other changes. Georg, could you test it? 14 21 15 22 (*) DLR started (and unfortunately meanwhile stopped) sending 30sec
Note:
See TracChangeset
for help on using the changeset viewer.