Method vglitch_reset() not documented

Hi,

I found this piece of code inside the tutorial fault101/SOLN_Fault 2_1 - Introduction to Voltage Glitching.ipynb:

scope.io.vglitch_reset()

It is just after ret = scope.capture()

The only information in the Scope API documentation is vglitch_reset(*delay=0.005* ), and there is no comment on this method inside the tutorials.

Thank you!

I will add it. The code is self-explanatory; BTW in Jupyter you can get the code for a method like this:

scope.io.vglitch_reset??

As you can see it simply sets scope.io.glitch_hp/lp to False, waits delay seconds, then returns scope.io.glitch_hp/lp to their original settings.

Thank you, didn’t know the ?? trick