GLAST/LAT > DAQ and FSW > FSW > Index by Name within Package
HVCONFIGBF hv - Telemetry Bitfield
|
"High-Voltage Interface Configuration Bitfield" (APP/LHK) View Options: (help) Ancestry:
Definition:
Description:
Layout: (hide detail; help) HVCONFIGBF (bf) | Paduc7 pad (0-6) | ALLOWED hv_allowed (7)
typedef struct _LHK_HVCONFIGBF_Bfl {
#if ENDIANNESS_IS_BIG
/* Explicit 7 bit pad in unsigned char */
unsigned char pad:7;
/* Allowed Status */
unsigned char hv_allowed:1;
#elif ENDIANNESS_IS_LITTLE
/* Allowed Status */
unsigned char hv_allowed:1;
/* Explicit 7 bit pad in unsigned char */
unsigned char pad:7;
#else
#error _FILE_ ENDIANNESS NOT DEFINED
#endif
} __attribute__((packed)) LHK_HVCONFIGBF_Bfl;
typedef union _LHK_HVCONFIGBF {
/* underlying unsigned char */
unsigned char uc;
/* struct mapped bitfield */
struct _LHK_HVCONFIGBF_Bfl bf;
} LHK_HVCONFIGBF;
Fields:
Flag to indicate if an action is allowed.
Explicit 7 bit pad in unsigned char |