From 312e8ccad554d6d0e7d21444e069731e770db978 Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Sun, 27 Oct 2019 12:09:07 +0200 Subject: Added DEVICE_ID, DEVICE_NAME & IS_DEVICE_REGISTERED fields to db. Prevent multiple machine setup from different devices. Moved notification to inner layout on PPC. Improved PPC notification bar. Added more machine status support from embedded. FIxed issue with external bridge and emergency pressed. --- .../PPC/Tango.PPC.Common/MachineSetup/MachineSetupManager.cs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup') diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/MachineSetupManager.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/MachineSetupManager.cs index 94091b284..004c37096 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/MachineSetupManager.cs +++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/MachineSetupManager.cs @@ -132,6 +132,9 @@ namespace Tango.PPC.Common.MachineSetup MachineSetupRequest request = new MachineSetupRequest(); request.SerialNumber = serialNumber; + request.DeviceID = await _windows_manager.GetDeviceId(); + request.DeviceName = await _windows_manager.GetDeviceName(); + MachineSetupResponse setup_response = null; -- cgit v1.3.1