GLAST/LAT > DAQ and FSW > FSW > Index by Name within Package
CCONFIGBF normal_config - Telecommand Bitfield
|
"Configuration ID Bitfield" (APP/LIM) View Options: (help) Ancestry:
Definition:
Description:
Layout: (hide detail; help)
CCONFIGBF (bf) | CPAD3 pad (0-2) | COBSCONFIGID id (3-7)
typedef struct _LIM_CCONFIGBF_Bfl {
#if ENDIANNESS_IS_BIG
/* 3-Bit Padding */
unsigned char pad:3;
/* Observation Configuration ID */
unsigned char id:5;
#elif ENDIANNESS_IS_LITTLE
/* Observation Configuration ID */
unsigned char id:5;
/* 3-Bit Padding */
unsigned char pad:3;
#else
#error _FILE_ ENDIANNESS NOT DEFINED
#endif
} __attribute__((packed)) LIM_CCONFIGBF_Bfl;
typedef union _LIM_CCONFIGBF {
/* underlying unsigned char */
unsigned char uc;
/* struct mapped bitfield */
struct _LIM_CCONFIGBF_Bfl bf;
} LIM_CCONFIGBF;
|