Changeset 12254


Ignore:
Timestamp:
10/23/11 21:40:36 (13 years ago)
Author:
tbretz
Message:
Added the possibility to change the update interval online.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/biasctrl.cc

    r12249 r12254  
    13131313    {
    13141314        fUpdateTime = val;
     1315
     1316        if (!IsConnected() || fIsInitializing)
     1317            return;
     1318
     1319        fUpdateTimer.cancel();
     1320
     1321        if (fUpdateTime>0)
     1322            ScheduleUpdate(fUpdateTime);
    13151323    }
    13161324
     
    16791687    // --------------------------------------------------------------------
    16801688
     1689    int SetUpdateInterval(const EventImp &evt)
     1690    {
     1691        if (!CheckEventSize(evt.GetSize(), "SetUpdateInterval", 2))
     1692            return false;
     1693
     1694        fBias.SetUpdateInterval(evt.Get<int16_t>()<0 ? 0 : evt.Get<int16_t>());
     1695
     1696        return T::GetCurrentState();
     1697    }
     1698
    16811699    int Disconnect()
    16821700    {
     
    18051823            ("(Re)connect USB connection to Bias power supply, a new address can be given"
    18061824             "|tty[string]:new USB address");
     1825
     1826
     1827        T::AddEvent("SET_UPDATE_INTERVAL", "S:1")
     1828            (bind(&StateMachineBias::SetUpdateInterval, this, placeholders::_1))
     1829            ("Set the updat einterval how often the currents are requested"
     1830             "|interval[ms]:Update interval in milliseconds");
    18071831
    18081832
Note: See TracChangeset for help on using the changeset viewer.