friture
friture copied to clipboard
A bug in the triggering of scope dock
This line cause the scope dock stop triggering when floatdata[1,:].max() becomes much larger than floatdata[0, :].max(): https://github.com/tlecomte/friture/blob/e12cd9a76810a0dd1adbc424218ff5badec877b4/friture/scope.py#L117
Change it to triggerdata = floatdata[0, :].max() solves the problem.