+ case 0x00:
+ // check if the tag answers to GETVERSION (0x60)
+ c.arg[0] = ISO14A_RAW | ISO14A_APPEND_CRC | ISO14A_NO_DISCONNECT;
+ c.arg[1] = 1;
+ c.arg[2] = 0;
+ c.d.asBytes[0] = 0x60;
+ SendCommand(&c);
+ WaitForResponse(CMD_ACK,&resp);
+
+ uint8_t version[8] = {0x00};
+ memcpy(&version, resp.d.asBytes, resp.arg[0]);
+ uint8_t isOK = resp.arg[0] & 0xff;
+ if ( isOK ){
+ // size of tag, check version[4] == 0x0b == smaller.
+ PrintAndLog("TYPE : NXP MIFARE Ultralight EV1 %d bytes", (version[6] == 0xB) ? 48 : 128);
+ }
+ else {
+ PrintAndLog("TYPE : NXP MIFARE Ultralight | Ultralight C");
+ }
+
+ break;