1
0

pn532.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  1. /**************************************************************************
  2. * @file pn532.h
  3. * @author Yehui from Waveshare
  4. * @license BSD
  5. *
  6. * Header file for pn532.c
  7. *
  8. * Check out the links above for our tutorials and wiring diagrams
  9. * These chips use SPI communicate.
  10. *
  11. * Permission is hereby granted, free of charge, to any person obtaining a copy
  12. * of this software and associated documnetation files (the "Software"), to deal
  13. * in the Software without restriction, including without limitation the rights
  14. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  15. * copies of the Software, and to permit persons to whom the Software is
  16. * furished to do so, subject to the following conditions:
  17. *
  18. * The above copyright notice and this permission notice shall be included in
  19. * all copies or substantial portions of the Software.
  20. *
  21. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  22. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  23. * FITNESS OR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  24. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  25. * LIABILITY WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  26. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  27. * THE SOFTWARE.
  28. **************************************************************************/
  29. #ifndef PN532_H
  30. #define PN532_H
  31. #include <stdint.h>
  32. #include <stdbool.h>
  33. #ifdef __cplusplus
  34. extern "C" {
  35. #endif
  36. #define PN532_PREAMBLE (0x00)
  37. #define PN532_STARTCODE1 (0x00)
  38. #define PN532_STARTCODE2 (0xFF)
  39. #define PN532_POSTAMBLE (0x00)
  40. #define PN532_HOSTTOPN532 (0xD4)
  41. #define PN532_PN532TOHOST (0xD5)
  42. // PN532 Commands
  43. #define PN532_COMMAND_DIAGNOSE (0x00)
  44. #define PN532_COMMAND_GETFIRMWAREVERSION (0x02)
  45. #define PN532_COMMAND_GETGENERALSTATUS (0x04)
  46. #define PN532_COMMAND_READREGISTER (0x06)
  47. #define PN532_COMMAND_WRITEREGISTER (0x08)
  48. #define PN532_COMMAND_READGPIO (0x0C)
  49. #define PN532_COMMAND_WRITEGPIO (0x0E)
  50. #define PN532_COMMAND_SETSERIALBAUDRATE (0x10)
  51. #define PN532_COMMAND_SETPARAMETERS (0x12)
  52. #define PN532_COMMAND_SAMCONFIGURATION (0x14)
  53. #define PN532_COMMAND_POWERDOWN (0x16)
  54. #define PN532_COMMAND_RFCONFIGURATION (0x32)
  55. #define PN532_COMMAND_RFREGULATIONTEST (0x58)
  56. #define PN532_COMMAND_INJUMPFORDEP (0x56)
  57. #define PN532_COMMAND_INJUMPFORPSL (0x46)
  58. #define PN532_COMMAND_INLISTPASSIVETARGET (0x4A)
  59. #define PN532_COMMAND_INATR (0x50)
  60. #define PN532_COMMAND_INPSL (0x4E)
  61. #define PN532_COMMAND_INDATAEXCHANGE (0x40)
  62. #define PN532_COMMAND_INCOMMUNICATETHRU (0x42)
  63. #define PN532_COMMAND_INDESELECT (0x44)
  64. #define PN532_COMMAND_INRELEASE (0x52)
  65. #define PN532_COMMAND_INSELECT (0x54)
  66. #define PN532_COMMAND_INAUTOPOLL (0x60)
  67. #define PN532_COMMAND_TGINITASTARGET (0x8C)
  68. #define PN532_COMMAND_TGSETGENERALBYTES (0x92)
  69. #define PN532_COMMAND_TGGETDATA (0x86)
  70. #define PN532_COMMAND_TGSETDATA (0x8E)
  71. #define PN532_COMMAND_TGSETMETADATA (0x94)
  72. #define PN532_COMMAND_TGGETINITIATORCOMMAND (0x88)
  73. #define PN532_COMMAND_TGRESPONSETOINITIATOR (0x90)
  74. #define PN532_COMMAND_TGGETTARGETSTATUS (0x8A)
  75. #define PN532_RESPONSE_INDATAEXCHANGE (0x41)
  76. #define PN532_RESPONSE_INLISTPASSIVETARGET (0x4B)
  77. #define PN532_WAKEUP (0x55)
  78. #define PN532_SPI_STATREAD (0x02)
  79. #define PN532_SPI_DATAWRITE (0x01)
  80. #define PN532_SPI_DATAREAD (0x03)
  81. #define PN532_SPI_READY (0x01)
  82. #define PN532_I2C_ADDRESS (0x48 >> 1)
  83. #define PN532_I2C_READBIT (0x01)
  84. #define PN532_I2C_BUSY (0x00)
  85. #define PN532_I2C_READY (0x01)
  86. #define PN532_I2C_READYTIMEOUT (20)
  87. #define PN532_MIFARE_ISO14443A (0x00)
  88. // Mifare Commands
  89. #define MIFARE_CMD_AUTH_A (0x60)
  90. #define MIFARE_CMD_AUTH_B (0x61)
  91. #define MIFARE_CMD_READ (0x30)
  92. #define MIFARE_CMD_WRITE (0xA0)
  93. #define MIFARE_CMD_TRANSFER (0xB0)
  94. #define MIFARE_CMD_DECREMENT (0xC0)
  95. #define MIFARE_CMD_INCREMENT (0xC1)
  96. #define MIFARE_CMD_STORE (0xC2)
  97. #define MIFARE_ULTRALIGHT_CMD_WRITE (0xA2)
  98. #define MIFARE_UID_MAX_LENGTH MIFARE_UID_TRIPLE_LENGTH
  99. #define MIFARE_UID_SINGLE_LENGTH (4)
  100. #define MIFARE_UID_DOUBLE_LENGTH (7)
  101. #define MIFARE_UID_TRIPLE_LENGTH (10)
  102. #define MIFARE_KEY_LENGTH (6)
  103. #define MIFARE_BLOCK_LENGTH (16)
  104. // NTAG2xx Commands
  105. #define NTAG2XX_BLOCK_LENGTH (4)
  106. // Prefixes for NDEF Records (to identify record type)
  107. #define NDEF_URIPREFIX_NONE (0x00)
  108. #define NDEF_URIPREFIX_HTTP_WWWDOT (0x01)
  109. #define NDEF_URIPREFIX_HTTPS_WWWDOT (0x02)
  110. #define NDEF_URIPREFIX_HTTP (0x03)
  111. #define NDEF_URIPREFIX_HTTPS (0x04)
  112. #define NDEF_URIPREFIX_TEL (0x05)
  113. #define NDEF_URIPREFIX_MAILTO (0x06)
  114. #define NDEF_URIPREFIX_FTP_ANONAT (0x07)
  115. #define NDEF_URIPREFIX_FTP_FTPDOT (0x08)
  116. #define NDEF_URIPREFIX_FTPS (0x09)
  117. #define NDEF_URIPREFIX_SFTP (0x0A)
  118. #define NDEF_URIPREFIX_SMB (0x0B)
  119. #define NDEF_URIPREFIX_NFS (0x0C)
  120. #define NDEF_URIPREFIX_FTP (0x0D)
  121. #define NDEF_URIPREFIX_DAV (0x0E)
  122. #define NDEF_URIPREFIX_NEWS (0x0F)
  123. #define NDEF_URIPREFIX_TELNET (0x10)
  124. #define NDEF_URIPREFIX_IMAP (0x11)
  125. #define NDEF_URIPREFIX_RTSP (0x12)
  126. #define NDEF_URIPREFIX_URN (0x13)
  127. #define NDEF_URIPREFIX_POP (0x14)
  128. #define NDEF_URIPREFIX_SIP (0x15)
  129. #define NDEF_URIPREFIX_SIPS (0x16)
  130. #define NDEF_URIPREFIX_TFTP (0x17)
  131. #define NDEF_URIPREFIX_BTSPP (0x18)
  132. #define NDEF_URIPREFIX_BTL2CAP (0x19)
  133. #define NDEF_URIPREFIX_BTGOEP (0x1A)
  134. #define NDEF_URIPREFIX_TCPOBEX (0x1B)
  135. #define NDEF_URIPREFIX_IRDAOBEX (0x1C)
  136. #define NDEF_URIPREFIX_FILE (0x1D)
  137. #define NDEF_URIPREFIX_URN_EPC_ID (0x1E)
  138. #define NDEF_URIPREFIX_URN_EPC_TAG (0x1F)
  139. #define NDEF_URIPREFIX_URN_EPC_PAT (0x20)
  140. #define NDEF_URIPREFIX_URN_EPC_RAW (0x21)
  141. #define NDEF_URIPREFIX_URN_EPC (0x22)
  142. #define NDEF_URIPREFIX_URN_NFC (0x23)
  143. #define PN532_GPIO_VALIDATIONBIT (0x80)
  144. /* Official PN532 Errors Definitions */
  145. #define PN532_ERROR_NONE (0x00)
  146. // Time Out, the target has not answered
  147. #define PN532_ERROR_TIMEOUT (0x01)
  148. // A CRC error has been detected by the CIU
  149. #define PN532_ERROR_CRC (0x02)
  150. // A Parity error has been detected by the CIU
  151. #define PN532_ERROR_PARITY (0x03)
  152. // During an anti-collision/select operation (ISO/IEC14443-3 Type A and
  153. // ISO/IEC18092 106 kbps passive mode), an erroneous Bit Count has been
  154. // detected
  155. #define PN532_ERROR_COLLISION_BITCOUNT (0x04)
  156. // Framing error during MIFARE operation
  157. #define PN532_ERROR_MIFARE_FRAMING (0x05)
  158. // An abnormal bit-collision has been detected during bit wise
  159. // anti-collision at 106 kbps
  160. #define PN532_ERROR_COLLISION_BITCOLLISION (0x06)
  161. // Communication buffer size insufficien
  162. #define PN532_ERROR_NOBUFS (0x07)
  163. // RF Buffer overflow has been detected by the CI
  164. #define PN532_ERROR_RFNOBUFS (0x09)
  165. // In active communication mode, the RF field has not been switched on
  166. // in time by the counterpart (as defined in NFCIP-1 standard
  167. #define PN532_ERROR_ACTIVE_TOOSLOW (0x0a)
  168. // RF Protocol error
  169. #define PN532_ERROR_RFPROTO (0x0b)
  170. // Temperature error: the internal temperature sensor has detected
  171. // overheating, and therefore has automatically switched off the
  172. // antenna drivers
  173. #define PN532_ERROR_TOOHOT (0x0d)
  174. // Internal buffer overflow
  175. #define PN532_ERROR_INTERNAL_NOBUFS (0x0e)
  176. // Invalid parameter (range, format...)
  177. #define PN532_ERROR_INVAL (0x10)
  178. // DEP Protocol: The PN533 configured in target mode does not support
  179. // the command received from the initiator (the command received is not
  180. // one of the following: ATR_REQ, WUP_REQ, PSL_REQ, DEP_REQ, DSL_REQ,
  181. // RLS_REQ)
  182. #define PN532_ERROR_DEP_INVALID_COMMAND (0x12)
  183. // DEP Protocol, MIFARE or ISO/IEC14443-4: The data format does not
  184. // match to the specification. Depending on the RF protocol used, it
  185. // can be: Bad length of RF received frame, Incorrect value of PCB or
  186. // PFB, Invalid or unexpected RF received frame, NAD or DID incoherence.
  187. #define PN532_ERROR_DEP_BADDATA (0x13)
  188. // MIFARE: Authentication error
  189. #define PN532_ERROR_MIFARE_AUTH (0x14)
  190. // Target or Initiator does not support NFC Secur
  191. #define PN532_ERROR_NOSECURE (0x18)
  192. // I2C bus line is Busy. A TDA transaction is on going
  193. #define PN532_ERROR_I2CBUSY (0x19)
  194. // ISO/IEC14443-3: UID Check byte is wrong
  195. #define PN532_ERROR_UIDCHECKSUM (0x23)
  196. // DEP Protocol: Invalid device state, the system is in a state which
  197. // does not allow the operation
  198. #define PN532_ERROR_DEPSTATE (0x25)
  199. // Operation not allowed in this configuration (host controller
  200. // interface)
  201. #define PN532_ERROR_HCIINVAL (0x26)
  202. // This command is not acceptable due to the current context of the
  203. // PN533 (Initiator vs. Target, unknown target number, Target not in the
  204. // good state, ...)
  205. #define PN532_ERROR_CONTEXT (0x27)
  206. // The PN533 configured as target has been released by its initiator
  207. #define PN532_ERROR_RELEASED (0x29)
  208. // PN533 and ISO/IEC14443-3B only: the ID of the card does not match,
  209. // meaning that the expected card has been exchanged with another one.
  210. #define PN532_ERROR_CARDSWAPPED (0x2a)
  211. // PN533 and ISO/IEC14443-3B only: the card previously activated has
  212. // disappeared.
  213. #define PN532_ERROR_NOCARD (0x2b)
  214. // Mismatch between the NFCID3 initiator and the NFCID3 target in DEP
  215. // 212/424 kbps passive.
  216. #define PN532_ERROR_MISMATCH (0x2c)
  217. // An over-current event has been detected
  218. #define PN532_ERROR_OVERCURRENT (0x2d)
  219. // NAD missing in DEP frame
  220. #define PN532_ERROR_NONAD (0x2e)
  221. /* End: Official PN532 Errors Definitions */
  222. // Other Error Definitions
  223. #define PN532_STATUS_ERROR (-1)
  224. #define PN532_STATUS_OK (0)
  225. typedef struct _PN532 {
  226. int (*reset)(void);
  227. int (*read_data)(uint8_t* data, uint16_t count);
  228. int (*write_data)(uint8_t *data, uint16_t count);
  229. bool (*wait_ready)(uint32_t timeout);
  230. int (*wakeup)(void);
  231. void (*log)(const char* log);
  232. } PN532;
  233. int PN532_WriteFrame(PN532* pn532, uint8_t* data, uint16_t length);
  234. int PN532_ReadFrame(PN532* pn532, uint8_t* buff, uint16_t length);
  235. int PN532_CallFunction(PN532* pn532, uint8_t command, uint8_t* response, uint16_t response_length, uint8_t* params, uint16_t params_length, uint32_t timeout);
  236. int PN532_GetFirmwareVersion(PN532* pn532, uint8_t* version);
  237. int PN532_SamConfiguration(PN532* pn532);
  238. int PN532_ReadPassiveTarget(PN532* pn532, uint8_t* response, uint8_t card_baud, uint32_t timeout);
  239. int PN532_MifareClassicAuthenticateBlock(PN532* pn532, uint8_t* uid, uint8_t uid_length, uint16_t block_number, uint16_t key_number, uint8_t* key);
  240. int PN532_MifareClassicReadBlock(PN532* pn532, uint8_t* response, uint16_t block_number);
  241. int PN532_MifareClassicWriteBlock(PN532* pn532, uint8_t* data, uint16_t block_number);
  242. int PN532_Ntag2xxReadBlock(PN532* pn532, uint8_t* response, uint16_t block_number);
  243. int PN532_Ntag2xxWriteBlock(PN532* pn532, uint8_t* data, uint16_t block_number);
  244. int PN532_ReadGpio(PN532* pn532, uint8_t* pins_state);
  245. bool PN532_ReadGpioP(PN532* pn532, uint8_t pin_number);
  246. bool PN532_ReadGpioI(PN532* pn532, uint8_t pin_number);
  247. int PN532_WriteGpio(PN532* pn532, uint8_t* pins_state);
  248. int PN532_WriteGpioP(PN532* pn532, uint8_t pin_number, bool pin_state);
  249. #ifdef __cplusplus
  250. }
  251. #endif
  252. #endif /* PN532_H */
  253. /* End of file */