Skip to content

Commit b5149a3

Browse files
committed
Keep selected port
1 parent 618217c commit b5149a3

3 files changed

Lines changed: 7 additions & 6 deletions

File tree

ESP-SPO2/PluginHandler.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,13 @@ public static Boolean Initialize()
4848
Algorithm = formPort.Algorithm;
4949
BlinkInterval = formPort.BlinkInterval / 10;
5050
Threshold = formPort.Threshold;
51+
var selectedPort = formPort.SelectedPort;
5152

5253
formPort = new PortForm();
5354
formPort.Show();
5455

5556
// Open the COM port
56-
serialPort = new SerialPort(formPort.SelectedPort);
57+
serialPort = new SerialPort(selectedPort);
5758
serialPort.BaudRate = 115200;
5859
serialPort.Parity = Parity.None;
5960
//serialPort.DataBits = 8;

ESP-SPO2/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.0.2.0")]
36-
[assembly: AssemblyFileVersion("1.0.2.0")]
35+
[assembly: AssemblyVersion("1.0.3.0")]
36+
[assembly: AssemblyFileVersion("1.0.3.0")]

Installer/Lucid Scribe ESP-SPO2.vdproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -411,15 +411,15 @@
411411
{
412412
"Name" = "8:Microsoft Visual Studio"
413413
"ProductName" = "8:Lucid Scribe ESP-SPO2"
414-
"ProductCode" = "8:{1F84869D-F07C-4344-A3D6-0F4171E430B1}"
415-
"PackageCode" = "8:{47E006A4-AA06-4B22-804B-42DA5D538904}"
414+
"ProductCode" = "8:{CF1CEFCC-49C2-402C-8F23-C45909DA6C1C}"
415+
"PackageCode" = "8:{48D3BE0B-A342-4651-8308-08F0DB871D95}"
416416
"UpgradeCode" = "8:{59032C20-F059-4DA7-8D8B-462C04007A63}"
417417
"AspNetVersion" = "8:4.0.30319.0"
418418
"RestartWWWService" = "11:FALSE"
419419
"RemovePreviousVersions" = "11:TRUE"
420420
"DetectNewerInstalledVersion" = "11:TRUE"
421421
"InstallAllUsers" = "11:TRUE"
422-
"ProductVersion" = "8:1.0.2"
422+
"ProductVersion" = "8:1.0.3"
423423
"Manufacturer" = "8:lucidcode"
424424
"ARPHELPTELEPHONE" = "8:"
425425
"ARPHELPLINK" = "8:http://www.lucid-code.com/Support"

0 commit comments

Comments
 (0)