diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-04-09 12:11:08 +0300 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-04-09 12:11:08 +0300 |
| commit | 1059d820ce5f6f83ce2b5a619487e7f8120c7949 (patch) | |
| tree | b3ca27408a96c998d948fae503cab9edc0c29e8a /Software/Visual_Studio/Tango.Settings | |
| parent | a0e25846735104f09a18647220db59804977e73a (diff) | |
| download | Tango-1059d820ce5f6f83ce2b5a619487e7f8120c7949.tar.gz Tango-1059d820ce5f6f83ce2b5a619487e7f8120c7949.zip | |
Implemented baud rate for USB Serial Adapter.
Added baud rate to stubs UI.
Diffstat (limited to 'Software/Visual_Studio/Tango.Settings')
| -rw-r--r-- | Software/Visual_Studio/Tango.Settings/StubsUI.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Settings/StubsUI.cs b/Software/Visual_Studio/Tango.Settings/StubsUI.cs index c0dea54ba..9944ffc11 100644 --- a/Software/Visual_Studio/Tango.Settings/StubsUI.cs +++ b/Software/Visual_Studio/Tango.Settings/StubsUI.cs @@ -17,6 +17,11 @@ namespace Tango.Settings public String SelectedPort { get; set; } /// <summary> + /// Gets or sets the baud rate. + /// </summary> + public int BaudRate { get; set; } + + /// <summary> /// Gets or sets the last tabs. /// </summary> public List<String> LastTabs { get; set; } @@ -31,6 +36,7 @@ namespace Tango.Settings /// </summary> public StubsUI() { + BaudRate = 9600; LastTabs = new List<string>(); } } |
