diff options
| author | Roy <Roy.mail.net@gmail.com> | 2023-06-27 13:15:28 +0300 |
|---|---|---|
| committer | Roy <Roy.mail.net@gmail.com> | 2023-06-27 13:15:28 +0300 |
| commit | 0f150c98978332377ee6aad3eac8c8a08553a8e7 (patch) | |
| tree | dcfd17fb1c3495e74273cb618c03cd7538a9873d /Software/Visual_Studio/PPC/Tango.PPC.Common/PPCSettings.cs | |
| parent | 304735006580cb2f6728bedeb3393dbefc2e14f5 (diff) | |
| download | Tango-0f150c98978332377ee6aad3eac8c8a08553a8e7.tar.gz Tango-0f150c98978332377ee6aad3eac8c8a08553a8e7.zip | |
Added support for external emulator on PPC/Eureka over TCP.
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/PPCSettings.cs')
| -rw-r--r-- | Software/Visual_Studio/PPC/Tango.PPC.Common/PPCSettings.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/PPCSettings.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/PPCSettings.cs index 41e103ca0..ae6e4bc47 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.Common/PPCSettings.cs +++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/PPCSettings.cs @@ -16,6 +16,12 @@ using Tango.Web; namespace Tango.PPC.Common { + public enum EmulatorMode + { + InMemory, + ExternalTCP, + } + /// <summary> /// Represents the main PPC settings. /// </summary> @@ -365,6 +371,11 @@ namespace Tango.PPC.Common public bool ForceTouchMode { get; set; } /// <summary> + /// Gets or sets the emulator mode. + /// </summary> + public EmulatorMode EmulatorMode { get; set; } + + /// <summary> /// Gets the machine service address. /// </summary> /// <returns></returns> @@ -378,6 +389,7 @@ namespace Tango.PPC.Common /// </summary> public PPCSettings() { + EmulatorMode = EmulatorMode.InMemory; LubricationLevels = new List<RmlLubricationLevel>(); JobUploadStrategy = JobUploadStrategy.JobDescriptionFile; FineTuningTrialLengthMeters = 200; |
