diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-06-04 18:55:00 +0300 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-06-04 18:55:00 +0300 |
| commit | 24e5224eb41da3a736c46235567c8ba5484414e3 (patch) | |
| tree | 48371e69b7882045da7edc279ba893b299d7bf5e /Software/Visual_Studio/Tango.Integration/IntegrationSettings.cs | |
| parent | df9cd86ffccb0bd477ab7deb9d22c3bc0f908257 (diff) | |
| download | Tango-24e5224eb41da3a736c46235567c8ba5484414e3.tar.gz Tango-24e5224eb41da3a736c46235567c8ba5484414e3.zip | |
Save as previous.
Diffstat (limited to 'Software/Visual_Studio/Tango.Integration/IntegrationSettings.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.Integration/IntegrationSettings.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Integration/IntegrationSettings.cs b/Software/Visual_Studio/Tango.Integration/IntegrationSettings.cs index 03c112f3c..ce6ace32a 100644 --- a/Software/Visual_Studio/Tango.Integration/IntegrationSettings.cs +++ b/Software/Visual_Studio/Tango.Integration/IntegrationSettings.cs @@ -4,6 +4,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.Settings; +using Tango.Transport.Adapters; namespace Tango.Integration { @@ -30,6 +31,11 @@ namespace Tango.Integration public bool FilterExternalBridgeUsbMachines { get; set; } /// <summary> + /// Gets or sets the last virtual machine baud rate. + /// </summary> + public UsbSerialBaudRates EmbeddedSerialBaudRate { get; set; } + + /// <summary> /// Initializes a new instance of the <see cref="IntegrationSettings"/> class. /// </summary> public IntegrationSettings() @@ -38,6 +44,7 @@ namespace Tango.Integration ExternalBridgeServiceDiscoveryPort = 8888; EmbeddedDeviceName = "Tango USB Serial Port"; FilterExternalBridgeUsbMachines = false; + EmbeddedSerialBaudRate = UsbSerialBaudRates.BR_115200; } } } |
