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:
dwini
Date:
Thu Nov 17 10:57:42 2016 +0000
Parent:
9:85bfede025da
Child:
11:e7bbcfa61859
Commit message:
Fix string header needed for offline compiler for memcpy and memset.

Changed in this revision

MifareClassic.cpp Show annotated file Show diff for this revision Revisions of this file
MifareUltralight.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/MifareClassic.cpp	Wed Feb 04 16:24:30 2015 +0000
+++ b/MifareClassic.cpp	Thu Nov 17 10:57:42 2016 +0000
@@ -1,6 +1,8 @@
 #include "MifareClassic.h"
 #include "PN532_debug.h"
 
+#include <string.h>
+
 #define BLOCK_SIZE 16
 #define LONG_TLV_SIZE 4
 #define SHORT_TLV_SIZE 2
--- a/MifareUltralight.cpp	Wed Feb 04 16:24:30 2015 +0000
+++ b/MifareUltralight.cpp	Thu Nov 17 10:57:42 2016 +0000
@@ -1,5 +1,7 @@
 #include "MifareUltralight.h"
 
+#include <string.h>
+
 #include "PN532_debug.h"
 
 #define ULTRALIGHT_PAGE_SIZE 4