aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Common/PPCSettings.cs
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2019-12-19 18:01:01 +0200
committerRoy Ben-Shabat <Roy@Twine-s.com>2019-12-19 18:01:01 +0200
commit1208554e06da8aec1b074932df488769572ffcfb (patch)
tree9858ededeb8badda5fc8b3052ef9745e419f35fd /Software/Visual_Studio/PPC/Tango.PPC.Common/PPCSettings.cs
parent690604e6167bfa4fea0ab02f8b24a68142e8b546 (diff)
downloadTango-1208554e06da8aec1b074932df488769572ffcfb.tar.gz
Tango-1208554e06da8aec1b074932df488769572ffcfb.zip
Implemented auto thread loading.
Implemented advanced settings for technician. Implemented thread loading on emulator. Removed PowerUpSelectedRML from settings. Now using LoadedRml settings for ThreadLoading and PowerUp.
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/PPCSettings.cs')
-rw-r--r--Software/Visual_Studio/PPC/Tango.PPC.Common/PPCSettings.cs25
1 files changed, 19 insertions, 6 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/PPCSettings.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/PPCSettings.cs
index cb17f5be3..96fe39a9b 100644
--- a/Software/Visual_Studio/PPC/Tango.PPC.Common/PPCSettings.cs
+++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/PPCSettings.cs
@@ -200,11 +200,6 @@ namespace Tango.PPC.Common
public String FirmwareVersion { get; set; }
/// <summary>
- /// Gets or sets the last power up selected RML.
- /// </summary>
- public String LastPowerUpSelectedRmlGuid { get; set; }
-
- /// <summary>
/// Gets or sets a value indicating whether to display the power up screen.
/// </summary>
public bool DisplayPowerUpScreen { get; set; }
@@ -220,6 +215,21 @@ namespace Tango.PPC.Common
public bool AutoCheckForUpdates { get; set; }
/// <summary>
+ /// Gets or sets a value indicating whether to enable the automatic thread loading support.
+ /// </summary>
+ public bool EnableAutomaticThreadLoading { get; set; }
+
+ /// <summary>
+ /// Gets or sets a value indicating whether to display the thread loading screen.
+ /// </summary>
+ public bool DisplayAutomaticThreadLoadingScreen { get; set; }
+
+ /// <summary>
+ /// Gets or sets a value indicating whether to enable embedded debug logs.
+ /// </summary>
+ public bool EnableEmbeddedDebugLogs { get; set; }
+
+ /// <summary>
/// Gets the machine service address.
/// </summary>
/// <returns></returns>
@@ -259,8 +269,11 @@ namespace Tango.PPC.Common
SynchronizationInterval = TimeSpan.FromMinutes(60);
FirmwareVersion = "1.0.0.0";
DisplayPowerUpScreen = true;
- PowerUpScreenTimeout = TimeSpan.FromSeconds(20);
+ PowerUpScreenTimeout = TimeSpan.FromSeconds(60);
AutoCheckForUpdates = true;
+ EnableAutomaticThreadLoading = true;
+ DisplayAutomaticThreadLoadingScreen = true;
+ EnableEmbeddedDebugLogs = true;
}
}
}