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 3ad8c6b commit 4f7790cCopy full SHA for 4f7790c
nanoFramework.Hardware.TI/Utilities.cs
@@ -20,11 +20,11 @@ public static class Utilities
20
/// <summary>
21
/// Gets the IEEE Address.
22
/// </summary>
23
- public static byte[] IeeeAddress()
+ public static byte[] GetIeeeAddress()
24
{
25
if (_deviceIeeeAddress == null)
26
27
- _deviceIeeeAddress = NativeGetIeeeAddress();
+ NativeGetIeeeAddress();
28
}
29
30
return _deviceIeeeAddress;
@@ -33,7 +33,7 @@ public static byte[] IeeeAddress()
33
#region native methods calls
34
35
[MethodImpl(MethodImplOptions.InternalCall)]
36
- private static extern byte[] NativeGetIeeeAddress();
+ private static extern void NativeGetIeeeAddress();
37
38
#endregion
39
0 commit comments