diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-12-09 16:59:07 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-12-09 16:59:07 +0200 |
| commit | f7d320bcc6651d0c85bad73b52b14ba050a40c18 (patch) | |
| tree | 6f446d30c34da651e5cb2bed93caa0edc3a38f24 /Software/Visual_Studio/PPC/Tango.PPC.Common/MachineUpdate/IMachineUpdateManager.cs | |
| parent | 58c791b68d9058516166cc26fc15563bd56ebeb6 (diff) | |
| download | Tango-f7d320bcc6651d0c85bad73b52b14ba050a40c18.tar.gz Tango-f7d320bcc6651d0c85bad73b52b14ba050a40c18.zip | |
Refactored PPC firmware upgrade.
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/MachineUpdate/IMachineUpdateManager.cs')
| -rw-r--r-- | Software/Visual_Studio/PPC/Tango.PPC.Common/MachineUpdate/IMachineUpdateManager.cs | 19 |
1 files changed, 3 insertions, 16 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineUpdate/IMachineUpdateManager.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineUpdate/IMachineUpdateManager.cs index 21fce7261..08124154b 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineUpdate/IMachineUpdateManager.cs +++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineUpdate/IMachineUpdateManager.cs @@ -9,10 +9,7 @@ namespace Tango.PPC.Common.MachineUpdate { public interface IMachineUpdateManager { - /// <summary> - /// Gets the current setup step. - /// </summary> - MachineUpdateSteps CurrentStep { get; } + MachineUpdateProgress Status { get; } /// <summary> /// Occurs when there is a text log message available. @@ -20,19 +17,9 @@ namespace Tango.PPC.Common.MachineUpdate event EventHandler<String> ProgressLog; /// <summary> - /// Gets the downloading packages step progress. - /// </summary> - double DownloadingPackagesProgress { get; } - - /// <summary> - /// Gets the downloading packages step status. - /// </summary> - String DownloadingPackagesStatus { get; } - - /// <summary> - /// Occurs when the <see cref="CurrentStep"/> has changed. + /// Occurs when the update has made some progress. /// </summary> - event EventHandler<MachineUpdateSteps> ProgressStep; + event EventHandler<MachineUpdateProgress> Progress; /// <summary> /// Performs a machine update using the specified serial number and machine service address. |
