Changeset 6595 in ntrip for trunk/BNC/src/RTCM3
- Timestamp:
- Feb 18, 2015, 1:33:03 PM (10 years ago)
- Location:
- trunk/BNC/src/RTCM3
- Files:
-
- 2 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:
Note:
See TracChangeset
for help on using the changeset viewer.