-
-
Notifications
You must be signed in to change notification settings - Fork 150
/
Copy pathProgram.cs
33 lines (26 loc) · 870 Bytes
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
//
// Copyright (c) .NET Foundation and Contributors
// See LICENSE file in the project root for full license information.
//
using System;
using System.Diagnostics;
using System.Threading;
using STM32 = nanoFramework.Hardware.Stm32;
namespace Stm32.ReadDeviceIDs
{
public class Program
{
public static void Main()
{
string uniqueDeviceId = "";
foreach(byte b in STM32.Utilities.UniqueDeviceId)
{
uniqueDeviceId += b.ToString("X2");
}
Debug.WriteLine($"Unique device ID: {uniqueDeviceId}");
Debug.WriteLine($"Device identifier: { STM32.Utilities.DeviceId.ToString("X4")}");
Debug.WriteLine($"Device revision identifier: { STM32.Utilities.DeviceRevisionId.ToString("X4")}");
Thread.Sleep(Timeout.Infinite);
}
}
}