GLAST/LAT > DAQ and FSW > FSW > Index by Name within Package
TIDBF idents - Telemetry Bitfield
|
"LAT Unit and Transaction ID Bitfield" (SVC/MEM) View Options: (help) Ancestry:
Definition:
Description:
Layout: (hide detail; help) TIDBF (bf) | TLATUNIT latUnit (0-3) | TTRANID tranID (4-15)
typedef struct _MEM_TIDBF_Bfl {
#if ENDIANNESS_IS_BIG
/* Source LAT Unit */
unsigned short latUnit:4;
/* Transaction ID */
unsigned short tranID:12;
#elif ENDIANNESS_IS_LITTLE
/* Transaction ID */
unsigned short tranID:12;
/* Source LAT Unit */
unsigned short latUnit:4;
#else
#error _FILE_ ENDIANNESS NOT DEFINED
#endif
} __attribute__((packed)) MEM_TIDBF_Bfl;
typedef union _MEM_TIDBF {
/* underlying unsigned short */
unsigned short us;
/* struct mapped bitfield */
struct _MEM_TIDBF_Bfl bf;
} MEM_TIDBF;
Fields:
LAT unit that sent the telemetry.
Transaction identifier from the telecommand that requested the telemetry. |