Skip to content

Commit

Permalink
Merge pull request acq4#34 from davoudian/mies-refresh-rate
Browse files Browse the repository at this point in the history
Increase refresh interval in MIES interface
  • Loading branch information
campagnola committed Mar 24, 2017
2 parents 29eebc3 + a3a3d58 commit b54a597
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions acq4/util/mies.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,10 @@ def processUpdate(self, future):
self.currentData = data
self._updateTPTimes(data)
self.sigDataReady.emit(data)
nextCallWait = 0
nextCallWait = 2000
except (IgorCallError, TypeError):
# Test pulse isn't running, let's wait a little longer
nextCallWait = 200
nextCallWait = 2000
self._TPTimer.start(nextCallWait)

def _updateTPTimes(self, TPArray):
Expand Down

0 comments on commit b54a597

Please sign in to comment.