- Timestamp:
- Jul 31, 2014, 1:57:27 PM (10 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppThread.cpp
r5721 r5722 65 65 void t_pppThread::run() { 66 66 67 68 67 // Connect to BNC Signals 69 68 // ---------------------- 70 connect(BNC_CORE, SIGNAL(newCorrections(QList<QString>)), 71 this, SLOT(slotNewCorrections(QList<QString>))); 69 if (BNC_CORE->caster()) { 70 connect(BNC_CORE->caster(), SIGNAL(newObs(QByteArray, QList<t_obs>)), 71 this, SLOT(slotNewObs(QByteArray, QList<t_obs>))); 72 72 73 connect(BNC_CORE, SIGNAL(newEphGPS(gpsephemeris)), 74 this, SLOT(slotNewEphGPS(gpsephemeris))); 73 connect(BNC_CORE, SIGNAL(newEphGPS(gpsephemeris)), 74 this, SLOT(slotNewEphGPS(gpsephemeris))); 75 76 connect(BNC_CORE, SIGNAL(newEphGlonass(glonassephemeris)), 77 this, SLOT(slotNewEphGlonass(glonassephemeris))); 78 79 connect(BNC_CORE, SIGNAL(newEphGalileo(galileoephemeris)), 80 this, SLOT(slotNewEphGalileo(galileoephemeris))); 75 81 76 connect(BNC_CORE, SIGNAL(newEphGlonass(glonassephemeris)), 77 this, SLOT(slotNewEphGlonass(glonassephemeris))); 78 79 connect(BNC_CORE, SIGNAL(newEphGalileo(galileoephemeris)), 80 this, SLOT(slotNewEphGalileo(galileoephemeris))); 82 connect(BNC_CORE, SIGNAL(newCorrections(QList<QString>)), 83 this, SLOT(slotNewCorrections(QList<QString>))); 84 } 81 85 82 86 // Start processing loop -
trunk/BNC/src/bnccaster.cpp
r5680 r5722 283 283 this, SLOT(slotNewObs(QByteArray, QList<t_obs>))); 284 284 285 connect(getThread, SIGNAL(newObs(QByteArray, QList<t_obs>)), 286 this, SIGNAL(slotNewObs(QByteArray, QList<t_obs>))); 287 285 288 connect(getThread, SIGNAL(newRawData(QByteArray, QByteArray)), 286 289 this, SLOT(slotNewRawData(QByteArray, QByteArray))); -
trunk/BNC/src/bnccaster.h
r5680 r5722 54 54 void getThreadsFinished(); 55 55 void newMessage(QByteArray msg, bool showOnScreen); 56 void newObs(QByteArray staID, QList<t_obs> obsList); 56 57 57 58 private slots: -
trunk/BNC/src/bnccore.h
r5578 r5722 52 52 void setPortCorr(int port); 53 53 void setCaster(bncCaster* caster) {_caster = caster;} 54 const bncCaster* caster() const {return _caster;} 54 55 QDateTime* _currentDateAndTimeGPS; 55 56 void setConfFileName(const QString& confFileName);
Note:
See TracChangeset
for help on using the changeset viewer.