Compare commits
1 Commits
3.1e1_NL10
...
3.1e1_NL11
| Author | SHA1 | Date | |
|---|---|---|---|
| ce76fe23d2 |
@@ -867,7 +867,7 @@ function OnRapid()
|
||||
-- controllo se ci sono spostamenti dei carrelli programmati
|
||||
local bChangeCarriageClamping = CheckChangeCarriageClamping()
|
||||
-- se non ci sono riposizionamenti dei carrelli, se stesso utensile, e c'è ancora piano attivo dalla lavorazione precedente, allora questo è un climb
|
||||
if not bChangeCarriageClamping and EMT.TOOL == EMT.PREVTOOL and EMT.PLANEACTIVE and ( abs( EMT.R1prec - EMT.R1) < 0.1 and abs( EMT.R2prec - EMT.R2) < 0.1) then
|
||||
if not bChangeCarriageClamping and EMT.TOOL == EMT.PREVTOOL and EMT.PLANEACTIVE and ( abs( EMT.R1prec - EMT.R1) < GEO.EPS_SMALL and abs( EMT.R2prec - EMT.R2) < GEO.EPS_SMALL) then
|
||||
-- dichiaro finita lavorazione precedente
|
||||
local sOut = 'G157 EA1'
|
||||
EmtOutput( sOut)
|
||||
@@ -905,7 +905,7 @@ function OnRapid()
|
||||
end
|
||||
|
||||
-- si disattiva piano a meno che non sia lavorazione con stesso utensile e stesso orientamento assi
|
||||
if EMT.PLANEACTIVE then
|
||||
if EMT.PLANEACTIVE then
|
||||
EmitResetMachining( false)
|
||||
end
|
||||
|
||||
|
||||
+1
-1
@@ -32,7 +32,7 @@
|
||||
require( 'EmtGenerator')
|
||||
EgtEnableDebug( false)
|
||||
|
||||
PP_VER = '3.1e1_NL10'
|
||||
PP_VER = '3.1e1_NL11'
|
||||
PP_NVER = '3.1.3.2'
|
||||
MIN_MACH_VER = '2.5k1'
|
||||
MACH_NAME = EgtGetCurrMachineName()
|
||||
|
||||
Reference in New Issue
Block a user