Skip to content

Commit f4e3b1d

Browse files
committed
Merge branch '2.9'
2 parents 667249d + 019db91 commit f4e3b1d

File tree

5 files changed

+19
-3
lines changed

5 files changed

+19
-3
lines changed

lib/python/qtvcp/widgets/probe_subprog.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,12 +242,18 @@ def collect_status(self):
242242

243243
# need to be in the right mode - entries are in machine units
244244
def prechecks(self):
245+
# This is a work around. If a user sets the spindle running in MDI
246+
# but turn it off with a manual button, then when M72 will turn the
247+
# spindle back on! So we explicitly set M5 here.
248+
ACTION.CALL_MDI('M5')
249+
# record current G,S,M codes
245250
ACTION.CALL_MDI('M70')
251+
252+
# set proper mode based on what machine is based
246253
if INFO.MACHINE_IS_METRIC and STATUS.is_metric_mode():
247254
return None
248255
if not INFO.MACHINE_IS_METRIC and not STATUS.is_metric_mode():
249256
return None
250-
# record motion modes
251257
if INFO.MACHINE_IS_METRIC:
252258
ACTION.CALL_MDI('g21')
253259
else:

share/qtvcp/screens/qtdragon/qtdragon_handler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
WARNING = 1
5757
CRITICAL = 2
5858

59-
VERSION ='1.0'
59+
VERSION ='1.1'
6060

6161
class HandlerClass:
6262
def __init__(self, halcomp, widgets, paths):
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Qtdragon
2+
3+
version 1.0 released in linuxcnc 2.9.1
4+
5+
version 1.1 fix probe routines: spindle starts on error or abort

share/qtvcp/screens/qtdragon_hd/qtdragon_hd_handler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
WARNING = 1
6060
CRITICAL = 2
6161

62-
VERSION ='1.0'
62+
VERSION ='1.1'
6363

6464
class HandlerClass:
6565
def __init__(self, halcomp, widgets, paths):
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Qtdragon_hd
2+
3+
version 1.0 released in linuxcnc 2.9.1
4+
5+
version 1.1 fix probe routines: spindle starts on error or abort

0 commit comments

Comments
 (0)