GLAST/LAT > DAQ and FSW > FSW > Index by Name within Package
EBMtimeout EBMtimeout - Telemetry Bitfield
|
"Contents of the EBM timeout register" (APP/LHK) View Options: (help) Ancestry:
Definition:
Description:
Layout: (hide detail; help)
EBMtimeout (bf) | status status (0) | Padui14 spare0 (1-14) | timeout timeout (15-31)
typedef struct _LHK_EBMtimeout_Bfl {
#if ENDIANNESS_IS_BIG
/* Readout status (ADC or switch) */
unsigned int status:1;
/* Explicit 14 bit pad in unsigned int */
unsigned int spare0:14;
/* EBM timeout (17 bits) */
unsigned int timeout:17;
#elif ENDIANNESS_IS_LITTLE
/* EBM timeout (17 bits) */
unsigned int timeout:17;
/* Explicit 14 bit pad in unsigned int */
unsigned int spare0:14;
/* Readout status (ADC or switch) */
unsigned int status:1;
#else
#error _FILE_ ENDIANNESS NOT DEFINED
#endif
} __attribute__((packed)) LHK_EBMtimeout_Bfl;
typedef union _LHK_EBMtimeout {
/* underlying unsigned int */
unsigned int ui;
/* struct mapped bitfield */
struct _LHK_EBMtimeout_Bfl bf;
} LHK_EBMtimeout;
Fields:
Explicit 14 bit pad in unsigned int
Readout status. If set, read out failed for the designated ADC/switch.
EBM timeout (17 bits) |