Skip to content

Commit

Permalink
Various fixes from testing of samples (#6)
Browse files Browse the repository at this point in the history
Minor changes
  • Loading branch information
AdrianSoundy authored Jul 21, 2024
1 parent 066d613 commit 52cd5fa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions nanoFramework.Networking.Thread/OpenThread.cs
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,7 @@ public void Start()
if (!_started)
{
NativeStartThread();
_started = true;
}
else
{
Expand Down
1 change: 1 addition & 0 deletions nanoFramework.Networking.Thread/OpenThreadDataset.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ namespace nanoFramework.Networking.Thread
/// <summary>
/// Represents a OpenThread Dataset.
/// </summary>
[Serializable]
public class OpenThreadDataset
{
private UInt16 _channel;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ internal OpenThreadJoinerStartCompleteEventArgs() : base()
/// <summary>
/// Joiner start error or 0 if successful.
/// </summary>
public int error { get => _error; set => value = _error; }
public int error { get => _error; set => _error = value; }
}
}

0 comments on commit 52cd5fa

Please sign in to comment.