Changeset 5971 in ntrip for trunk/BNC/src/PPP


Ignore:
Timestamp:
Aug 17, 2014, 12:50:34 PM (10 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src/PPP
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/PPP/pppMain.cpp

    r5959 r5971  
    9494  }
    9595
     96  if (!_realTime) {
     97    cout << "t_pppMain::stop RINEX" << endl;
     98    return;
     99  }
     100
    96101  QListIterator<t_pppThread*> it(_pppThreads);
    97102  while (it.hasNext()) {
     
    126131  _nmeaPort = settings.value("PPP/nmeaPort").toInt();
    127132
    128   bool realTime = false;
     133  _realTime = false;
    129134  if      (settings.value("PPP/dataSource").toString() == "Real-Time Streams") {
    130     realTime = true;
     135    _realTime = true;
    131136  }
    132137  else if (settings.value("PPP/dataSource").toString() == "RINEX Files") {
    133     realTime = false;
     138    _realTime = false;
    134139  }
    135140  else {
     
    147152    t_pppOptions* opt = new t_pppOptions();
    148153
    149     opt->_realTime     = realTime;
     154    opt->_realTime     = _realTime;
    150155    opt->_roverName    = hlp[0].toAscii().data();
    151156    opt->_aprSigCrd[0] = hlp[1].toDouble();
     
    158163    opt->_noiseTrp     = hlp[8].toDouble();
    159164
    160     if (realTime) {
     165    if (_realTime) {
    161166      opt->_corrMount = settings.value("PPP/corrMount").toString().toAscii().data();
    162167    }
  • trunk/BNC/src/PPP/pppMain.h

    r5946 r5971  
    2424  int      _nmeaPort;
    2525  bool     _running;
     26  bool     _realTime;
    2627};
    2728
Note: See TracChangeset for help on using the changeset viewer.