Ignore:
Timestamp:
Nov 26, 2020, 10:02:59 PM (3 years ago)
Author:
stuerze
Message:

minor changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/BNC_2.12/src/RTCM3/RTCM3Decoder.cpp

    r9263 r9286  
    10321032
    10331033    eph._receptDateTime = currentDateAndTimeGPS();
    1034     eph._receptStaID = _staID;   
     1034    eph._receptStaID = _staID;
    10351035
    10361036    GETBITS(i, 6)
     
    11111111    eph._receptDateTime = currentDateAndTimeGPS();
    11121112    eph._receptStaID = _staID;
    1113    
     1113
    11141114    GETBITS(sv, 6)
    11151115    eph._prn.set('R', sv);
     
    12361236    eph._receptDateTime = currentDateAndTimeGPS();
    12371237    eph._receptStaID = _staID;
    1238    
     1238
    12391239    GETBITS(i, 4)
    12401240    eph._prn.set('J', i);
     
    13191319    eph._receptDateTime = currentDateAndTimeGPS();
    13201320    eph._receptStaID = _staID;
    1321    
     1321
    13221322    GETBITS(i, 6)
    13231323    eph._prn.set('I', i);
     
    14101410    eph._receptDateTime = currentDateAndTimeGPS();
    14111411    eph._receptStaID = _staID;
    1412    
     1412
    14131413    GETBITS(i, 6)
    14141414    eph._prn.set('S', 20 + i);
     
    14651465    eph._receptDateTime = currentDateAndTimeGPS();
    14661466    eph._receptStaID = _staID;
    1467    
     1467
    14681468    eph._inav = (i == 1046);
    14691469    eph._fnav = (i == 1045);
     
    15711571    eph._receptDateTime = currentDateAndTimeGPS();
    15721572    eph._receptStaID = _staID;
    1573    
     1573
    15741574    GETBITS(i, 6)
    15751575    eph._prn.set('C', i);
     
    17451745        }
    17461746      }
    1747      else if (id >= 1070 && id <= 1229) { /* MSM */
     1747     else if (id >= 1070 && id <= 1237) { /* MSM */
    17481748        if (DecodeRTCM3MSM(_Message, _BlockSize))
    17491749          decoded = true;
Note: See TracChangeset for help on using the changeset viewer.