GLAST/LAT > DAQ and FSW > FSW > Index by Name within Package
DUMPFLAGS - Telemetry Bitfield
|
View Options: (help) Definition:
Description: Layout: (hide detail; help) DUMPFLAGS (bf) | LATUNIT latUnit (0-3) | LCMXID xactId (4-15)
typedef struct _LCM_DUMPFLAGS_Bfl {
#if ENDIANNESS_IS_BIG
/* LAT Unit */
unsigned short latUnit:4;
/* Transaction ID */
unsigned short xactId:12;
#elif ENDIANNESS_IS_LITTLE
/* Transaction ID */
unsigned short xactId:12;
/* LAT Unit */
unsigned short latUnit:4;
#else
#error _FILE_ ENDIANNESS NOT DEFINED
#endif
} __attribute__((packed)) LCM_DUMPFLAGS_Bfl;
typedef union _LCM_DUMPFLAGS {
/* underlying unsigned short */
unsigned short us;
/* struct mapped bitfield */
struct _LCM_DUMPFLAGS_Bfl bf;
} LCM_DUMPFLAGS;
Fields:
Used by:
|