GLAST/LAT > DAQ and FSW > FSW > Index by Name within Package
TTOOSTATEBF - Telemetry Bitfield
|
"TOO State Bitfield" (APP/LIM) View Options: (help) Definition:
Description:
Layout: (hide detail; help)
TTOOSTATEBF (bf) | TPAD5 pad (0-4) | TSTARTED started (5) | TACTIVE active (6) | TREADY ready (7)
typedef struct _LIM_TTOOSTATEBF_Bfl {
#if ENDIANNESS_IS_BIG
/* 5-Bit Padding */
unsigned char pad:5;
/* Started Status */
unsigned char started:1;
/* Active Status */
unsigned char active:1;
/* Ready Status */
unsigned char ready:1;
#elif ENDIANNESS_IS_LITTLE
/* Ready Status */
unsigned char ready:1;
/* Active Status */
unsigned char active:1;
/* Started Status */
unsigned char started:1;
/* 5-Bit Padding */
unsigned char pad:5;
#else
#error _FILE_ ENDIANNESS NOT DEFINED
#endif
} __attribute__((packed)) LIM_TTOOSTATEBF_Bfl;
typedef union _LIM_TTOOSTATEBF {
/* underlying unsigned char */
unsigned char uc;
/* struct mapped bitfield */
struct _LIM_TTOOSTATEBF_Bfl bf;
} LIM_TTOOSTATEBF;
Fields:
Flag to indicate that an activity is active.
Explicit padding of 5 bits.
Flag to indicate that an activity is ready to be started.
Flag to indicate that an activity has been started. Used by:
|