Topic: send APDU command on T=CL protocol
I develop firmware for clrc632.
I want send APDU command "FF CA 00 00 00 00 0000" (gets ID card).
Acording ISO 14443, I do thouse steps:
1) Request
where gets atq
2) Anticoll
gets id of chips
2) Select card
gets sak
Then I send command RATS (Request answer to select)
MFRC_Write(FIFOData, RATS);
// Set parameter byte codes FSDI and CID, get 64 bytes
MFRC_Write(FIFOData, 0x50);
code = MFRC_Transceive();As result: 0D 78 77 B1 02 4A 43 4F 50 76 32 34 31 00 00 00
Then I wand send APDU command...
How do it?
Thank you!