diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-02-11 16:09:12 +0200 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-02-11 16:09:12 +0200 |
| commit | 29ac4ab17bdc882f0f85666cb82320ca8075ba95 (patch) | |
| tree | 2879ff2c8c68bd6685a59ca25e91beb4c6f76e8f /Software/Visual_Studio/Web | |
| parent | 08686cebb5b2e517cd356bc33d79205d8fcc8d66 (diff) | |
| download | Tango-29ac4ab17bdc882f0f85666cb82320ca8075ba95.tar.gz Tango-29ac4ab17bdc882f0f85666cb82320ca8075ba95.zip | |
Implemented TechBoard "New Project" properly.
Changed MS => PPC default intent to Diagnostics.
Implemented producer/consumer queue for NavigationControl.
Fixed issue with empty points pushed to RealTimerGraphX.
Implemented ExternalBridgeService pinging to keep connection.
Fixed issue with Firmware upgrade DFU upload failure, now fails all transport components.
Diffstat (limited to 'Software/Visual_Studio/Web')
| -rw-r--r-- | Software/Visual_Studio/Web/Tango.MachineService/Hubs/ExternalBridgeHub.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Web/Tango.MachineService/Hubs/ExternalBridgeHub.cs b/Software/Visual_Studio/Web/Tango.MachineService/Hubs/ExternalBridgeHub.cs index a09cd7954..4dd04d33e 100644 --- a/Software/Visual_Studio/Web/Tango.MachineService/Hubs/ExternalBridgeHub.cs +++ b/Software/Visual_Studio/Web/Tango.MachineService/Hubs/ExternalBridgeHub.cs @@ -56,6 +56,11 @@ namespace Tango.MachineService.Hubs _sessions.RemoveAll(x => x.ExternalBridge.ConnectionID == Context.ConnectionId); } + public String Ping() + { + return "Ping"; + } + public List<MachineInfo> GetAvailableMachines() { return _externalBridges.Select(x => x.MachineInfo).ToList(); |
