Include :

- aggiunta costante per stato di fine step in simulazione.
This commit is contained in:
Dario Sassi
2015-12-07 10:46:10 +00:00
parent 1f9cf63048
commit 4322f2a25e
+5 -4
View File
@@ -26,8 +26,9 @@ enum SolChoiseCriterion { MCH_SCC_NONE = 0,
//------------------------ Stato del movimento di simulazione -----------------
enum SimuStat { MCH_SIM_OK = 0,
MCH_SIM_END = 1,
MCH_SIM_OUTSTROKE = 2,
MCH_SIM_DIR_ERR = 3,
MCH_SIM_ERR = 4} ;
MCH_SIM_END_STEP = 1,
MCH_SIM_END = 2,
MCH_SIM_OUTSTROKE = 3,
MCH_SIM_DIR_ERR = 4,
MCH_SIM_ERR = 5} ;