Ignore:
Timestamp:
Feb 18, 2015, 1:33:03 PM (9 years ago)
Author:
stuerze
Message:

some preparation to read RTCM3 Compass ephemeris messages

File:
1 edited

Legend:

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

    r6543 r6595  
    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)));
    8081
    8182  // Mode can be either observations or corrections
     
    410411            emit newSBASEph(eph);
    411412          }
     413
     414          // COMPASS Ephemeris
     415          // -----------------
     416          else if (rr == 63) {
     417            decoded = true;
     418//            t_ephCompass eph; eph.set(&parser.ephemerisCompass);
     419//            emit newCompassEph(eph);
     420          }
    412421        }
    413422      }
Note: See TracChangeset for help on using the changeset viewer.