Changeset 11106


Ignore:
Timestamp:
06/22/11 13:52:15 (13 years ago)
Author:
tbretz
Message:
Fixed clock conditioner values in DimStaticData; they have to be 32 bits.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/HeadersFTM.h

    r10961 r11106  
    297297        uint32_t fDeadTime;
    298298        //44
    299         uint16_t fClockConditioner[8];
     299        uint32_t fClockConditioner[8];
    300300        //60
    301301        uint16_t fEnable[90];  // 160*9bit = 180byte
     
    339339            fDeadTime(uint32_t(d.fDeadTime)*4+8)
    340340        {
    341             memcpy(fClockConditioner, d.fClockConditioner, sizeof(uint16_t)*8);
     341            memcpy(fClockConditioner, d.fClockConditioner, sizeof(uint32_t)*8);
    342342
    343343            uint16_t src[160];
Note: See TracChangeset for help on using the changeset viewer.