Changeset 2907 in ntrip


Ignore:
Timestamp:
Jan 27, 2011, 2:17:20 PM (13 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncapp.cpp

    r2899 r2907  
    117117#ifdef USE_COMBINATION
    118118  _bncComb = new bncComb();
     119  if (_bncComb->nStreams() < 2) {
     120    delete _bncComb;
     121    _bncComb = 0;
     122  }
    119123#endif
    120124}
  • trunk/BNC/bncephuser.cpp

    r2904 r2907  
    3939 * -----------------------------------------------------------------------*/
    4040
     41#include <iostream>
     42
    4143#include "bncephuser.h"
    4244#include "bncapp.h"
     
    7577  QString prn = QString("G%1").arg(gpseph.satellite, 2, 10, QChar('0'));
    7678
     79  cout << "newEph " << prn.toAscii().data() << endl;
     80
    7781  if (_eph.contains(prn)) {
    7882    t_ephGPS* eLast = static_cast<t_ephGPS*>(_eph.value(prn)->last);
     
    100104
    101105  QString prn = QString("R%1").arg(gloeph.almanac_number, 2, 10, QChar('0'));
     106
     107  cout << "newEph " << prn.toAscii().data() << endl;
    102108
    103109  if (_eph.contains(prn)) {
     
    129135  QString prn = QString("E%1").arg(galeph.satellite, 2, 10, QChar('0'));
    130136
     137  cout << "newEph " << prn.toAscii().data() << endl;
     138
    131139  if (_eph.contains(prn)) {
    132140    t_ephGal* eLast = static_cast<t_ephGal*>(_eph.value(prn)->last);
  • trunk/BNC/bncwindow.cpp

    r2895 r2907  
    532532  _aogroup->addTab(pppgroup,tr("PPP (1)"));
    533533  _aogroup->addTab(ppp2group,tr("PPP (2)"));
     534#ifdef USE_COMBINATION
    534535  _aogroup->addTab(cmbgroup,tr("Combination"));
     536#endif
    535537
    536538  // Log Tab
Note: See TracChangeset for help on using the changeset viewer.