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

ConfigEBM ebm - Telemetry Bitfield


"Configuration bits read from the EBM" (APP/LHK)

View Options: (help)

Ancestry:

    0x000 pkt MiscSlow
    0x012 bf ConfigEBM ebm

Definition:

    Alignment:2-byte boundary
    APID:595/0x253
    Attribute(s):
    C type:char
    Length: 8 bits (1 byte)
    Offset:0x012

Description:

    Configuration bits read from the EBM

Layout: (hide detail; help)

    Start Stop Size Item Type and Name
    0 6 7 Paduc7 spare
    7 7 1 select ssr

    typedef struct _LHK_ConfigEBM_Bfl {
    
        #if ENDIANNESS_IS_BIG
    
        /* Explicit 7 bit pad in unsigned char */
        char                 spare:7;
    
        /* Primary/redundant selector */
        char                 ssr:1;
    
        #elif ENDIANNESS_IS_LITTLE
    
        /* Primary/redundant selector */
        char                 ssr:1;
    
        /* Explicit 7 bit pad in unsigned char */
        char                 spare:7;
    
        #else
    
        #error _FILE_ ENDIANNESS NOT DEFINED
    
        #endif
    
    } __attribute__((packed)) LHK_ConfigEBM_Bfl;
    
    typedef union _LHK_ConfigEBM {
    
        /* underlying char */
        char                            ui;
    
        /* struct mapped bitfield */
        struct _LHK_ConfigEBM_Bfl       bf;
    
    } LHK_ConfigEBM;
    

Fields:

      Attribute(s):  

      Brief:  "Explicit 7 bit pad in unsigned char"

      Instance(s):  spare

      Explicit 7 bit pad in unsigned char

      Attribute(s):  

      Brief:  "Primary/redundant selector"

      Instance(s):  ssr

      Primary/redundant selector