-
-
Notifications
You must be signed in to change notification settings - Fork 111
/
Copy pathSecurityAccessModuleMode.cs
34 lines (30 loc) · 1.04 KB
/
SecurityAccessModuleMode.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
// 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>
/// Security Access Module Mode
/// </summary>
public enum SecurityAccessModuleMode
{
/// <summary>
/// 0x01: Normal mode, the SAM is not used; this is the default mode
/// </summary>
Normal = 0x01,
/// <summary>
/// 0x02: Virtual Card, the couple PN532+SAM is seen as only one
/// contactless SAM card from the external world
/// </summary>
VirtualCard = 0x02,
/// <summary>
/// 0x03: Wired Card, the host controller can access to the SAM with
/// standard PCD commands (InListPassiveTarget,InDataExchange, …)
/// </summary>
WiredCard = 0x03,
/// <summary>
/// 0x04: Dual Card, both the PN532 and the SAM are visible from the
/// external world as two separated targets
/// </summary>
DualCard = 0x04
}
}