Replies: 1 comment 3 replies
-
A simple solution on the command line: while true ; do OpenHantek && break ; done Or as a shell script where you can provide options: #!/bin/sh
# execute OpenHantek in a loop and restart
# if it was terminated by an error
while true; do
OpenHantek $* && break
done |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi!
I have the 6022BL from many years ago and used the abandoned opensource version and now I find this version and it's AMAZING!!
Very good job! Thank you!
To the topic...
Seems my USB cable was dirty (or electronics needed a bit of warm) or loose (or whatever) but 6022 was disconnecting sometimes.
Of course OpenHantek freezes display and just restarting it works again.
So I wonder if OpenHantek could be able to detect disconnection and be able to reconnect.
Why reconnect if just restarting works?... well... anything that is able to autorecover ends helping somebody!
(I.E: not the way, but could helped in: Scope disconnects when trying to probe (6022BE) #166 )
Thank you!
Beta Was this translation helpful? Give feedback.
All reactions