Skip to content

Commit 77aeea1

Browse files
committed
fix copy paste bug in 14a simulate
1 parent a0efcb2 commit 77aeea1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

armsrc/iso14443a.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1893,7 +1893,7 @@ void SimulateIso14443aTag(uint8_t tagType, uint16_t flags, uint8_t *useruid, uin
18931893
EmSendCmd(emdata, len + 2);
18941894
}
18951895
p_response = NULL;
1896-
} else if (receivedCmd[0] == MIFARE_ULC_WRITE && len == 8 && (tagType == 2 || tagType == 7 || tagType == 13 || tagType == 13)) { // Received a WRITE
1896+
} else if (receivedCmd[0] == MIFARE_ULC_WRITE && len == 8 && (tagType == 2 || tagType == 7 || tagType == 13 || tagType == 14)) { // Received a WRITE
18971897

18981898
p_response = NULL;
18991899

0 commit comments

Comments
 (0)