fix decodifica comandi assi

This commit is contained in:
Samuele E. Locatelli
2021-03-09 11:18:40 +01:00
parent 0440202342
commit bc817fcbf6
4 changed files with 8 additions and 8 deletions
+7 -7
View File
@@ -582,31 +582,31 @@ namespace Thermo.Active.NC
break;
case AxisCommand.MoveAbsolute:
doWrite = true;
biteCommand = 0;
biteCommand = 1;
break;
case AxisCommand.JogIncPlus:
doWrite = true;
biteCommand = 1;
biteCommand = 2;
break;
case AxisCommand.JogIncMinus:
doWrite = true;
biteCommand = 2;
biteCommand = 3;
break;
case AxisCommand.Align:
doWrite = true;
biteCommand = 3;
biteCommand = 4;
break;
case AxisCommand.Probe:
doWrite = true;
biteCommand = 4;
biteCommand = 5;
break;
case AxisCommand.SetSlavePosition:
doWrite = true;
biteCommand = 5;
biteCommand = 6;
break;
case AxisCommand.Reset:
doWrite = true;
biteCommand = 6;
biteCommand = 7;
break;
case AxisCommand.Num07:
break;
Binary file not shown.

Before

Width:  |  Height:  |  Size: 36 KiB

After

Width:  |  Height:  |  Size: 23 KiB

File diff suppressed because one or more lines are too long
Binary file not shown.

Before

Width:  |  Height:  |  Size: 682 KiB

After

Width:  |  Height:  |  Size: 684 KiB