GLAST/LAT > DAQ and FSW > FSW > Index by Name within Package
GBMCONFIGBF gbm - Telemetry Bitfield
|
"GBM Interface Configuration Bitfield" (APP/LHK) View Options: (help) Ancestry:
Definition:
Description:
Layout: (hide detail; help)
GBMCONFIGBF (bf) | Paduc5 pad (0-4) | ALLOWED pri_int_allowed (5) ... rep_req_allowed (7)
typedef struct _LHK_GBMCONFIGBF_Bfl {
#if ENDIANNESS_IS_BIG
/* Explicit 5 bit pad in unsigned char */
unsigned char pad:5;
/* Allowed Status */
unsigned char pri_int_allowed:1;
/* Allowed Status */
unsigned char red_int_allowed:1;
/* Allowed Status */
unsigned char rep_req_allowed:1;
#elif ENDIANNESS_IS_LITTLE
/* Allowed Status */
unsigned char rep_req_allowed:1;
/* Allowed Status */
unsigned char red_int_allowed:1;
/* Allowed Status */
unsigned char pri_int_allowed:1;
/* Explicit 5 bit pad in unsigned char */
unsigned char pad:5;
#else
#error _FILE_ ENDIANNESS NOT DEFINED
#endif
} __attribute__((packed)) LHK_GBMCONFIGBF_Bfl;
typedef union _LHK_GBMCONFIGBF {
/* underlying unsigned char */
unsigned char uc;
/* struct mapped bitfield */
struct _LHK_GBMCONFIGBF_Bfl bf;
} LHK_GBMCONFIGBF;
Fields:
Flag to indicate if an action is allowed.
Explicit 5 bit pad in unsigned char |