Changeset 11036 in ntrip


Ignore:
Timestamp:
Sep 21, 2026, 2:49:10 PM (4 days ago)
Author:
stuerze
Message:

minor changes

Location:
trunk/BNC/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/RTCM3/clock_and_orbit/clock_orbit_rtcm_new.cpp

    r11035 r11036  
    11551155        D_FREQUENCY_SET_INDICATOR(satBlock.FrequencySetIndicator)
    11561156        D_GNSS_FREQUENCY_MASK(satBlock.GnssFrequencyMask)
     1157#ifdef BNC_DEBUG_SSR
     1158        if (a->SatelliteSetIndicator[s]) {
     1159          fprintf(stderr, " sat block (shared, PRNs");
     1160          for (k = 0; k < numSatPositions; ++k)
     1161            fprintf(stderr, " %d", satPositions[k] - satoffset[s] + 1);
     1162          fprintf(stderr, ") freqSetInd %d freqMask %02x\n",
     1163            satBlock.FrequencySetIndicator, satBlock.GnssFrequencyMask);
     1164        }
     1165        else {
     1166          fprintf(stderr, " sat block PRN %d freqSetInd %d freqMask %02x\n",
     1167            satPositions[satBlockIdx] - satoffset[s] + 1,
     1168            satBlock.FrequencySetIndicator, satBlock.GnssFrequencyMask);
     1169        }
     1170#endif
    11571171
    11581172        /* DF+018 frequency mask uses the same MSB-first convention as the
    … …  
    11761190          }
    11771191#ifdef BNC_DEBUG_SSR
    1178           fprintf(stderr, "  freq %d nadirCorrInd %d nadirCorr %f\n",
     1192          fprintf(stderr, "  freq %d nadirCorrInd %d nadirCorr %f nadirAngleCorr",
    11791193            f, satBlock.Freq[f].NadirCorrectionIndicator, satBlock.Freq[f].NadirCorrection);
     1194          if (a->NadirAngleDependentCorrectionIndicator[s]) {
     1195            for (deg = 0; deg <= a->maximumOffNadirAngle[s] && deg < ANT_MAXNADIRDEGREES; ++deg)
     1196              fprintf(stderr, " %.3f", satBlock.Freq[f].NadirAngleCorrection[deg]);
     1197          }
     1198          fprintf(stderr, "\n");
    11801199#endif
    11811200          if (satBlock.FrequencySetIndicator) {
  • trunk/BNC/src/t_prn.h

    r10791 r11036  
    77public:
    88  static const unsigned MAXPRN_GPS     = 32;
    9   static const unsigned MAXPRN_GLONASS = 26;
     9  static const unsigned MAXPRN_GLONASS = 30;
    1010  static const unsigned MAXPRN_GALILEO = 36;
    1111  static const unsigned MAXPRN_QZSS    = 10;
Note: See TracChangeset for help on using the changeset viewer.