Changeset 5789 in ntrip for trunk/BNC/src/PPP
- Timestamp:
- Aug 4, 2014, 3:10:54 PM (11 years ago)
- Location:
- trunk/BNC/src/PPP
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/BNC/src/PPP/ephpool.cpp ¶
r5776 r5789 42 42 #include "ephpool.h" 43 43 #include "ppp.h" 44 #include "pppClient.h" 44 45 45 46 using namespace BNC; … … 132 133 for (unsigned ii = 0; ii < _ephs.size(); ii++) { 133 134 t_eph* eph = _ephs[ii]; 134 t_irc irc = eph->getCrd(tt, xc, vv); 135 t_irc irc = eph->getCrd(tt, xc, vv, OPT->corrRequired()); 135 136 if (irc == success) { 136 137 if (eph->prn().system() == 'R') { -
TabularUnified trunk/BNC/src/PPP/options.cpp ¶
r5770 r5789 69 69 // 70 70 ////////////////////////////////////////////////////////////////////////////// 71 bool t_options::corrRequired() const { 72 return false; 73 } 74 75 // 76 ////////////////////////////////////////////////////////////////////////////// 71 77 bool t_options::useGlonass() const { 72 78 return (_lcGLONASS.size() > 0); -
TabularUnified trunk/BNC/src/PPP/options.h ¶
r5757 r5789 22 22 bool dualFreqRequired() const; 23 23 bool biasRequired() const; 24 bool corrRequired() const; 24 25 bool useGlonass() const ; 25 26 bool xyzAprRoverSet() const;
Note:
See TracChangeset
for help on using the changeset viewer.