File tree 2 files changed +6
-3
lines changed
2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -83,8 +83,11 @@ def func_probe_all(self, ports):
83
83
self .send_result (False )
84
84
85
85
def probe (self , device ):
86
- # start a probe thread with timeout
87
- board = pyboard .Pyboard (device )
86
+ try :
87
+ # start a probe thread with timeout
88
+ board = pyboard .Pyboard (device )
89
+ except :
90
+ return None
88
91
89
92
# Set a write timeout. This is needed during scan if
90
93
# we try to probe a device which would not accept any data.
Original file line number Diff line number Diff line change @@ -171,7 +171,7 @@ def splash(self, parent):
171
171
title .setAlignment (Qt .AlignCenter )
172
172
vbox .addWidget (title )
173
173
174
- version = QLabel ("V1.1.2 " , vbox_w )
174
+ version = QLabel ("V1.1.2a " , vbox_w )
175
175
version .setAlignment (Qt .AlignCenter )
176
176
vbox .addWidget (version )
177
177
You can’t perform that action at this time.
0 commit comments