Changeset 11159


Ignore:
Timestamp:
06/24/11 12:23:36 (13 years ago)
Author:
tbretz
Message:
Updated display of version number; display ethernet rate in kB/s
File:
1 edited

Legend:

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

    r11152 r11159  
    10871087    void handleFadFwVersion(const DimData &d)
    10881088    {
    1089         if (!CheckSize(d, 40*sizeof(float)))
     1089        if (!CheckSize(d, 43*sizeof(float)))
    10901090            return;
    10911091
    10921092        const float *ptr = d.ptr<float>();
    1093         fFadFwVersion->setValue(GetFirst(ptr));
     1093        fFadFwVersion->setValue(ptr[1]);
    10941094
    10951095        ostringstream tip;
     
    11031103            tip << "<tr><th>" << c << "</th>";
    11041104            for (int b=0; b<10; b++)
    1105                 tip << "<td>" << ptr[c*10+b] << "</td>";
     1105                tip << "<td>" << ptr[c*10+b+3] << "</td>";
    11061106            tip << "</tr>";
    11071107        }
     
    11091109
    11101110        fFadFwVersion->setToolTip(tip.str().c_str());
     1111
     1112        SetLedColor(fFadLEDFwVersion, d.qos?kLedGreen:kLedOrange, d.time);
    11111113    }
    11121114
     
    11261128        fFadEvtDel->setValue(stat[3]);
    11271129        fFadEvtTot->setValue(stat[4]);
    1128         fFadEvtRead->setValue(stat[6]);
     1130        fFadEvtRead->setValue(stat[6]/1024.);
    11291131        fFadEvtConn->setValue(stat[7]);
    11301132    }
Note: See TracChangeset for help on using the changeset viewer.