aboutsummaryrefslogtreecommitdiffstats
path: root/readers.py
AgeCommit message (Collapse)AuthorFilesLines
2010-04-18FIX get_ATR for ISO 14443-3 BHenryk Plötz1-1/+1
2010-03-03Implement PC/SC GET DATA commandHenryk Plötz1-6/+60
2010-03-03Use proper target numberHenryk Plötz1-2/+1
2010-03-03Implement InListPassiveTargets response parsing for ISO 14443 BHenryk Plötz1-16/+34
Implement PC/SC ATR generation for ISO 14443 B
2010-03-03Add quick and dirty fake ATR generation for T=CL tagsHenryk Plötz1-6/+32
2010-03-03Move InListPassiveTarget response parsing to ↵Henryk Plötz1-7/+7
PN532_Response_InListPassiveTarget class
2010-03-03Add class infrastructure for PN532 commandsHenryk Plötz1-1/+1
2010-03-03API CHANGE: Move CommandLineArgumentHelper to readers module to allow proper ↵Henryk Plötz1-3/+40
import order. (CommandLineArgumentHelper references the readers module, which references the utils module, so having CLAH in utils would create a circular reference.)
2010-02-28+ Add parse_response_4BHenryk Plötz1-1/+2
+ Limit read binary response in PN532 case to 0xf8 bytes
2010-02-27Implement the card request loop in connect() in the Smartcard_Reader base ↵Henryk Plötz1-15/+38
class and move all the gory details into _internal_connect to be implemented in the subclasses
2010-02-26Initial and very minimal support for ISO 14443-4 over PN532 over ISO 7816-3 ↵Henryk Plötz1-1/+76
T=0 on the ACR122 firmware 1.x
2010-02-26Move all PC/SC specific stuff to a separate class structure for readers ↵Henryk Plötz1-0/+130
(thus preparing the way for non-PC/SC-readers) This commit should be known as "Holy excessive layering, batman!"