Changeset 3691 in ntrip
- Timestamp:
- Feb 12, 2012, 2:53:32 PM (13 years ago)
- Location:
- trunk/BNC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/BNC/corrfile.cpp ¶
r3690 r3691 66 66 void t_corrFile::syncRead(const bncTime& tt) { 67 67 68 cout << "tt = " << tt.gpssec() << endl; 69 70 if (stopRead(tt)) { 71 return; 72 } 73 68 74 QList<QString> corrs; 69 75 70 76 if (!_lastLine.isEmpty() && !stopRead(tt)) { 71 77 corrs << _lastLine; 78 cout << _lastLine.toAscii().data() << endl; 72 79 } 73 80 … … 80 87 81 88 if (stopRead(tt)) { 89 cout << "stop " << endl; 82 90 if (corrs.size()) { 83 91 emit newCorrections(corrs); 84 92 } 93 return; 85 94 } 86 95 else { 87 96 corrs << _lastLine; 97 cout << _lastLine.toAscii().data() << endl; 88 98 } 89 99 } -
TabularUnified trunk/BNC/pppopt.cpp ¶
r3642 r3691 81 81 corrFileName = settings.value("postcorrFile").toString(); 82 82 83 pppMode = settings.value("pppSPP").toString() == "PPP"; 83 if (settings.value("pppSPP").toString() == "Post-Processing") { 84 if (corrFileName.isEmpty()) { 85 pppMode = false; 86 } 87 else { 88 pppMode = true; 89 } 90 } 91 else if (settings.value("pppSPP").toString() == "PPP") { 92 pppMode = true; 93 } 94 else { 95 pppMode = false; 96 } 97 84 98 rnxAppend = settingsChecked("rnxAppend"); 85 99 usePhase = settingsChecked("pppUsePhase");
Note:
See TracChangeset
for help on using the changeset viewer.