Skip to content

Commit

Permalink
Fix expected NTAG216 GET_VERSION response (#2289)
Browse files Browse the repository at this point in the history
  • Loading branch information
pete-intranel authored Mar 25, 2024
1 parent 09a9dd4 commit 29e0802
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/devices/Card/Ultralight/UltralightCard.cs
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ public UltralightCard(CardTransceiver rfid, byte target)
NdefCapacity = 504;
UltralightCardType = UltralightCardType.UltralightNtag215;
}
else if ((Data[2] == 0x04) && (Data[3] == 0x01) && (Data[4] == 0x01) && (Data[5] == 0x00) && (Data[6] == 0x13))
else if ((Data[2] == 0x04) && (Data[3] == 0x02) && (Data[4] == 0x01) && (Data[5] == 0x00) && (Data[6] == 0x13))
{
NdefCapacity = 888;
UltralightCardType = UltralightCardType.UltralightNtag216;
Expand Down

0 comments on commit 29e0802

Please sign in to comment.