EgtMachKernel 1.6w1 :

- in simulazione si restituiscono info anche su assi ausiliari e info su tipo asse (lineare o rotante)
- in generazione assegnata max speed a EMT.SMAX su evento OnToolData.
This commit is contained in:
Dario Sassi
2016-11-01 19:05:50 +00:00
parent eb313337e4
commit 9819ad1e9f
9 changed files with 88 additions and 23 deletions
+3 -3
View File
@@ -52,13 +52,13 @@ MachMgr::SimMove( int& nStatus)
//----------------------------------------------------------------------------
bool
MachMgr::SimGetAxisInfoPos( int nI, string& sToken, double& dVal)
MachMgr::SimGetAxisInfoPos( int nI, string& sToken, bool& bLinear, double& dVal)
{
// verifico simulatore
if ( m_pSimul == nullptr)
return false ;
// recupero quote
return m_pSimul->GetAxisInfoPos( nI, sToken, dVal) ;
// recupero dati
return m_pSimul->GetAxisInfoPos( nI, sToken, bLinear, dVal) ;
}
//----------------------------------------------------------------------------