Changeset 2465 in ntrip for trunk/BNC/RTCM3
- Timestamp:
- May 5, 2010, 10:35:08 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/RTCM3/RTCM3coDecoder.cpp
r2435 r2465 305 305 for (int ii = 0; ii < CLOCKORBIT_NUMGPS + _bias.NumberOfGLONASSSat; ii++) { 306 306 char sysCh = ' '; 307 int messageType; 307 308 if (ii < _bias.NumberOfGPSSat) { 308 309 sysCh = 'G'; 310 messageType = BTYPE_GPS; 309 311 } 310 312 else if (ii >= CLOCKORBIT_NUMGPS) { 311 313 sysCh = 'R'; 314 messageType = BTYPE_GLONASS; 312 315 } 313 316 if (sysCh != ' ') { 314 317 QString line; 315 318 line.sprintf("%d %d %d %.1f %c%2.2d %d", 316 _bias.messageType, _bias.UpdateInterval, GPSweek, _GPSweeks,319 messageType, _bias.UpdateInterval, GPSweek, _GPSweeks, 317 320 sysCh, _bias.Sat[ii].ID, 318 321 _bias.Sat[ii].NumberOfCodeBiases);
Note:
See TracChangeset
for help on using the changeset viewer.