GLAST/LAT > DAQ and FSW > FSW > Index by Name within Package
CFLAGS32 bootFlags - Telecommand Bitfield
|
"32-Bit Boot Flags Bitfield" (OS/PBC) View Options: (help) Ancestry:
Definition:
Description:
Layout: (hide detail; help)
CFLAGS32 (bf) | CFLAGSHI hi (0-15) | CFLAGSLO lo (16-31)
typedef struct _PBC_CFLAGS32_Bfl {
#if ENDIANNESS_IS_BIG
/* Upper 16 Bits of Boot Flags */
unsigned int hi:16;
/* Lower 16 Bits of Boot Flags */
unsigned int lo:16;
#elif ENDIANNESS_IS_LITTLE
/* Lower 16 Bits of Boot Flags */
unsigned int lo:16;
/* Upper 16 Bits of Boot Flags */
unsigned int hi:16;
#else
#error _FILE_ ENDIANNESS NOT DEFINED
#endif
} __attribute__((packed)) PBC_CFLAGS32_Bfl;
typedef union _PBC_CFLAGS32 {
/* underlying unsigned int */
unsigned int ui;
/* struct mapped bitfield */
struct _PBC_CFLAGS32_Bfl bf;
} PBC_CFLAGS32;
|