Ignore:
Timestamp:
Feb 19, 2015, 6:18:11 PM (9 years ago)
Author:
stoecker
Message:

rename Compass to BDS

File:
1 edited

Legend:

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

    r6595 r6598  
    7878  connect(this, SIGNAL(newGalileoEph(t_ephGal)), BNC_CORE, SLOT(slotNewGalileoEph(t_ephGal)));
    7979  connect(this, SIGNAL(newSBASEph(t_ephSBAS)),   BNC_CORE, SLOT(slotNewSBASEph(t_ephSBAS)));
    80   connect(this, SIGNAL(newCompassEph(t_ephCompass)), BNC_CORE, SLOT(slotNewCompassEph(t_ephCompass)));
     80  connect(this, SIGNAL(newBDSEph(t_ephBDS)),     BNC_CORE, SLOT(slotNewBDSEph(t_ephBDS)));
    8181
    8282  // Mode can be either observations or corrections
     
    262262              }
    263263
    264               // COMPASS
     264              // BDS
    265265              // -------------
    266               else if (satID >= PRN_COMPASS_START && satID <= PRN_COMPASS_END) {
    267                 obs._prn.set('C', satID - PRN_COMPASS_START + 1);
     266              else if (satID >= PRN_BDS_START && satID <= PRN_BDS_END) {
     267                obs._prn.set('C', satID - PRN_BDS_START + 1);
    268268              }
    269269
     
    412412          }
    413413
    414           // COMPASS Ephemeris
     414          // BDS Ephemeris
    415415          // -----------------
    416           else if (rr == 63) {
    417             decoded = true;
    418 //            t_ephCompass eph; eph.set(&parser.ephemerisCompass);
    419 //            emit newCompassEph(eph);
     416          else if (rr == RTCM3ID_BDS) {
     417            decoded = true;
     418            t_ephBDS eph; eph.set(&parser.ephemerisBDS);
     419            emit newBDSEph(eph);
    420420          }
    421421        }
Note: See TracChangeset for help on using the changeset viewer.