GLAST/LAT > DAQ and FSW > FSW > Index by Name within Package
int19uint13 vevf - Telemetry Bitfield
|
"19 bit signed 13 bit unsigned" (SYS/AIT) View Options: (help) Ancestry:
Definition:
Description: Layout: (hide detail; help) int19uint13 (bf) | int19 s19 (0-18) | uint13 u13 (19-31)
typedef struct _AIT_int19uint13_Bfl {
#if ENDIANNESS_IS_BIG
/* 19 bit signed int */
unsigned int s19:19;
/* 13 bit unsigned int */
unsigned int u13:13;
#elif ENDIANNESS_IS_LITTLE
/* 13 bit unsigned int */
unsigned int u13:13;
/* 19 bit signed int */
unsigned int s19:19;
#else
#error _FILE_ ENDIANNESS NOT DEFINED
#endif
} __attribute__((packed)) AIT_int19uint13_Bfl;
typedef union _AIT_int19uint13 {
/* underlying unsigned int */
unsigned int ui;
/* struct mapped bitfield */
struct _AIT_int19uint13_Bfl bf;
} AIT_int19uint13;
Fields:
|