EgtMachKernel :

- modifiche per gestione teste multiple in foratura con modalità fissa, singola o multipla.
This commit is contained in:
Dario Sassi
2024-01-16 09:35:21 +01:00
parent 5a5b48326f
commit 204d63b7c9
8 changed files with 45 additions and 13 deletions
+12
View File
@@ -98,6 +98,18 @@ Machine::GetHeadSolCh( const string& sHead) const
return pHead->GetSolCh() ;
}
//----------------------------------------------------------------------------
int
Machine::GetHeadSelectType( const string& sHead) const
{
// recupero testa
Head* pHead = GetHead( GetGroup( sHead)) ;
if ( pHead == nullptr)
return MCH_SCC_NONE ;
// recupero tipo di selezione delle uscite della testa
return pHead->GetSelectType() ;
}
//----------------------------------------------------------------------------
bool
Machine::LoadTool( const string& sHead, int nExit, const string& sTool)