Changeset 5533 in ntrip


Ignore:
Timestamp:
Nov 7, 2013, 1:42:34 PM (10 years ago)
Author:
stoecker
Message:

add INAV/FNAV flags

Location:
trunk/rtcm3torinex/lib
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/rtcm3torinex/lib/rtcm3torinex.c

    r5521 r5533  
    487487          GETBITS(ge->E5aHS, 2)
    488488          GETBITS(sv, 1)
     489          ge->flags |= GALEPHF_INAV;
    489490          if(sv)
    490491            ge->flags |= GALEPHF_E5ADINVALID;
     
    493494        else
    494495        {
     496          ge->flags |= GALEPHF_FNAV;
    495497          GETBITS(ge->E5bHS, 2)
    496498          GETBITS(sv, 1)
  • trunk/rtcm3torinex/lib/rtcm3torinex.h

    r5373 r5533  
    366366
    367367#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 */
    369371
    370372#define GLOEPHF_UNHEALTHY       (1<<0) /* set if unhealty satellite, f2b78 */
Note: See TracChangeset for help on using the changeset viewer.