- in ProcessCut aggiunta Q07 per forzare uso fresa (si passa a LapJoint)

- in LapJoint gestita feature in arrivo da Cut e piccole correzioni
This commit is contained in:
luca.mazzoleni
2024-10-01 15:57:17 +02:00
parent e49b505fbe
commit 3764c58394
2 changed files with 30 additions and 16 deletions
+8 -1
View File
@@ -46,7 +46,14 @@ local ML = require( 'MachiningLib')
---------------------------------------------------------------------
-- Riconoscimento della feature
function ProcessCut.Identify( Proc)
return ( ( Proc.Grp == 1 or Proc.Grp == 2) and Proc.Prc == 10)
-- se richiesto si forza fresatura
Proc.bForceMill = ( EgtGetInfo( Proc.Id, 'Q07', 'd') or 0) == 1
if Proc.bForceMill then
return false
else
return ( ( Proc.Grp == 1 or Proc.Grp == 2) and Proc.Prc == 10)
end
end
---------------------------------------------------------------------