PN532 library with added ultralight write support
Fork of PN532 by
Ndef.h@5:51f820fbd18a, 2014-10-07 (annotated)
- Committer:
- icefeet
- Date:
- Tue Oct 07 15:09:46 2014 +0000
- Revision:
- 5:51f820fbd18a
- Parent:
- 3:4189a10038e6
Added support for Ultralight Write
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
yihui | 3:4189a10038e6 | 1 | #ifndef Ndef_h |
yihui | 3:4189a10038e6 | 2 | #define Ndef_h |
yihui | 3:4189a10038e6 | 3 | |
yihui | 3:4189a10038e6 | 4 | /* NOTE: To use the Ndef library in your code, don't include Ndef.h |
yihui | 3:4189a10038e6 | 5 | See README.md for details on which files to include in your sketch. |
yihui | 3:4189a10038e6 | 6 | */ |
yihui | 3:4189a10038e6 | 7 | #include <stdint.h> |
yihui | 3:4189a10038e6 | 8 | |
yihui | 3:4189a10038e6 | 9 | void PrintHex(const uint8_t *data, const long numuint8_ts); |
yihui | 3:4189a10038e6 | 10 | void PrintHexChar(const uint8_t *data, const long numuint8_ts); |
yihui | 3:4189a10038e6 | 11 | void DumpHex(const uint8_t *data, const long numuint8_ts, const int blockSize); |
yihui | 3:4189a10038e6 | 12 | |
yihui | 3:4189a10038e6 | 13 | #endif |