From 9dcc30fc8d4d0d5cf8a09154bcb0442f65e266fc Mon Sep 17 00:00:00 2001 From: Ondrej Mikle Date: Tue, 22 Jul 2014 13:12:16 +0200 Subject: [PATCH] Remove open-close-select from test script. --- test_nfc.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test_nfc.py b/test_nfc.py index 509b78f..964161b 100755 --- a/test_nfc.py +++ b/test_nfc.py @@ -24,12 +24,12 @@ try: nfc = NFCDevice() uid = nfc.scanUID() print "UID", hexlify(uid) - nfc.close() - nfc.open() + #nfc.close() + #nfc.open() print "Now trying to send ISO14443-4 APDUs" try: - nfc.selectPassiveTarget() + #nfc.selectPassiveTarget() for apdu in apdus: print "Command APDU:", formatAPDU(apdu) rapdu = nfc.sendAPDU(apdu)