mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-22 14:13:42 -07:00
all is OK. Just need to fix comment.
This commit is contained in:
parent
c871d243f3
commit
5fdb7e97e4
1 changed files with 3 additions and 1 deletions
|
@ -1821,7 +1821,9 @@ int iso14443a_select_card(byte_t *uid_ptr, iso14a_card_select_t *p_hi14a_card, u
|
|||
}
|
||||
|
||||
// PICC compilant with iso14443a-4 ---> (SAK & 0x20 != 0)
|
||||
if (sak & 0x20 && !no_rats) {
|
||||
if( (sak & 0x20) == 0) return 2;
|
||||
|
||||
if (!no_rats) {
|
||||
// Request for answer to select
|
||||
AppendCrc14443a(rats, 2);
|
||||
ReaderTransmit(rats, sizeof(rats), NULL);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue