Changeset 5739 in ntrip
- Timestamp:
- Aug 2, 2014, 12:06:06 PM (11 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bncgetthread.cpp
r5648 r5739 67 67 #include "RTCM/RTCM2Decoder.h" 68 68 #include "RTCM3/RTCM3Decoder.h" 69 #include "GPSS/gpssDecoder.h"70 #include "GPSS/hassDecoder.h"71 69 #include "serial/qextserialport.h" 72 70 … … 294 292 this, SIGNAL(newMessage(QByteArray,bool))); 295 293 } 296 else if (_format.indexOf("GPSS") != -1 || _format.indexOf("BNC") != -1) {297 emit(newMessage(_staID + ": Get Data in GPSS format", true));298 _decoder = new gpssDecoder();299 }300 294 else if (_format.indexOf("ZERO") != -1) { 301 295 emit(newMessage(_staID + ": Get data in original format", true)); … … 305 299 emit(newMessage(_staID + ": Get data in RTNet format", true)); 306 300 _decoder = new bncRtnetDecoder(); 307 }308 else if (_format.indexOf("HASS2ASCII") != -1) {309 emit(newMessage(_staID + ": Get data in HASS2ASCII format", true));310 _decoder = new hassDecoder(_staID);311 301 } 312 302 else { … … 513 503 // Check observation epoch 514 504 // ----------------------- 515 if (!_rawFile && !dynamic_cast<gpssDecoder*>(decoder())) {505 if (!_rawFile) { 516 506 int week; 517 507 double sec; -
trunk/BNC/src/src.pri
r5738 r5739 58 58 RTCM3/RTCM3coDecoder.h \ 59 59 RTCM3/clock_and_orbit/clock_orbit_rtcm.h \ 60 GPSS/gpssDecoder.h GPSS/hassDecoder.h \61 60 PPP/pppwidgets.h PPP/options.h PPP/pppMain.h \ 62 61 PPP/pppThread.h … … 88 87 RTCM3/RTCM3coDecoder.cpp \ 89 88 RTCM3/clock_and_orbit/clock_orbit_rtcm.c \ 90 GPSS/gpssDecoder.cpp GPSS/hassDecoder.cpp \91 89 PPP/pppwidgets.cpp PPP/options.cpp PPP/pppMain.cpp \ 92 90 PPP/pppThread.cpp
Note:
See TracChangeset
for help on using the changeset viewer.