aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Integration/Operators/IMachineOperator.cs
diff options
context:
space:
mode:
authorRoy <roy.mail.net@gmail.com>2018-02-10 02:13:37 +0200
committerRoy <roy.mail.net@gmail.com>2018-02-10 02:13:37 +0200
commit07e686eb253ffd29f36dbe530b3a17633e02b353 (patch)
treed9663f1c92a400349dffc743adb0114ee1a7f618 /Software/Visual_Studio/Tango.Integration/Operators/IMachineOperator.cs
parentc8c9606e545f49aae3d9f0524775436adbdf27e9 (diff)
downloadTango-07e686eb253ffd29f36dbe530b3a17633e02b353.tar.gz
Tango-07e686eb253ffd29f36dbe530b3a17633e02b353.zip
Added support for motor controllers.
Diffstat (limited to 'Software/Visual_Studio/Tango.Integration/Operators/IMachineOperator.cs')
-rw-r--r--Software/Visual_Studio/Tango.Integration/Operators/IMachineOperator.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Integration/Operators/IMachineOperator.cs b/Software/Visual_Studio/Tango.Integration/Operators/IMachineOperator.cs
index bba5ff094..6b64575de 100644
--- a/Software/Visual_Studio/Tango.Integration/Operators/IMachineOperator.cs
+++ b/Software/Visual_Studio/Tango.Integration/Operators/IMachineOperator.cs
@@ -9,6 +9,7 @@ using Tango.PMR.Printing;
using Tango.Transport;
using System.Reactive;
using Tango.Integration.Printing;
+using Tango.PMR;
namespace Tango.Integration.Operators
{
@@ -35,5 +36,19 @@ namespace Tango.Integration.Operators
/// <param name="processParameters">Process parameters table</param>
/// <returns></returns>
JobHandler Print(Job job, ProcessParametersTable processParameters);
+
+ /// <summary>
+ /// Starts jogging the specified motor.
+ /// </summary>
+ /// <param name="request">The request.</param>
+ /// <returns></returns>
+ Task<TangoMessage<MotorJoggingResponse>> StartMotorJogging(MotorJoggingRequest request);
+
+ /// <summary>
+ /// Stops jogging the specified motor.
+ /// </summary>
+ /// <param name="request">The request.</param>
+ /// <returns></returns>
+ Task<TangoMessage<MotorAbortJoggingResponse>> StopMotorJogging(MotorAbortJoggingRequest request);
}
}