Changeset 5068 in ntrip for trunk/BNC/src/RTCM3


Ignore:
Timestamp:
Mar 30, 2013, 11:39:46 AM (11 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src/RTCM3
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/RTCM3/RTCM3Decoder.cpp

    r5066 r5068  
    7575
    7676  connect(this, SIGNAL(newGPSEph(gpsephemeris*)),
    77           PGM_CORE, SLOT(slotNewGPSEph(gpsephemeris*)));
     77          BNC_CORE, SLOT(slotNewGPSEph(gpsephemeris*)));
    7878  connect(this, SIGNAL(newGlonassEph(glonassephemeris*)),
    79           PGM_CORE, SLOT(slotNewGlonassEph(glonassephemeris*)));
     79          BNC_CORE, SLOT(slotNewGlonassEph(glonassephemeris*)));
    8080  connect(this, SIGNAL(newGalileoEph(galileoephemeris*)),
    81           PGM_CORE, SLOT(slotNewGalileoEph(galileoephemeris*)));
     81          BNC_CORE, SLOT(slotNewGalileoEph(galileoephemeris*)));
    8282
    8383  // Mode can be either observations or corrections
     
    149149  // Get Glonass Slot Numbers from Global Array
    150150  // ------------------------------------------
    151   PGM_CORE->getGlonassSlotNums(parser.GLOFreq);
     151  BNC_CORE->getGlonassSlotNums(parser.GLOFreq);
    152152
    153153  // Remaining part decodes the Observations
     
    377377
    378378  if (decoded) {
    379     PGM_CORE->storeGlonassSlotNums(parser.GLOFreq);
     379    BNC_CORE->storeGlonassSlotNums(parser.GLOFreq);
    380380    return success;
    381381  }
  • trunk/BNC/src/RTCM3/RTCM3coDecoder.cpp

    r5066 r5068  
    7373
    7474  connect(this, SIGNAL(newCorrLine(QString, QString, long)),
    75           PGM_CORE, SLOT(slotNewCorrLine(QString, QString, long)));
     75          BNC_CORE, SLOT(slotNewCorrLine(QString, QString, long)));
    7676
    7777  connect(this, SIGNAL(newMessage(QByteArray,bool)),
    78           PGM_CORE, SLOT(slotMessage(const QByteArray,bool)));
     78          BNC_CORE, SLOT(slotMessage(const QByteArray,bool)));
    7979
    8080  memset(&_co, 0, sizeof(_co));
  • trunk/BNC/src/RTCM3/ephemeris.cpp

    r5066 r5068  
    416416    }
    417417
    418     if (timeChanged && PGM_CORE->mode() == t_pgmCore::batchPostProcessing) {
     418    if (timeChanged && BNC_CORE->mode() == t_pgmCore::batchPostProcessing) {
    419419      bncTime newHTime(ww, (double) tow);
    420420      cout << "GLONASS " << ee->almanac_number <<  " Time Changed at "
Note: See TracChangeset for help on using the changeset viewer.