EgtMachKernel 1.6x10 :

- aggiunta GetAllHeadsNames
- aggiunto nome asse a SimGetAxisInfoPos.
This commit is contained in:
Dario Sassi
2017-01-30 08:06:33 +00:00
parent 0bafc660b5
commit 9d1b2d8d60
8 changed files with 45 additions and 11 deletions
+2 -2
View File
@@ -52,13 +52,13 @@ MachMgr::SimMove( int& nStatus)
//----------------------------------------------------------------------------
bool
MachMgr::SimGetAxisInfoPos( int nI, string& sToken, bool& bLinear, double& dVal)
MachMgr::SimGetAxisInfoPos( int nI, string& sName, string& sToken, bool& bLinear, double& dVal)
{
// verifico simulatore
if ( m_pSimul == nullptr)
return false ;
// recupero dati
return m_pSimul->GetAxisInfoPos( nI, sToken, bLinear, dVal) ;
return m_pSimul->GetAxisInfoPos( nI, sName, sToken, bLinear, dVal) ;
}
//----------------------------------------------------------------------------