GLAST/LAT > DAQ and FSW > FSW > Index by Name within Package
FILESTID - Telemetry Bitfield
|
View Options: (help) Definition:
Description: Layout: (hide detail; help) FILESTID (bf) | FILEDEV dev (0-2) | FILEDIR dir (3-9) | FILENUM file (10-31)
typedef struct _LFS_FILESTID_Bfl {
#if ENDIANNESS_IS_BIG
/* File ID Device Number */
unsigned int dev:3;
/* File ID Directory Number */
unsigned int dir:7;
/* File ID File Number */
unsigned int file:22;
#elif ENDIANNESS_IS_LITTLE
/* File ID File Number */
unsigned int file:22;
/* File ID Directory Number */
unsigned int dir:7;
/* File ID Device Number */
unsigned int dev:3;
#else
#error _FILE_ ENDIANNESS NOT DEFINED
#endif
} __attribute__((packed)) LFS_FILESTID_Bfl;
typedef union _LFS_FILESTID {
/* underlying unsigned int */
unsigned int ui;
/* struct mapped bitfield */
struct _LFS_FILESTID_Bfl bf;
} LFS_FILESTID;
Fields:
Used by:
|