Skip to content

Commit f743031

Browse files
authored
Merge pull request #589 from WildernessLabs/aggressive_reconnect
Aggressively poll for serial port connections when attaching
2 parents 20cbb9c + d4a46b4 commit f743031

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed

Source/v2/Meadow.Cli/Meadow.CLI.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<Authors>Wilderness Labs, Inc</Authors>
1111
<Company>Wilderness Labs, Inc</Company>
1212
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
13-
<PackageVersion>2.0.55.0</PackageVersion>
13+
<PackageVersion>2.0.56.0</PackageVersion>
1414
<Platforms>AnyCPU</Platforms>
1515
<PackageProjectUrl>http://developer.wildernesslabs.co/Meadow/Meadow.CLI/</PackageProjectUrl>
1616
<RepositoryUrl>https://github.com/WildernessLabs/Meadow.CLI</RepositoryUrl>

Source/v2/Meadow.Cli/Properties/AssemblyInfo.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ namespace Meadow.CLI;
66

77
public static class Constants
88
{
9-
public const string CLI_VERSION = "2.0.55.0";
9+
public const string CLI_VERSION = "2.0.56.0";
1010
}

Source/v2/Meadow.Hcom/Connections/SerialConnection.ListenerProc.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ public partial class SerialConnection
88

99
public override async Task WaitForMeadowAttach(CancellationToken? cancellationToken)
1010
{
11-
var timeout = 20;
11+
var timeout = 500;
1212

1313
while (timeout-- > 0)
1414
{
@@ -26,7 +26,7 @@ public override async Task WaitForMeadowAttach(CancellationToken? cancellationTo
2626
return;
2727
}
2828

29-
await Task.Delay(500);
29+
await Task.Delay(20);
3030

3131
if (!_port.IsOpen)
3232
{

Source/v2/Meadow.Hcom/Connections/SerialConnection.cs

+2-4
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ public override void Detach()
202202
_port.DiscardInBuffer();
203203

204204
// wait for a response
205-
var timeout = timeoutSeconds * 2;
205+
var timeout = timeoutSeconds * 50;
206206
var dataReceived = false;
207207

208208
// local function so we can unsubscribe
@@ -222,7 +222,7 @@ public override void Detach()
222222
break;
223223
}
224224

225-
await Task.Delay(500);
225+
await Task.Delay(20);
226226
}
227227

228228
// if HCOM fails, check for DFU/bootloader mode? only if we're doing an OS thing, so maybe no
@@ -1259,8 +1259,6 @@ public override async Task<DebuggingServer> StartDebuggingSession(int port, ILog
12591259
logger?.LogDebug($"Start Debugging on port: {port}");
12601260
await Device.StartDebugging(port, logger, cancellationToken);
12611261

1262-
await WaitForMeadowAttach(cancellationToken);
1263-
12641262
return debuggingServer;
12651263
}
12661264

0 commit comments

Comments
 (0)