PN532 NFC shield of Adafruit based on PN532 of Seeed.

Fork of PN532 by Seeed

Files at this revision

API Documentation at this revision

Comitter:
r4z0r7o3
Date:
Wed Feb 04 16:24:30 2015 +0000
Parent:
8:7ffdaea03ff9
Child:
10:59298dea711a
Commit message:
Fixed missing return statement

Changed in this revision

NfcAdapter.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/NfcAdapter.cpp	Wed Oct 08 01:52:33 2014 +0000
+++ b/NfcAdapter.cpp	Wed Feb 04 16:24:30 2015 +0000
@@ -135,4 +135,5 @@
     if(ATQA==0x44&&SAK==0x0){
         return TAG_TYPE_2;
     }
+    return TAG_TYPE_UNKNOWN;
 }