Changeset 5926 in ntrip
- Timestamp:
- Aug 15, 2014, 8:48:50 AM (11 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/BNC/src/bncmain.cpp ¶
r5905 r5926 170 170 } 171 171 172 // Post-Processing PPP 173 // ------------------- 174 else if (settings.value("PPP/dataSource").toString() == "RINEX Files") { 175 BNC_CORE->setMode(t_bncCore::batchPostProcessing); 176 BNC_CORE->startPPP(true); 177 } 178 172 179 // Non-Interactive (data gathering) 173 180 // -------------------------------- -
TabularUnified trunk/BNC/src/bncwindow.cpp ¶
r5905 r5926 94 94 _runningRealTime = false; 95 95 _runningPostProcessingReqc = false; 96 _runningPostProcessingPPP = false; 96 97 _reqcActionComboBox = 0; // necessary for enableStartStop() 97 98 … … 1644 1645 void bncWindow::slotStart() { 1645 1646 saveOptions(); 1646 if ( !_reqcActionComboBox->currentText().isEmpty() ) { 1647 if ( _pppWidgets._dataSource->currentText() == "RINEX Files") { 1648 _runningPostProcessingPPP = true; 1649 BNC_CORE->startPPP(true); 1650 } 1651 else if ( !_reqcActionComboBox->currentText().isEmpty() ) { 1647 1652 startPostProcessingReqc(); 1648 1653 } 1649 1654 else { 1650 1655 startRealTime(); 1651 }1652 BNC_CORE->startPPP(true);1656 BNC_CORE->startPPP(true); 1657 } 1653 1658 } 1654 1659 -
TabularUnified trunk/BNC/src/bncwindow.h ¶
r5899 r5926 221 221 bncEphUploadCaster* _casterEph; 222 222 223 bool _realTimeRunning;224 223 bool _runningRealTime; 225 224 bool _runningPostProcessingReqc; 225 bool _runningPostProcessingPPP; 226 226 227 227 bncMapWin* _mapWin;
Note:
See TracChangeset
for help on using the changeset viewer.