Changeset 5971 in ntrip for trunk/BNC/src/PPP
- Timestamp:
- Aug 17, 2014, 12:50:34 PM (10 years ago)
- Location:
- trunk/BNC/src/PPP
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppMain.cpp
r5959 r5971 94 94 } 95 95 96 if (!_realTime) { 97 cout << "t_pppMain::stop RINEX" << endl; 98 return; 99 } 100 96 101 QListIterator<t_pppThread*> it(_pppThreads); 97 102 while (it.hasNext()) { … … 126 131 _nmeaPort = settings.value("PPP/nmeaPort").toInt(); 127 132 128 boolrealTime = false;133 _realTime = false; 129 134 if (settings.value("PPP/dataSource").toString() == "Real-Time Streams") { 130 realTime = true;135 _realTime = true; 131 136 } 132 137 else if (settings.value("PPP/dataSource").toString() == "RINEX Files") { 133 realTime = false;138 _realTime = false; 134 139 } 135 140 else { … … 147 152 t_pppOptions* opt = new t_pppOptions(); 148 153 149 opt->_realTime = realTime;154 opt->_realTime = _realTime; 150 155 opt->_roverName = hlp[0].toAscii().data(); 151 156 opt->_aprSigCrd[0] = hlp[1].toDouble(); … … 158 163 opt->_noiseTrp = hlp[8].toDouble(); 159 164 160 if ( realTime) {165 if (_realTime) { 161 166 opt->_corrMount = settings.value("PPP/corrMount").toString().toAscii().data(); 162 167 } -
trunk/BNC/src/PPP/pppMain.h
r5946 r5971 24 24 int _nmeaPort; 25 25 bool _running; 26 bool _realTime; 26 27 }; 27 28
Note:
See TracChangeset
for help on using the changeset viewer.