EgtMachKernel :

- aggiunta gestione stato simulazione utente per script di movimento per permettere stop e pausa.
This commit is contained in:
Dario Sassi
2018-03-02 08:08:16 +00:00
parent aa1e86fa89
commit 19d3915bbb
4 changed files with 105 additions and 29 deletions
+11
View File
@@ -105,6 +105,17 @@ MachMgr::SimSetStep( double dStep)
return m_pSimul->SetStep( dStep) ;
}
//----------------------------------------------------------------------------
bool
MachMgr::SimSetUiStatus( int nUiStatus)
{
// verifico simulatore
if ( m_pSimul == nullptr)
return false ;
// imposto lo stato utente del simulatore
return m_pSimul->SetUiStatus( nUiStatus) ;
}
//----------------------------------------------------------------------------
bool
MachMgr::SimGoHome( void)