Changeset 5926 in ntrip


Ignore:
Timestamp:
Aug 15, 2014, 8:48:50 AM (10 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/bncmain.cpp

    r5905 r5926  
    170170  }
    171171
     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
    172179  // Non-Interactive (data gathering)
    173180  // --------------------------------
  • trunk/BNC/src/bncwindow.cpp

    r5905 r5926  
    9494  _runningRealTime           = false;
    9595  _runningPostProcessingReqc = false;
     96  _runningPostProcessingPPP  = false;
    9697  _reqcActionComboBox        = 0; // necessary for enableStartStop()
    9798
     
    16441645void bncWindow::slotStart() {
    16451646  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() ) {
    16471652    startPostProcessingReqc();
    16481653  }
    16491654  else {
    16501655    startRealTime();
    1651   }
    1652   BNC_CORE->startPPP(true);
     1656    BNC_CORE->startPPP(true);
     1657  }
    16531658}
    16541659
  • trunk/BNC/src/bncwindow.h

    r5899 r5926  
    221221    bncEphUploadCaster* _casterEph;
    222222
    223     bool _realTimeRunning;
    224223    bool _runningRealTime;
    225224    bool _runningPostProcessingReqc;
     225    bool _runningPostProcessingPPP;
    226226
    227227    bncMapWin*           _mapWin;
Note: See TracChangeset for help on using the changeset viewer.