Changeset 6966 in ntrip


Ignore:
Timestamp:
Jun 25, 2015, 11:12:30 AM (9 years ago)
Author:
stuerze
Message:

some additions regarding BDS

Location:
trunk/BNC/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/pppRun.cpp

    r6825 r6966  
    9898            this, SLOT(slotNewGalileoEph(t_ephGal)),conType);
    9999
     100    connect(BNC_CORE, SIGNAL(newBDSEph(t_ephBDS)),
     101            this, SLOT(slotNewBDSEph(t_ephBDS)),conType);
     102
    100103    connect(BNC_CORE, SIGNAL(newOrbCorrections(QList<t_orbCorr>)),
    101104            this, SLOT(slotNewOrbCorrections(QList<t_orbCorr>)),conType);
     
    194197////////////////////////////////////////////////////////////////////////////
    195198void t_pppRun::slotNewGalileoEph(t_ephGal eph) {
     199  QMutexLocker locker(&_mutex);
     200  _pppClient->putEphemeris(&eph);
     201}
     202
     203//
     204////////////////////////////////////////////////////////////////////////////
     205void t_pppRun::slotNewBDSEph(t_ephBDS eph) {
    196206  QMutexLocker locker(&_mutex);
    197207  _pppClient->putEphemeris(&eph);
  • trunk/BNC/src/pppRun.h

    r6653 r6966  
    3939  void slotNewGlonassEph(t_ephGlo);
    4040  void slotNewGalileoEph(t_ephGal);
     41  void slotNewBDSEph(t_ephBDS);
    4142  void slotNewOrbCorrections(QList<t_orbCorr> orbCorr);
    4243  void slotNewClkCorrections(QList<t_clkCorr> clkCorr);
Note: See TracChangeset for help on using the changeset viewer.