Added command to read PCF7931 125Khz LF tags. This is a beta version which needs to be tested.

This commit is contained in:
chalk.secu@gmail.com 2013-01-18 21:31:35 +00:00
commit f5fca2ed62
8 changed files with 338 additions and 1 deletions

View file

@ -666,6 +666,10 @@ void UsbPacketReceived(uint8_t *packet, int len)
case CMD_T55XX_READ_TRACE: // Clone HID tag by ID to T55x7
T55xxReadTrace();
break;
case CMD_PCF7931_READ: // Read PCF7931 tag
ReadPCF7931();
UsbSendPacket((uint8_t*)&ack, sizeof(ack));
break;
#endif
#ifdef WITH_HITAG