Changeset 6595 in ntrip
- Timestamp:
- Feb 18, 2015, 1:33:03 PM (10 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/RTCM3/RTCM3Decoder.cpp
r6543 r6595 78 78 connect(this, SIGNAL(newGalileoEph(t_ephGal)), BNC_CORE, SLOT(slotNewGalileoEph(t_ephGal))); 79 79 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 81 81 82 // Mode can be either observations or corrections … … 410 411 emit newSBASEph(eph); 411 412 } 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 } 412 421 } 413 422 } -
trunk/BNC/src/RTCM3/RTCM3Decoder.h
r6432 r6595 52 52 void newSBASEph(t_ephSBAS eph); 53 53 void newGalileoEph(t_ephGal eph); 54 void newCompassEph(t_ephCompass eph); 54 55 55 56 private: -
trunk/BNC/src/bnccore.cpp
r6522 r6595 250 250 } 251 251 252 // New Compass Ephemeris 253 //////////////////////////////////////////////////////////////////////////// 254 void t_bncCore::slotNewCompassEph(t_ephCompass eph) { 255 if (checkPrintEph(&eph) == success) { 256 emit newCompassEph(eph); 257 } 258 } 252 259 253 260 // Print Header of the output File(s) -
trunk/BNC/src/bnccore.h
r6520 r6595 80 80 void slotNewGalileoEph(t_ephGal); 81 81 void slotNewSBASEph(t_ephSBAS); 82 void slotNewCompassEph(t_ephCompass); 82 83 void slotNewOrbCorrections(QList<t_orbCorr>); 83 84 void slotNewClkCorrections(QList<t_clkCorr>); … … 93 94 void newSBASEph(t_ephSBAS eph); 94 95 void newGalileoEph(t_ephGal eph); 96 void newCompassEph(t_ephCompass eph); 95 97 void newOrbCorrections(QList<t_orbCorr>); 96 98 void newClkCorrections(QList<t_clkCorr>); -
trunk/BNC/src/bncephuser.cpp
r6566 r6595 61 61 connect(BNC_CORE, SIGNAL(newSBASEph(t_ephSBAS)), 62 62 this, SLOT(slotNewSBASEph(t_ephSBAS)), Qt::DirectConnection); 63 64 connect(BNC_CORE, SIGNAL(newCompassEph(t_ephCompass)), 65 this, SLOT(slotNewCompassEph(t_ephCompass)), Qt::DirectConnection); 63 66 } 64 67 } … … 98 101 //////////////////////////////////////////////////////////////////////////// 99 102 void bncEphUser::slotNewSBASEph(t_ephSBAS eph) { 103 putNewEph(&eph, false); 104 } 105 106 // New Compass Ephemeris 107 //////////////////////////////////////////////////////////////////////////// 108 void bncEphUser::slotNewCompassEph(t_ephCompass eph) { 100 109 putNewEph(&eph, false); 101 110 } -
trunk/BNC/src/bncephuser.h
r6519 r6595 42 42 void slotNewGalileoEph(t_ephGal); 43 43 void slotNewSBASEph(t_ephSBAS); 44 void slotNewCompassEph(t_ephCompass); 44 45 45 46 public:
Note:
See TracChangeset
for help on using the changeset viewer.