diff --git a/EgtExchange.rc b/EgtExchange.rc index 9bf0ad6..a14c747 100644 Binary files a/EgtExchange.rc and b/EgtExchange.rc differ diff --git a/ImportCnc.cpp b/ImportCnc.cpp index 1d120d0..61f4a72 100644 --- a/ImportCnc.cpp +++ b/ImportCnc.cpp @@ -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 ; }