+ UsbCommand c = {CMD_READER_ISO_14443a, {ISO14A_CONNECT, 0, 0}};
+ SendCommand(&c);
+ UsbCommand * resp = WaitForResponse(CMD_ACK);
+ uint8_t * uid = resp->d.asBytes;
+ iso14a_card_select_t * card = (iso14a_card_select_t *)(uid + 12);
+
+ if(resp->arg[0] == 0) {
+ PrintAndLog("iso14443a card select failed");
+ return 0;
+ }
+
+ PrintAndLog("ATQA : %02x %02x", card->atqa[0], card->atqa[1]);
+ PrintAndLog(" UID : %s", sprint_hex(uid, 12));
+ PrintAndLog(" SAK : %02x [%d]", card->sak, resp->arg[0]);
+ switch (card->sak) {
+ case 0: PrintAndLog(" SAK : MIFARE ultralight?"); break;
+ case 8: PrintAndLog(" SAK : MIFARE CLASSIC 1K"); break;
+ case 9: PrintAndLog(" SAK : MIFARE MINI"); break;
+ case 18: PrintAndLog(" SAK : MIFARE CLASSIC 4K"); break;
+ case 20: PrintAndLog(" SAK : MIFARE DESFIRE or JCOP 31/41"); break;
+ case 28: PrintAndLog(" SAK : JCOP31 or JCOP41 v2.3.1"); break;
+ case 38: PrintAndLog(" SAK : Nokia 6212 or 6131 MIFARE CLASSIC 4K"); break;
+ case 88: PrintAndLog(" SAK : Infineon MIFARE CLASSIC 1K"); break;
+ case 98: PrintAndLog(" SAK : Gemplus MPCOS"); break;
+ default: ;
+ }
+ if(resp->arg[0] == 1)
+ PrintAndLog(" ATS : %s", sprint_hex(card->ats, card->ats_len));
+ else
+ PrintAndLog("proprietary non-iso14443a card found, RATS not supported");
+
+ return resp->arg[0];