|
@@ -53,7 +53,6 @@ namespace CyberX8_MainPages.ViewModels
|
|
|
|
|
|
private bool _EFEMIsInstalled;
|
|
private bool _EFEMIsInstalled;
|
|
private bool _PUF1IsInstalled;
|
|
private bool _PUF1IsInstalled;
|
|
- private bool _PUF2IsInstalled;
|
|
|
|
private bool _loader1Installed;
|
|
private bool _loader1Installed;
|
|
private bool _transporter2Installed;
|
|
private bool _transporter2Installed;
|
|
private bool _transporter1Installed;
|
|
private bool _transporter1Installed;
|
|
@@ -212,12 +211,6 @@ namespace CyberX8_MainPages.ViewModels
|
|
get { return _PUF1IsInstalled; }
|
|
get { return _PUF1IsInstalled; }
|
|
set { SetProperty(ref _PUF1IsInstalled, value); }
|
|
set { SetProperty(ref _PUF1IsInstalled, value); }
|
|
}
|
|
}
|
|
- public bool PUF2IsInstalled
|
|
|
|
- {
|
|
|
|
- get { return _PUF2IsInstalled; }
|
|
|
|
- set { SetProperty(ref _PUF2IsInstalled, value); }
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
public bool Loader1IsInstalled
|
|
public bool Loader1IsInstalled
|
|
{
|
|
{
|
|
get { return _loader1Installed; }
|
|
get { return _loader1Installed; }
|
|
@@ -321,7 +314,6 @@ namespace CyberX8_MainPages.ViewModels
|
|
List<string> allModules = CommonFunction.GetValue<List<string>>(allModulesDictionary, "System.InstalledModules");
|
|
List<string> allModules = CommonFunction.GetValue<List<string>>(allModulesDictionary, "System.InstalledModules");
|
|
EFEMIsInstalled = allModules.Contains("EFEM");
|
|
EFEMIsInstalled = allModules.Contains("EFEM");
|
|
PUF1IsInstalled = allModules.Contains("PUF1");
|
|
PUF1IsInstalled = allModules.Contains("PUF1");
|
|
- PUF2IsInstalled = allModules.Contains("PUF2");
|
|
|
|
Loader1IsInstalled = allModules.Contains("Loader1");
|
|
Loader1IsInstalled = allModules.Contains("Loader1");
|
|
Transporter1IsInstalled = allModules.Contains("Transporter1");
|
|
Transporter1IsInstalled = allModules.Contains("Transporter1");
|
|
Transporter2IsInstalled = allModules.Contains("Transporter2");
|
|
Transporter2IsInstalled = allModules.Contains("Transporter2");
|
|
@@ -412,10 +404,6 @@ namespace CyberX8_MainPages.ViewModels
|
|
{
|
|
{
|
|
m_RtDataKeys.Add("PUF1.FsmState");
|
|
m_RtDataKeys.Add("PUF1.FsmState");
|
|
}
|
|
}
|
|
- if (PUF2IsInstalled)
|
|
|
|
- {
|
|
|
|
- m_RtDataKeys.Add("PUF2.FsmState");
|
|
|
|
- }
|
|
|
|
|
|
|
|
if(Loader1IsInstalled)
|
|
if(Loader1IsInstalled)
|
|
{
|
|
{
|