diff options
| author | Roy <roy.mail.net@gmail.com> | 2018-02-11 14:55:39 +0200 |
|---|---|---|
| committer | Roy <roy.mail.net@gmail.com> | 2018-02-11 14:55:39 +0200 |
| commit | 1dd0d4988fb99109765b956adc6a371f5cb036e0 (patch) | |
| tree | 52ccf7950af6039821b1be30005c23bc75083a78 /Software/Visual_Studio/Tango.Integration/Operators/MachineOperator.cs | |
| parent | f736578b2c843d0cb23948e088379c3a3c3b12e7 (diff) | |
| download | Tango-1dd0d4988fb99109765b956adc6a371f5cb036e0.tar.gz Tango-1dd0d4988fb99109765b956adc6a371f5cb036e0.zip | |
More work on technician view...
Added auto loading of last project.
Added IShutdownListener interface.
Added TechName to Tech Items.
Fixed issue with tech name of IO port.
Diffstat (limited to 'Software/Visual_Studio/Tango.Integration/Operators/MachineOperator.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.Integration/Operators/MachineOperator.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Software/Visual_Studio/Tango.Integration/Operators/MachineOperator.cs b/Software/Visual_Studio/Tango.Integration/Operators/MachineOperator.cs index 426b3b865..4ac0c9e35 100644 --- a/Software/Visual_Studio/Tango.Integration/Operators/MachineOperator.cs +++ b/Software/Visual_Studio/Tango.Integration/Operators/MachineOperator.cs @@ -269,9 +269,9 @@ namespace Tango.Integration.Operators /// </summary> /// <param name="request">The request.</param> /// <returns></returns> - public Task<TangoMessage<SetGPIOStateRequest>> SetGPIOState(SetGPIOStateRequest request) + public Task<TangoMessage<SetGPIOStateResponse>> SetGPIOState(SetGPIOStateRequest request) { - return SendRequest<SetGPIOStateRequest, SetGPIOStateRequest>(request); + return SendRequest<SetGPIOStateRequest, SetGPIOStateResponse>(request); } #endregion |
