EgtExchange 2.5i6 :

- in import BTL per NUM aggiunto salto delle custom macro (G > 99).
This commit is contained in:
Dario Sassi
2023-09-27 21:09:49 +02:00
parent 39f9fd86e7
commit 4c84f4adff
2 changed files with 6 additions and 0 deletions
+6
View File
@@ -499,6 +499,12 @@ ImportCnc::ParseG( const string& sToken)
m_bAbsCoord = false ;
break ;
}
// per saltare le macro custom su NUM (tipo G101... di S3)
if ( m_nCNC == CNC_NUM && nVal > 99) {
m_nCommand = NO_CMD ;
m_nMoveType = RAPID ;
m_bZeroMach = true ;
}
return true ;
}