Changeset 5533 in ntrip
- Timestamp:
- Nov 7, 2013, 1:42:34 PM (11 years ago)
- Location:
- trunk/rtcm3torinex/lib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/rtcm3torinex/lib/rtcm3torinex.c
r5521 r5533 487 487 GETBITS(ge->E5aHS, 2) 488 488 GETBITS(sv, 1) 489 ge->flags |= GALEPHF_INAV; 489 490 if(sv) 490 491 ge->flags |= GALEPHF_E5ADINVALID; … … 493 494 else 494 495 { 496 ge->flags |= GALEPHF_FNAV; 495 497 GETBITS(ge->E5bHS, 2) 496 498 GETBITS(sv, 1) -
trunk/rtcm3torinex/lib/rtcm3torinex.h
r5373 r5533 366 366 367 367 #define GALEPHF_E5ADINVALID (1<<0) /* E5aDVS set invalid */ 368 #define GALEPHF_E5BDINVALID (1<<0) /* E5bDVS set invalid */ 368 #define GALEPHF_E5BDINVALID (1<<1) /* E5bDVS set invalid */ 369 #define GALEPHF_INAV (1<<2) /* INAV data */ 370 #define GALEPHF_FNAV (1<<3) /* FNAV data */ 369 371 370 372 #define GLOEPHF_UNHEALTHY (1<<0) /* set if unhealty satellite, f2b78 */
Note:
See TracChangeset
for help on using the changeset viewer.