Changeset 9212 in ntrip for trunk/BNC/src/RTCM3
- Timestamp:
- Nov 4, 2020, 3:28:55 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/RTCM3/RTCM3Decoder.cpp
r9210 r9212 1023 1023 1024 1024 eph._receptDateTime = currentDateAndTimeGPS(); 1025 eph._receptStaID = _staID; 1025 1026 1026 1027 GETBITS(i, 6) … … 1100 1101 1101 1102 eph._receptDateTime = currentDateAndTimeGPS(); 1103 eph._receptStaID = _staID; 1102 1104 1103 1105 GETBITS(sv, 6) … … 1224 1226 1225 1227 eph._receptDateTime = currentDateAndTimeGPS(); 1228 eph._receptStaID = _staID; 1226 1229 1227 1230 GETBITS(i, 4) … … 1306 1309 1307 1310 eph._receptDateTime = currentDateAndTimeGPS(); 1311 eph._receptStaID = _staID; 1308 1312 1309 1313 GETBITS(i, 6) … … 1396 1400 1397 1401 eph._receptDateTime = currentDateAndTimeGPS(); 1402 eph._receptStaID = _staID; 1398 1403 1399 1404 GETBITS(i, 6) … … 1450 1455 1451 1456 eph._receptDateTime = currentDateAndTimeGPS(); 1457 eph._receptStaID = _staID; 1452 1458 1453 1459 eph._inav = (i == 1046); … … 1555 1561 1556 1562 eph._receptDateTime = currentDateAndTimeGPS(); 1563 eph._receptStaID = _staID; 1557 1564 1558 1565 GETBITS(i, 6) … … 1729 1736 * else. */ 1730 1737 if ((id >= 1057 && id <= 1068) || 1731 1732 1738 (id >= 1240 && id <= 1270) || 1739 (id == 4076)) { 1733 1740 if (!_coDecoders.contains(_staID.toLatin1())) { 1734 1741 _coDecoders[_staID.toLatin1()] = new RTCM3coDecoder(_staID); … … 1741 1748 coDecoder->setSsrFormatType(RTCM3coDecoder::RTCMssr); 1742 1749 } 1743 if (coDecoder->Decode(reinterpret_cast<char *>(_Message), _BlockSize, 1744 errmsg) == success) { 1750 if (coDecoder->Decode(reinterpret_cast<char *>(_Message), _BlockSize, errmsg) == success) { 1745 1751 decoded = true; 1746 1752 }
Note:
See TracChangeset
for help on using the changeset viewer.