-
-
Notifications
You must be signed in to change notification settings - Fork 108
/
RfConfigurationMode.cs
51 lines (43 loc) · 1.2 KB
/
RfConfigurationMode.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace Iot.Device.Pn532
{
/// <summary>
/// Radio Frequency configuration mode
/// </summary>
public enum RfConfigurationMode
{
/// <summary>
/// Rf Field
/// </summary>
RfField = 0x01,
/// <summary>
/// Various Timings
/// </summary>
VariousTimings = 0x02,
/// <summary>
/// Max Retry COM
/// </summary>
MaxRetryCOM = 0x04,
/// <summary>
/// Max Retries
/// </summary>
MaxRetries = 0x05,
/// <summary>
/// Analog Settings B106 kbps Type A
/// </summary>
AnalogSettingsB106kbpsTypeA = 0x0A,
/// <summary>
/// Analog Settings B212_424 kbps
/// </summary>
AnalogSettingsB212_424kbps = 0x0B,
/// <summary>
/// Analog Settings Type B
/// </summary>
AnalogSettingsTypeB = 0x0C,
/// <summary>
/// Analog Settings B212_424_848 ISO_IEC14443_4
/// </summary>
AnalogSettingsB212_424_848ISO_IEC14443_4 = 0x0D,
}
}