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 d16974a commit 6cf0c1cCopy full SHA for 6cf0c1c
README.md
@@ -83,6 +83,7 @@ usage example:
83
84
Console.WriteLine("\nFound: {0}\n", mifareChip.SubType);
85
86
+ // bitfield-filter on all desfire type chips (EV1 4k, EV2 32k, SmartMX-Desfire etc.)
87
switch (mifareChip.SubType & MifareChipSubType.DESFire)
88
{
89
case MifareChipSubType.DESFire:
@@ -109,6 +110,7 @@ usage example:
109
110
Console.WriteLine("Found AppID(s): {0}", appID.ToString("X8"));
111
}
112
113
+ //try to create app, auth on picc first
114
await reader.MifareDesfire_SelectApplicationAsync(0);
115
await reader.MifareDesfire_CreateApplicationAsync(
116
DESFireAppAccessRights.KS_DEFAULT,
0 commit comments