Changeset 6965 in ntrip


Ignore:
Timestamp:
Jun 25, 2015, 11:11:38 AM (9 years ago)
Author:
stuerze
Message:

some additions regarding BDS

Location:
trunk/BNC/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/pppOptions.cpp

    r6050 r6965  
    6262//////////////////////////////////////////////////////////////////////////////
    6363const std::vector<t_lc::type>& t_pppOptions::LCs(char system) const {
     64
    6465  if      (system == 'R') {
    6566    return _LCsGLONASS;
     
    6768  else if (system == 'E') {
    6869    return _LCsGalileo;
     70  }
     71  else if (system == 'C') {
     72    return  _LCsBDS;
    6973  }
    7074  else {
     
    9195  if (_LCsGLONASS.size() > 0) answ.push_back('R');
    9296  if (_LCsGalileo.size() > 0) answ.push_back('E');
     97  if (_LCsBDS.size()     > 0) answ.push_back('C');
    9398  return answ;
    9499}
  • trunk/BNC/src/pppOptions.h

    r6050 r6965  
    4949  double                  _aprSigTrp;
    5050  double                  _noiseTrp;
     51  int                     _nmeaPort;
    5152  double                  _aprSigAmb;
    5253  double                  _seedingTime;
     
    5455  std::vector<t_lc::type> _LCsGLONASS;
    5556  std::vector<t_lc::type> _LCsGalileo;
     57  std::vector<t_lc::type> _LCsBDS;
    5658};
    5759
Note: See TracChangeset for help on using the changeset viewer.