aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/MachineUpdateViewVM.cs
diff options
context:
space:
mode:
authorVictoria Plitt <Victoria.Plitt@twine-s.com>2019-11-05 11:41:45 +0200
committerVictoria Plitt <Victoria.Plitt@twine-s.com>2019-11-05 11:41:45 +0200
commit8c003387a229cb852d318a718b2147cbdd7e2c67 (patch)
tree3117bf0643541166f47e532d9a1e052b55d4a20b /Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/MachineUpdateViewVM.cs
parentbf66536228666d733475f4ccdb248e5cec74c0aa (diff)
parent6f1993babfa5e15e73fbe5efb922d837527365f1 (diff)
downloadTango-8c003387a229cb852d318a718b2147cbdd7e2c67.tar.gz
Tango-8c003387a229cb852d318a718b2147cbdd7e2c67.zip
Merge branch 'master' of https://twinetfs.visualstudio.com/Tango/_git/Tango
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/MachineUpdateViewVM.cs')
-rw-r--r--Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/MachineUpdateViewVM.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/MachineUpdateViewVM.cs b/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/MachineUpdateViewVM.cs
index f265c5dbf..01e67d3ce 100644
--- a/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/MachineUpdateViewVM.cs
+++ b/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/MachineUpdateViewVM.cs
@@ -10,6 +10,7 @@ using Tango.Core.Helpers;
using Tango.Explorer;
using Tango.PPC.Common;
using Tango.PPC.Common.MachineUpdate;
+using Tango.PPC.Common.Web;
using Tango.PPC.UI.Dialogs;
using Tango.PPC.UI.ViewsContracts;
@@ -34,6 +35,7 @@ namespace Tango.PPC.UI.ViewModels
private MachineUpdateResult _update_result;
private DbCompareResult _db_compare_result;
private bool _isChecking;
+ private CheckForUpdateResponse _checkUpdateResponse;
#region Properties
@@ -149,6 +151,7 @@ namespace Tango.PPC.UI.ViewModels
}
var response = await MachineUpdateManager.CheckForUpdate(MachineProvider.Machine.SerialNumber);
+ _checkUpdateResponse = response;
if (response.IsUpdateAvailable)
{
@@ -192,7 +195,7 @@ namespace Tango.PPC.UI.ViewModels
try
{
- _update_result = await MachineUpdateManager.Update(MachineProvider.Machine.SerialNumber);
+ _update_result = await MachineUpdateManager.Update(MachineProvider.Machine.SerialNumber, _checkUpdateResponse.SetupFirmware, _checkUpdateResponse.SetupFPGA);
LogManager.Log("Machine update completed.");
await NavigateTo(MachineUpdateView.UpdateCompletedView);
}