Ignore:
Timestamp:
Nov 4, 2020, 3:28:55 PM (3 years ago)
Author:
stuerze
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/RTCM3/RTCM3Decoder.cpp

    r9210 r9212  
    10231023
    10241024    eph._receptDateTime = currentDateAndTimeGPS();
     1025    eph._receptStaID = _staID;
    10251026
    10261027    GETBITS(i, 6)
     
    11001101
    11011102    eph._receptDateTime = currentDateAndTimeGPS();
     1103    eph._receptStaID = _staID;
    11021104
    11031105    GETBITS(sv, 6)
     
    12241226
    12251227    eph._receptDateTime = currentDateAndTimeGPS();
     1228    eph._receptStaID = _staID;
    12261229
    12271230    GETBITS(i, 4)
     
    13061309
    13071310    eph._receptDateTime = currentDateAndTimeGPS();
     1311    eph._receptStaID = _staID;
    13081312
    13091313    GETBITS(i, 6)
     
    13961400
    13971401    eph._receptDateTime = currentDateAndTimeGPS();
     1402    eph._receptStaID = _staID;
    13981403
    13991404    GETBITS(i, 6)
     
    14501455
    14511456    eph._receptDateTime = currentDateAndTimeGPS();
     1457    eph._receptStaID = _staID;
    14521458
    14531459    eph._inav = (i == 1046);
     
    15551561
    15561562    eph._receptDateTime = currentDateAndTimeGPS();
     1563    eph._receptStaID = _staID;
    15571564
    15581565    GETBITS(i, 6)
     
    17291736       * else. */
    17301737      if ((id >= 1057 && id <= 1068) ||
    1731           (id >= 1240 && id <= 1270) ||
    1732                   (id == 4076)) {
     1738          (id >= 1240 && id <= 1270) ||
     1739          (id == 4076)) {
    17331740        if (!_coDecoders.contains(_staID.toLatin1())) {
    17341741          _coDecoders[_staID.toLatin1()] = new RTCM3coDecoder(_staID);
     
    17411748          coDecoder->setSsrFormatType(RTCM3coDecoder::RTCMssr);
    17421749        }
    1743         if (coDecoder->Decode(reinterpret_cast<char *>(_Message), _BlockSize,
    1744             errmsg) == success) {
     1750        if (coDecoder->Decode(reinterpret_cast<char *>(_Message), _BlockSize, errmsg) == success) {
    17451751          decoded = true;
    17461752        }
Note: See TracChangeset for help on using the changeset viewer.