We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe549b3 commit 7b00beaCopy full SHA for 7b00bea
nanoFramework.Hardware.TI/Utilities.cs
@@ -24,7 +24,7 @@ public static byte[] GetIeeeAddress()
24
{
25
if (_deviceIeeeAddress == null)
26
27
- NativeGetIeeeAddress();
+ _deviceIeeeAddress = NativeGetIeeeAddress();
28
}
29
30
return _deviceIeeeAddress;
@@ -33,7 +33,7 @@ public static byte[] GetIeeeAddress()
33
#region native methods calls
34
35
[MethodImpl(MethodImplOptions.InternalCall)]
36
- private static extern void NativeGetIeeeAddress();
+ private static extern byte[] NativeGetIeeeAddress();
37
38
#endregion
39
0 commit comments