Skip to content

Commit

Permalink
Merge pull request #598 from WildernessLabs/add_repos
Browse files Browse the repository at this point in the history
Add additional Foundation repos + remove timing hack + bump version
  • Loading branch information
ctacke authored Oct 1, 2024
2 parents 1edd91b + 7a542b1 commit c37f5b2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 11 deletions.
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.57.0</PackageVersion>
<PackageVersion>2.0.58.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.57.0";
public const string CLI_VERSION = "2.0.58.0";
}
9 changes: 0 additions & 9 deletions Source/v2/Meadow.HCom/Connections/ConnectionBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,17 +62,8 @@ protected void RaiseConnectionMessage(string message)
ConnectionMessage?.Invoke(this, message);
}

bool firstRun = true;

protected void RaiseDebuggerMessage(byte[] data)
{
if (firstRun)
{
Thread.Sleep(2000);
firstRun = false;
}

Debug.WriteLine($"*************************** RaiseDebuggerMessage: {data.Length}");
DebuggerMessageReceived?.Invoke(this, data);
}

Expand Down
6 changes: 6 additions & 0 deletions Source/v2/Meadow.Repository/MeadowRoot.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,14 @@ public class MeadowRoot
"Meadow.Contracts",
"Meadow.Units",
"Meadow.Foundation",
"Meadow.Foundation.CompositeDevices",
"Meadow.Foundation.Grove",
"Meadow.Foundation.FeatherWings",
"Meadow.Foundation.MBus",
"Meadow.Foundation.mikroBUS",
"Meadow.Logging",
"Meadow.Modbus",
"Meadow.ProjectLab",
"Meadow.Samples",
"MQTTnet",
"Maple",
Expand Down

0 comments on commit c37f5b2

Please sign in to comment.