Changeset 8803 in ntrip for branches


Ignore:
Timestamp:
Sep 20, 2019, 2:51:01 PM (5 years ago)
Author:
stuerze
Message:

bnc supports now up to 63 BDS prn numbers

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/BNC_2.12/src/t_prn.h

    r8167 r8803  
    1111  static const unsigned MAXPRN_QZSS = 10;
    1212  static const unsigned MAXPRN_SBAS = 38;
    13   static const unsigned MAXPRN_BDS = 37;
     13  static const unsigned MAXPRN_BDS = 63;
    1414  static const unsigned MAXPRN_IRNSS = 7;
    1515  static const unsigned MAXPRN = MAXPRN_GPS + MAXPRN_GLONASS + MAXPRN_GALILEO
     
    6262
    6363  bool operator==(const t_prn& prn2) const {
    64     if (_system == prn2._system && _number == prn2._number
    65         && _flags == prn2._flags) {
     64    if (_system == prn2._system &&
     65        _number == prn2._number &&
     66        _flags  == prn2._flags) {
    6667      return true;
    6768    }
Note: See TracChangeset for help on using the changeset viewer.