Changeset 11176 for trunk/FACT++/gui


Ignore:
Timestamp:
06/24/11 14:36:41 (13 years ago)
Author:
tbretz
Message:
Added output of frequency calculated from the clock conditioner values.
Location:
trunk/FACT++/gui
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/gui/FactGui.h

    r11175 r11176  
    15131513        fClockCondR14->setValue(sdata.fClockConditioner[6]);
    15141514        fClockCondR15->setValue(sdata.fClockConditioner[7]);
     1515
     1516        const uint32_t R0  = sdata.fClockConditioner[0];
     1517        const uint32_t R14 = sdata.fClockConditioner[6];
     1518        const uint32_t R15 = sdata.fClockConditioner[7];
     1519
     1520        const uint32_t Ndiv = (R15&0x1ffff00)<<2;
     1521        const uint32_t Rdiv = (R14&0x007ff00)>>8;
     1522        const uint32_t Cdiv = (R0 &0x000ff00)>>8;
     1523
     1524        double freq = 40.*Ndiv/(Rdiv*Cdiv);
     1525
     1526        fClockCondFreqRes->setValue(freq);
    15151527
    15161528        //fClockCondFreq->setEditText("");
  • trunk/FACT++/gui/design.ui

    r11174 r11176  
    5252      </property>
    5353      <property name="currentIndex">
    54        <number>3</number>
     54       <number>0</number>
    5555      </property>
    5656      <property name="documentMode">
     
    16621662                </spacer>
    16631663               </item>
    1664                <item row="3" column="2" colspan="2">
     1664               <item row="3" column="1" colspan="2">
    16651665                <widget class="QComboBox" name="fClockCondFreq">
    16661666                 <property name="frame">
     
    16691669                </widget>
    16701670               </item>
    1671                <item row="2" column="2" colspan="3">
     1671               <item row="2" column="1" colspan="2">
    16721672                <widget class="QLabel" name="label_133">
    16731673                 <property name="text">
     
    16881688                 </property>
    16891689                </spacer>
     1690               </item>
     1691               <item row="3" column="4">
     1692                <widget class="QDoubleSpinBox" name="fClockCondFreqRes">
     1693                 <property name="alignment">
     1694                  <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
     1695                 </property>
     1696                 <property name="readOnly">
     1697                  <bool>true</bool>
     1698                 </property>
     1699                 <property name="buttonSymbols">
     1700                  <enum>QAbstractSpinBox::NoButtons</enum>
     1701                 </property>
     1702                 <property name="suffix">
     1703                  <string> MHz</string>
     1704                 </property>
     1705                 <property name="maximum">
     1706                  <double>10000.000000000000000</double>
     1707                 </property>
     1708                </widget>
     1709               </item>
     1710               <item row="2" column="4">
     1711                <widget class="QLabel" name="label_143">
     1712                 <property name="text">
     1713                  <string>Calculated rate</string>
     1714                 </property>
     1715                </widget>
    16901716               </item>
    16911717              </layout>
Note: See TracChangeset for help on using the changeset viewer.