You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add a facultative max_wait_seconds argument to the wait() function to set a max wait time, after which the capture would be stopped
Add a method to query for the capture status (is it still running or has it completed)
The context
I want to use the logic2-automation in a regression testing rack running a github self-hosted runner
In case of firmware bug, the trigger for which the capture is waiting may never occur.
My Current approach
My current approach is to
Setup the capture as timed capture
Trigger the event I am capturing for
Sleep for the max wait time of the event
Call the wait method to forcefully stop the capture.
Parse the csv to see if the trigger occurred
Clean-up the analog capture to remove entry before the trigger
Although my current approach is operational, a max wait time would
Accelerate the result acquisition when the trigger occurred before timeout
Remove the need for extra processing to get the analog reading starting at trigger
Thanks you and nice job !
Jonathan
The text was updated successfully, but these errors were encountered:
The requests
max_wait_seconds
argument to thewait()
function to set a max wait time, after which the capture would be stoppedThe context
I want to use the logic2-automation in a regression testing rack running a github self-hosted runner
In case of firmware bug, the trigger for which the capture is waiting may never occur.
My Current approach
My current approach is to
wait
method to forcefully stop the capture.Although my current approach is operational, a max wait time would
Thanks you and nice job !
Jonathan
The text was updated successfully, but these errors were encountered: