Changeset 9211 in ntrip for trunk/BNC/src
- Timestamp:
- Nov 4, 2020, 3:27:02 PM (4 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bnccore.h
r8733 r9211 59 59 QString confFileName() const {return _confFileName;} 60 60 void writeRawData(const QByteArray& data, const QByteArray& staID, 61 const QByteArray& format);61 const QByteArray& format); 62 62 void initCombination(); 63 63 void stopCombination(); -
trunk/BNC/src/bncgetthread.cpp
r9191 r9211 317 317 t_irc bncGetThread::initDecoder() { 318 318 319 320 319 321 _decoder = 0; 320 322 321 if (_format.indexOf("RTCM_2") != -1 || _format.indexOf("RTCM2") != -1 322 || _format.indexOf("RTCM 2") != -1) { 323 if (_format.indexOf("RTCM_2") != -1 || 324 _format.indexOf("RTCM2") != -1 || 325 _format.indexOf("RTCM 2") != -1) { 323 326 emit(newMessage(_staID + ": Get data in RTCM 2.x format", true)); 324 327 _decoder = new RTCM2Decoder(_staID.data()); 325 } else if (_format.indexOf("RTCM_3") != -1 || _format.indexOf("RTCM3") != -1 326 || _format.indexOf("RTCM 3") != -1) { 328 } else if (_format.indexOf("RTCM_3") != -1 || 329 _format.indexOf("RTCM3") != -1 || 330 _format.indexOf("RTCM 3") != -1) { 327 331 emit(newMessage(_staID + ": Get data in RTCM 3.x format", true)); 328 332 RTCM3Decoder* newDecoder = new RTCM3Decoder(_staID, _rawFile);
Note:
See TracChangeset
for help on using the changeset viewer.