Changeset 10619 in ntrip for trunk/BNC/src/RTCM3/RTCM3Decoder.cpp
- Timestamp:
- Mar 11, 2025, 4:26:59 PM (44 hours ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/RTCM3/RTCM3Decoder.cpp
r10599 r10619 425 425 }; 426 426 427 /** MSM signal types for IRNSS*/427 /** MSM signal types for NavIC */ 428 428 static struct CodeData irn[RTCM3_MSM_NUMSIG] = { 429 429 {0.0, 0}, … … 434 434 {0.0, 0}, 435 435 {0.0, 0}, 436 { IRNSS_WAVELENGTH_S, "9A"},437 {0.0, 0}, 438 {0.0, 0}, 439 {0.0, 0}, 440 {0.0, 0}, 441 {0.0, 0}, 442 {0.0, 0}, 443 {0.0, 0}, 444 {0.0, 0}, 445 {0.0, 0}, 446 {0.0, 0}, 447 {0.0, 0}, 448 {0.0, 0}, 449 {0.0, 0}, 450 { IRNSS_WAVELENGTH_L5, "5A"},436 {NavIC_WAVELENGTH_S, "9A"}, 437 {0.0, 0}, 438 {0.0, 0}, 439 {0.0, 0}, 440 {0.0, 0}, 441 {0.0, 0}, 442 {0.0, 0}, 443 {0.0, 0}, 444 {0.0, 0}, 445 {0.0, 0}, 446 {0.0, 0}, 447 {0.0, 0}, 448 {0.0, 0}, 449 {0.0, 0}, 450 {NavIC_WAVELENGTH_L5, "5A"}, 451 451 {0.0, 0}, 452 452 {0.0, 0}, … … 1467 1467 // 1468 1468 //////////////////////////////////////////////////////////////////////////// 1469 bool RTCM3Decoder::Decode IRNSSEphemeris(unsigned char* data, int size) {1469 bool RTCM3Decoder::DecodeNavICEphemeris(unsigned char* data, int size) { 1470 1470 bool decoded = false; 1471 1471 … … 2267 2267 break; 2268 2268 case 1041: 2269 if (Decode IRNSSEphemeris(_Message, _BlockSize))2269 if (DecodeNavICEphemeris(_Message, _BlockSize)) 2270 2270 decoded = true; 2271 2271 break;
Note:
See TracChangeset
for help on using the changeset viewer.