Skip to content

Commit

Permalink
Merge pull request #570 from WildernessLabs/runtime_flash_timeout
Browse files Browse the repository at this point in the history
Remove reset when only writing the runtime + version bump
  • Loading branch information
ctacke committed May 23, 2024
2 parents 95c80e6 + a460c94 commit bff8607
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -244,12 +244,12 @@ protected override async ValueTask ExecuteCommand()
connection = await GetConnectionAndDisableRuntime();

await WriteEspFiles(connection, deviceInfo, package);
}

// reset device
if (connection != null && connection.Device != null)
{
await connection.Device.Reset();
// reset device
if (connection != null && connection.Device != null)
{
await connection.Device.Reset();
}
}

Logger?.LogInformation(Strings.FirmwareUpdatedSuccessfully);
Expand Down
2 changes: 1 addition & 1 deletion Source/v2/Meadow.Cli/Meadow.CLI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<Authors>Wilderness Labs, Inc</Authors>
<Company>Wilderness Labs, Inc</Company>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageVersion>2.0.43.0</PackageVersion>
<PackageVersion>2.0.44.0</PackageVersion>
<Platforms>AnyCPU</Platforms>
<PackageProjectUrl>http://developer.wildernesslabs.co/Meadow/Meadow.CLI/</PackageProjectUrl>
<RepositoryUrl>https://github.com/WildernessLabs/Meadow.CLI</RepositoryUrl>
Expand Down
2 changes: 1 addition & 1 deletion Source/v2/Meadow.Cli/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ namespace Meadow.CLI;

public static class Constants
{
public const string CLI_VERSION = "2.0.43.0";
public const string CLI_VERSION = "2.0.44.0";
}

0 comments on commit bff8607

Please sign in to comment.