From a801f688bde7b6c75f47ca4ebd2991271c521d34 Mon Sep 17 00:00:00 2001 From: Roy Date: Sun, 11 Feb 2018 21:11:52 +0200 Subject: Implemented Thread Motion Tech Item. --- .../Tango.Integration/Operators/MachineOperator.cs | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'Software/Visual_Studio/Tango.Integration/Operators/MachineOperator.cs') diff --git a/Software/Visual_Studio/Tango.Integration/Operators/MachineOperator.cs b/Software/Visual_Studio/Tango.Integration/Operators/MachineOperator.cs index 4ac0c9e35..b89a8c7ca 100644 --- a/Software/Visual_Studio/Tango.Integration/Operators/MachineOperator.cs +++ b/Software/Visual_Studio/Tango.Integration/Operators/MachineOperator.cs @@ -274,6 +274,27 @@ namespace Tango.Integration.Operators return SendRequest(request); } + /// + /// Starts jogging the thread motion system. + /// + /// The request. + /// + public Task> StartThreadJogging(ThreadJoggingRequest request) + { + return SendRequest(request); + } + + /// + /// Stops jogging the thread motion system. + /// + /// The request. + /// + public Task> StopThreadJogging(ThreadAbortJoggingRequest request) + { + return SendRequest(request); + } + + #endregion } } -- cgit v1.3.1