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

EBMtimeout EBMtimeout - Telemetry Bitfield


"Contents of the EBM timeout register" (APP/LHK)

View Options: (help)

Ancestry:

    0x000 pkt PigStatus
    0x03C bf EBMtimeout EBMtimeout

Definition:

    Alignment:4-byte boundary
    APID:596/0x254
    Attribute(s):
    C type:unsigned int
    Length: 32 bits (4 bytes)
    Offset:0x03C

Description:

    Contents of the EBM timeout register

Layout: (hide detail; help)

    Start Stop Size Item Type and Name
    0 0 1 status status
    1 14 14 Padui14 spare0
    15 31 17 timeout timeout

    typedef struct _LHK_EBMtimeout_Bfl {
    
        #if ENDIANNESS_IS_BIG
    
        /* Readout status (ADC or switch) */
        unsigned int         status:1;
    
        /* Explicit 14 bit pad in unsigned int */
        unsigned int         spare0:14;
    
        /* EBM timeout (17 bits) */
        unsigned int         timeout:17;
    
        #elif ENDIANNESS_IS_LITTLE
    
        /* EBM timeout (17 bits) */
        unsigned int         timeout:17;
    
        /* Explicit 14 bit pad in unsigned int */
        unsigned int         spare0:14;
    
        /* Readout status (ADC or switch) */
        unsigned int         status:1;
    
        #else
    
        #error _FILE_ ENDIANNESS NOT DEFINED
    
        #endif
    
    } __attribute__((packed)) LHK_EBMtimeout_Bfl;
    
    typedef union _LHK_EBMtimeout {
    
        /* underlying unsigned int */
        unsigned int                    ui;
    
        /* struct mapped bitfield */
        struct _LHK_EBMtimeout_Bfl      bf;
    
    } LHK_EBMtimeout;
    

Fields:

      Attribute(s):  

      Brief:  "Explicit 14 bit pad in unsigned int"

      Instance(s):  spare0

      Explicit 14 bit pad in unsigned int

      Brief:  "Readout status (ADC or switch)"

      Instance(s):  status

      Readout status. If set, read out failed for the designated ADC/switch.

      Attribute(s):  

      Brief:  "EBM timeout (17 bits)"

      Instance(s):  timeout

      EBM timeout (17 bits)