GLAST/LAT > DAQ and FSW > FSW > Index by Name within Package

CCONFIGBF normal_config - Telecommand Bitfield


"Configuration ID Bitfield" (APP/LIM)

View Options: (help)

Ancestry:

    0x000 pkt TOO_Start
    0x010 bf CCONFIGBF normal_config

Definition:

    Alignment:4-byte boundary
    APID:1635/0x663:0
    Attribute(s):
    C type:unsigned char
    Length: 8 bits (1 byte)
    Offset:0x010

Description:

    Bitfield containing an observation identifier.

Layout: (hide detail; help)

    Start Stop Size Item Type and Name

    typedef struct _LIM_CCONFIGBF_Bfl {
    
        #if ENDIANNESS_IS_BIG
    
        /* 3-Bit Padding */
        unsigned char        pad:3;
    
        /* Observation Configuration ID */
        unsigned char        id:5;
    
        #elif ENDIANNESS_IS_LITTLE
    
        /* Observation Configuration ID */
        unsigned char        id:5;
    
        /* 3-Bit Padding */
        unsigned char        pad:3;
    
        #else
    
        #error _FILE_ ENDIANNESS NOT DEFINED
    
        #endif
    
    } __attribute__((packed)) LIM_CCONFIGBF_Bfl;
    
    typedef union _LIM_CCONFIGBF {
    
        /* underlying unsigned char */
        unsigned char                   uc;
    
        /* struct mapped bitfield */
        struct _LIM_CCONFIGBF_Bfl       bf;
    
    } LIM_CCONFIGBF;