Changeset 10275 in ntrip
- Timestamp:
- Dec 6, 2023, 11:38:31 AM (12 months ago)
- Location:
- trunk/BNC/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bncmain.cpp
r10251 r10275 233 233 " PPP/logPath {Directory for PPP log files [character string]}\n" 234 234 " PPP/antexFile {ANTEX file, full path [character string]}\n" 235 #ifdef USE_PPP 235 #ifdef USE_PPP 236 236 " PPP/blqFile {BLQ file, full path [character string]}\n" 237 237 " PPP/ionoMount {VTEC mountpoint, [char string]}\n" 238 238 " PPP/ionoFile {VTEC file, full path [char string]}\n" 239 #endif 239 #endif 240 240 " PPP/nmeaPath {Directory for NMEA output files [character string]}\n" 241 241 " PPP/snxtroPath {Directory for SINEX troposphere output files [character string]}\n" … … 568 568 BNC_CORE->stopPPP(); 569 569 BNC_CORE->stopCombination(); 570 sleep(2); 570 #ifndef WIN32 571 sleep(2); 572 #else 573 Sleep(2000); 574 #endif 571 575 } 572 576 if (caster) { -
trunk/BNC/src/combination/bncbiassnx.cpp
r10227 r10275 119 119 else if (line.indexOf("BIAS_MODE") == 1) { 120 120 if (line.contains("ABSOLUTE")) { 121 _type = ABS OLUTE;121 _type = ABS; 122 122 } 123 123 else if (line.contains("RELATIVE")) { 124 _type = REL ATIVE;124 _type = REL; 125 125 } 126 126 } … … 176 176 inFile.close(); 177 177 178 if (_type == ABS OLUTE) {178 if (_type == ABS) { 179 179 getDsbFromOsb(); 180 180 } -
trunk/BNC/src/combination/bncbiassnx.h
r10216 r10275 65 65 66 66 private: 67 enum e_type {ABS OLUTE, RELATIVE};67 enum e_type {ABS, REL}; 68 68 void clear(); 69 69 t_irc bncTimeFromSinex(QString snxStr, bncTime& time); -
trunk/BNC/src/combination/bnccomb.cpp
r10245 r10275 311 311 312 312 _running = false; 313 #ifndef WIN32 313 314 sleep(2); 315 #else 316 Sleep(2000); 317 #endif 314 318 315 319 QListIterator<cmbAC*> icAC(_ACs); -
trunk/BNC/src/combination/bnccomb.h
r10243 r10275 5 5 #include <fstream> 6 6 #include <iostream> 7 #ifndef WIN32 7 8 #include <unistd.h> 9 #else 10 #include <windows.h> 11 #endif 8 12 #include <map> 9 13 #include <newmat.h>
Note:
See TracChangeset
for help on using the changeset viewer.