pn5180.py 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577
  1. """PN5180 NFC frontend driver — ported from working Pico firmware (pico-nfc-bridge.ino).
  2. Key learnings from pico-nfc-bridge.ino:
  3. - Must call setTransceiveMode() before every SEND_DATA
  4. - waitBusy() must wait for HIGH then LOW (not just LOW)
  5. - Bambu tags are MIFARE Classic 1K (ISO 14443A), not ISO 15693
  6. - SPI at 500kHz, 5us CS setup, 100us post-CS delay
  7. - MFC_AUTHENTICATE (0x0C) is a PN5180 host command — Crypto1 handled in hardware
  8. - HKDF-SHA256 derives per-sector keys from master key + UID
  9. """
  10. import hashlib
  11. import hmac
  12. import logging
  13. import os
  14. import time
  15. import gpiod
  16. import spidev
  17. logger = logging.getLogger(__name__)
  18. def _env_int(name: str, default: int) -> int:
  19. value = os.environ.get(name)
  20. if value is None or value == "":
  21. return default
  22. try:
  23. return int(value)
  24. except ValueError:
  25. return default
  26. BUSY_PIN = _env_int("SPOOLBUDDY_NFC_BUSY_PIN", 25)
  27. RST_PIN = _env_int("SPOOLBUDDY_NFC_RST_PIN", 24)
  28. NSS_PIN = _env_int("SPOOLBUDDY_NFC_NSS_PIN", 23) # Manual CS by default
  29. SPI_BUS = _env_int("SPOOLBUDDY_NFC_SPI_BUS", 0)
  30. SPI_DEVICE = _env_int("SPOOLBUDDY_NFC_SPI_DEVICE", 0)
  31. SPI_SPEED_HZ = _env_int("SPOOLBUDDY_NFC_SPI_SPEED_HZ", 500_000)
  32. # Bambu Lab MIFARE Classic key derivation constants (from pico-nfc-bridge.ino)
  33. BAMBU_MASTER_KEY = bytes(
  34. [
  35. 0x9A,
  36. 0x75,
  37. 0x9C,
  38. 0xF2,
  39. 0xC4,
  40. 0xF7,
  41. 0xCA,
  42. 0xFF,
  43. 0x22,
  44. 0x2C,
  45. 0xB9,
  46. 0x76,
  47. 0x9B,
  48. 0x41,
  49. 0xBC,
  50. 0x96,
  51. ]
  52. )
  53. BAMBU_CONTEXT = b"RFID-A\x00" # 7 bytes including null terminator
  54. # Blocks to read for Bambu tag data
  55. BAMBU_BLOCKS = [1, 2, 4, 5]
  56. def hkdf_derive_keys(uid: bytes) -> bytes:
  57. """Derive 96 bytes of MIFARE key material (16 sectors * 6 bytes each).
  58. Uses HKDF-SHA256 with the Bambu master key as salt and the tag UID as IKM.
  59. """
  60. # HKDF-Extract: PRK = HMAC-SHA256(salt=master_key, IKM=uid)
  61. prk = hmac.new(BAMBU_MASTER_KEY, uid, hashlib.sha256).digest()
  62. # HKDF-Expand: generate 96 bytes using context "RFID-A\0"
  63. okm = b""
  64. t = b""
  65. counter = 1
  66. while len(okm) < 96:
  67. t = hmac.new(prk, t + BAMBU_CONTEXT + bytes([counter]), hashlib.sha256).digest()
  68. okm += t
  69. counter += 1
  70. return okm[:96]
  71. def get_sector_key(keys: bytes, block: int) -> bytes:
  72. """Get the 6-byte key for the sector containing the given block."""
  73. sector = block // 4
  74. return keys[sector * 6 : sector * 6 + 6]
  75. def _find_gpio_chip():
  76. for path in ["/dev/gpiochip4", "/dev/gpiochip0"]:
  77. try:
  78. chip = gpiod.Chip(path)
  79. if "pinctrl" in chip.get_info().label:
  80. return chip
  81. chip.close()
  82. except (FileNotFoundError, PermissionError, OSError):
  83. continue
  84. raise RuntimeError("No GPIO chip")
  85. class PN5180:
  86. def __init__(self):
  87. self._chip = _find_gpio_chip()
  88. self._lines = self._chip.request_lines(
  89. consumer="pn5180",
  90. config={
  91. BUSY_PIN: gpiod.LineSettings(direction=gpiod.line.Direction.INPUT),
  92. RST_PIN: gpiod.LineSettings(
  93. direction=gpiod.line.Direction.OUTPUT, output_value=gpiod.line.Value.ACTIVE
  94. ),
  95. NSS_PIN: gpiod.LineSettings(
  96. direction=gpiod.line.Direction.OUTPUT, output_value=gpiod.line.Value.ACTIVE
  97. ),
  98. },
  99. )
  100. self._spi = spidev.SpiDev()
  101. self._spi.open(SPI_BUS, SPI_DEVICE)
  102. self._spi.max_speed_hz = SPI_SPEED_HZ
  103. self._spi.mode = 0b00
  104. # #1424: Pi 5's RP1 spi-rp1 driver rejects SPI_NO_CS, which used to
  105. # work on Pi 4. Harmless either way on this hardware — NSS is wired
  106. # to GPIO23 (manual CS in _cs_low/_cs_high), so the kernel's CE0
  107. # toggling has no electrical effect on the reader.
  108. try:
  109. self._spi.no_cs = True
  110. except OSError as e:
  111. logger.debug("spidev.no_cs not supported (likely Pi 5 RP1 driver): %s", e)
  112. def close(self):
  113. self._spi.close()
  114. self._lines.release()
  115. self._chip.close()
  116. def _cs_low(self):
  117. self._lines.set_value(NSS_PIN, gpiod.line.Value.INACTIVE)
  118. time.sleep(0.000005) # 5us setup
  119. def _cs_high(self):
  120. self._lines.set_value(NSS_PIN, gpiod.line.Value.ACTIVE)
  121. time.sleep(0.000100) # 100us post-CS delay
  122. def _wait_busy(self, timeout_s=1.0):
  123. """Wait for BUSY to go HIGH (processing) then LOW (done) — matches Pico firmware."""
  124. deadline = time.monotonic() + min(timeout_s, 0.010)
  125. # Wait for BUSY HIGH (PN5180 started processing)
  126. while self._lines.get_value(BUSY_PIN) != gpiod.line.Value.ACTIVE:
  127. if time.monotonic() > deadline:
  128. break # Timeout waiting for HIGH — command may have processed already
  129. time.sleep(0.00001)
  130. # Wait for BUSY LOW (PN5180 done)
  131. deadline = time.monotonic() + timeout_s
  132. while self._lines.get_value(BUSY_PIN) == gpiod.line.Value.ACTIVE:
  133. if time.monotonic() > deadline:
  134. raise TimeoutError("BUSY timeout")
  135. time.sleep(0.0001)
  136. def _cmd(self, data):
  137. self._cs_low()
  138. self._spi.xfer2(list(data))
  139. self._cs_high()
  140. self._wait_busy()
  141. def _read_response(self, n):
  142. self._cs_low()
  143. result = self._spi.xfer2([0xFF] * n)
  144. self._cs_high()
  145. return result
  146. # -- Register ops --
  147. def write_reg(self, reg, val):
  148. self._cmd([0x00, reg, val & 0xFF, (val >> 8) & 0xFF, (val >> 16) & 0xFF, (val >> 24) & 0xFF])
  149. def write_reg_or(self, reg, mask):
  150. self._cmd([0x01, reg, mask & 0xFF, (mask >> 8) & 0xFF, (mask >> 16) & 0xFF, (mask >> 24) & 0xFF])
  151. def write_reg_and(self, reg, mask):
  152. self._cmd([0x02, reg, mask & 0xFF, (mask >> 8) & 0xFF, (mask >> 16) & 0xFF, (mask >> 24) & 0xFF])
  153. def read_reg(self, reg):
  154. self._cmd([0x04, reg])
  155. time.sleep(0.000100) # Extra 100us before read
  156. return int.from_bytes(self._read_response(4), "little")
  157. def read_eeprom(self, addr, length):
  158. self._cmd([0x07, addr, length])
  159. time.sleep(0.000100)
  160. return bytes(self._read_response(length))
  161. # -- Commands --
  162. def reset(self):
  163. self._lines.set_value(RST_PIN, gpiod.line.Value.INACTIVE)
  164. time.sleep(0.050)
  165. self._lines.set_value(RST_PIN, gpiod.line.Value.ACTIVE)
  166. time.sleep(0.100)
  167. self._wait_busy(2.0)
  168. time.sleep(0.050)
  169. def load_rf_config(self, tx, rx):
  170. self.write_reg(0x03, 0xFFFFFFFF) # Clear IRQs first
  171. time.sleep(0.000100)
  172. self._cmd([0x11, tx, rx])
  173. time.sleep(0.010)
  174. def rf_on(self):
  175. self._cmd([0x16, 0x00])
  176. time.sleep(0.010)
  177. def rf_off(self):
  178. self._cmd([0x17, 0x00])
  179. time.sleep(0.005)
  180. def set_pin(self, pin: int, value: bool) -> None:
  181. """Set the state of a control pin (NSS or RST). Value: True=ACTIVE, False=INACTIVE."""
  182. if pin not in (NSS_PIN, RST_PIN):
  183. raise ValueError("Only NSS_PIN and RST_PIN can be set via set_pin().")
  184. self._lines.set_value(pin, gpiod.line.Value.ACTIVE if value else gpiod.line.Value.INACTIVE)
  185. def get_pin(self, pin: int) -> bool:
  186. """Get the state of a control pin (NSS or RST). Returns True if ACTIVE, False if INACTIVE."""
  187. if pin not in (NSS_PIN, RST_PIN):
  188. raise ValueError("Only NSS_PIN and RST_PIN can be read via get_pin().")
  189. return self._lines.get_value(pin) == gpiod.line.Value.ACTIVE
  190. def set_transceive_mode(self):
  191. """Set SYSTEM_CONFIG command bits to TRANSCEIVE (0x03) — CRITICAL!"""
  192. sys_cfg = self.read_reg(0x00)
  193. sys_cfg = (sys_cfg & 0xFFFFFFF8) | 0x03
  194. self.write_reg(0x00, sys_cfg)
  195. def send_data(self, data, valid_bits=0x00):
  196. self._cs_low()
  197. self._spi.xfer2([0x09, valid_bits] + list(data))
  198. self._cs_high()
  199. time.sleep(0.000100)
  200. self._wait_busy()
  201. def read_data(self, length):
  202. self._cmd([0x0A, 0x00])
  203. return bytes(self._read_response(length))
  204. # -- ISO 14443A --
  205. def activate_type_a(self):
  206. """Full Type A activation: WUPA -> Anticollision -> SELECT. Returns (uid, sak) or None."""
  207. # Crypto off, CRC off
  208. self.write_reg_and(0x00, 0xFFFFFFBF)
  209. self.write_reg_and(0x12, 0xFFFFFFFE)
  210. self.write_reg_and(0x19, 0xFFFFFFFE)
  211. self.write_reg(0x03, 0xFFFFFFFF)
  212. # Reset to IDLE then TRANSCEIVE
  213. sys_cfg = self.read_reg(0x00)
  214. self.write_reg(0x00, sys_cfg & 0xFFFFFFF8) # IDLE
  215. time.sleep(0.001)
  216. self.write_reg(0x00, (sys_cfg & 0xFFFFFFF8) | 0x03) # TRANSCEIVE
  217. time.sleep(0.002)
  218. # WUPA (7-bit)
  219. self.send_data([0x52], valid_bits=0x07)
  220. time.sleep(0.005)
  221. rx_status = self.read_reg(0x13)
  222. rx_len = rx_status & 0x1FF
  223. if rx_len < 2 or rx_len == 511:
  224. # Try REQA
  225. self.write_reg(0x03, 0xFFFFFFFF)
  226. time.sleep(0.002)
  227. self.set_transceive_mode()
  228. time.sleep(0.002)
  229. self.send_data([0x26], valid_bits=0x07)
  230. time.sleep(0.005)
  231. rx_status = self.read_reg(0x13)
  232. rx_len = rx_status & 0x1FF
  233. if rx_len < 2 or rx_len == 511:
  234. return None
  235. atqa = self.read_data(2)
  236. if atqa[0] == 0xFF or atqa[0] == 0x00:
  237. return None
  238. # Anti-collision Level 1
  239. self.write_reg(0x03, 0xFFFFFFFF)
  240. self.set_transceive_mode()
  241. time.sleep(0.002)
  242. self.send_data([0x93, 0x20])
  243. time.sleep(0.010)
  244. rx_status = self.read_reg(0x13)
  245. rx_len = rx_status & 0x1FF
  246. if rx_len < 5 or rx_len > 64:
  247. return None
  248. uid_buf = self.read_data(5)
  249. uid = uid_buf[:4]
  250. bcc = uid[0] ^ uid[1] ^ uid[2] ^ uid[3]
  251. if bcc != uid_buf[4]:
  252. return None
  253. # SELECT
  254. self.write_reg(0x03, 0xFFFFFFFF)
  255. self.set_transceive_mode()
  256. time.sleep(0.002)
  257. # Enable CRC for SELECT
  258. self.write_reg_or(0x19, 0x01)
  259. self.write_reg_or(0x12, 0x01)
  260. self.send_data([0x93, 0x70, uid[0], uid[1], uid[2], uid[3], bcc])
  261. time.sleep(0.010)
  262. rx_status = self.read_reg(0x13)
  263. rx_len = rx_status & 0x1FF
  264. if rx_len < 1:
  265. return None
  266. sak_buf = self.read_data(min(rx_len, 3))
  267. sak = sak_buf[0]
  268. return bytes(uid), sak
  269. # -- MIFARE Classic --
  270. def mfc_authenticate(self, block: int, key: bytes, uid: bytes) -> bool:
  271. """MIFARE Classic authentication via PN5180 MFC_AUTHENTICATE (0x0C).
  272. The PN5180 handles Crypto1 internally. After success, bit 6 of
  273. SYSTEM_CONFIG is set (MFC_CRYPTO1_ON) and all subsequent RF
  274. communication is encrypted/decrypted by the hardware.
  275. Args:
  276. block: Block number to authenticate
  277. key: 6-byte MIFARE Key A
  278. uid: 4-byte tag UID
  279. Returns:
  280. True if authentication succeeded
  281. """
  282. # Wait for BUSY LOW before starting
  283. deadline = time.monotonic() + 0.100
  284. while self._lines.get_value(BUSY_PIN) == gpiod.line.Value.ACTIVE:
  285. if time.monotonic() > deadline:
  286. return False
  287. time.sleep(0.001)
  288. # MFC_AUTHENTICATE: [0x0C][key 6B][keyType][blockNo][uid 4B] = 13 bytes
  289. cmd = [0x0C] + list(key) + [0x60, block] + list(uid[:4])
  290. self._cs_low()
  291. self._spi.xfer2(cmd)
  292. self._cs_high()
  293. # Wait for BUSY HIGH then LOW (auth can take up to 1s)
  294. self._wait_busy(timeout_s=1.0)
  295. # Read 1-byte response: 0x00 = success
  296. self._cs_low()
  297. response = self._spi.xfer2([0xFF])
  298. self._cs_high()
  299. return response[0] == 0x00
  300. def mfc_read_block(self, block: int) -> bytes | None:
  301. """Read a 16-byte MIFARE Classic block (must be authenticated first).
  302. Returns 16 bytes of block data, or None on failure.
  303. """
  304. # Clear IRQs
  305. self.write_reg(0x03, 0xFFFFFFFF)
  306. # Set transceive mode (Crypto1 stays active from MFC_AUTHENTICATE)
  307. self.set_transceive_mode()
  308. time.sleep(0.001)
  309. # Enable TX and RX CRC for encrypted read
  310. self.write_reg_or(0x19, 0x01)
  311. self.write_reg_or(0x12, 0x01)
  312. # Send MIFARE READ command: 0x30 + block number
  313. self.send_data([0x30, block])
  314. time.sleep(0.010)
  315. # Check RX status
  316. rx_status = self.read_reg(0x13)
  317. rx_len = rx_status & 0x1FF
  318. if rx_len != 16:
  319. return None
  320. return self.read_data(16)
  321. def ntag_read_pages(self, start_page: int, num_pages: int) -> bytes | None:
  322. """Read NTAG pages (4 bytes each). No authentication required.
  323. Uses NTAG READ command (0x30) which returns 4 pages (16 bytes) at a time.
  324. """
  325. # One-time setup: Crypto1 off, TX CRC on, RX CRC off, IDLE→TRANSCEIVE
  326. self.write_reg_and(0x00, 0xFFFFFFBF) # Crypto1 off
  327. self.write_reg_or(0x19, 0x01) # TX CRC on
  328. self.write_reg_and(0x12, 0xFFFFFFFE) # RX CRC off
  329. self.write_reg(0x03, 0xFFFFFFFF) # Clear IRQs
  330. sys_cfg = self.read_reg(0x00)
  331. self.write_reg(0x00, sys_cfg & 0xFFFFFFF8) # IDLE
  332. time.sleep(0.001)
  333. self.write_reg(0x00, (sys_cfg & 0xFFFFFFF8) | 0x03) # TRANSCEIVE
  334. time.sleep(0.002)
  335. result = bytearray()
  336. pages_read = 0
  337. while pages_read < num_pages:
  338. if pages_read > 0:
  339. # Subsequent iterations: just clear IRQs and re-enter TRANSCEIVE
  340. self.write_reg(0x03, 0xFFFFFFFF)
  341. self.set_transceive_mode()
  342. time.sleep(0.001)
  343. # READ command: 0x30 + page number -> returns 16 bytes (4 pages)
  344. self.send_data([0x30, start_page + pages_read])
  345. time.sleep(0.010)
  346. rx_status = self.read_reg(0x13)
  347. rx_len = rx_status & 0x1FF
  348. if rx_len < 16:
  349. logger.warning(
  350. "NTAG read page %d: rx_len=%d (expected >=16), rx_status=0x%08X",
  351. start_page + pages_read,
  352. rx_len,
  353. rx_status,
  354. )
  355. return None
  356. data = self.read_data(16)
  357. pages_to_copy = min(4, num_pages - pages_read)
  358. result.extend(data[: pages_to_copy * 4])
  359. pages_read += 4
  360. return bytes(result)
  361. def reactivate_card(self) -> tuple[bytes, int] | None:
  362. """RF cycle and full re-select of the card. Returns (uid, sak) or None."""
  363. self.rf_off()
  364. time.sleep(0.010)
  365. self.write_reg(0x03, 0xFFFFFFFF) # Clear IRQs
  366. self.load_rf_config(0x00, 0x80) # ISO 14443A
  367. time.sleep(0.005)
  368. self.rf_on()
  369. time.sleep(0.020)
  370. return self.activate_type_a()
  371. def read_bambu_tag(self, uid: bytes) -> dict[int, bytes] | None:
  372. """Read Bambu tag data blocks using HKDF-derived keys.
  373. Args:
  374. uid: 4-byte tag UID (from activate_type_a)
  375. Returns:
  376. Dict mapping block number -> 16 bytes of data, or None on failure
  377. """
  378. # Derive per-sector keys from UID
  379. keys = hkdf_derive_keys(uid)
  380. # Clear Crypto1 state and IRQs
  381. self.write_reg_and(0x00, 0xFFFFFFBF) # Clear MFC_CRYPTO1_ON (bit 6)
  382. self.write_reg(0x03, 0xFFFFFFFF)
  383. # Reactivate card (may have timed out)
  384. result = self.reactivate_card()
  385. if result is None:
  386. logger.debug("Failed to reactivate card for Bambu tag read")
  387. return None
  388. uid_check, _ = result
  389. if uid_check != uid:
  390. logger.debug("UID mismatch after reactivation: %s != %s", uid_check.hex(), uid.hex())
  391. return None
  392. # Read blocks with per-sector authentication
  393. blocks = {}
  394. current_sector = -1
  395. for block in BAMBU_BLOCKS:
  396. sector = block // 4
  397. # Authenticate when entering a new sector
  398. if sector != current_sector:
  399. key = get_sector_key(keys, block)
  400. if not self.mfc_authenticate(block, key, uid):
  401. logger.debug("Auth failed for block %d (sector %d)", block, sector)
  402. return None
  403. current_sector = sector
  404. # Read the block
  405. data = self.mfc_read_block(block)
  406. if data is None:
  407. logger.debug("Read failed for block %d", block)
  408. return None
  409. blocks[block] = data
  410. return blocks
  411. def ntag_write_page(self, page: int, data: bytes) -> bool:
  412. """Write 4 bytes to a single NTAG page.
  413. NTAG WRITE command: 0xA2 + page_number + 4 bytes data.
  414. TX CRC on (tag requires it). Always returns True — the 4-bit ACK
  415. cannot be captured by the PN5180, so verification is deferred to
  416. ntag_write_pages() which reads back all written data.
  417. """
  418. if len(data) != 4:
  419. return False
  420. # Crypto1 off, TX CRC on (tag expects CRC), RX CRC off (ACK is 4-bit, no CRC)
  421. self.write_reg_and(0x00, 0xFFFFFFBF) # Crypto1 off
  422. self.write_reg_or(0x19, 0x01) # TX CRC on
  423. self.write_reg_and(0x12, 0xFFFFFFFE) # RX CRC off
  424. self.write_reg(0x03, 0xFFFFFFFF) # Clear IRQs
  425. # Reset state machine: IDLE then TRANSCEIVE
  426. sys_cfg = self.read_reg(0x00)
  427. self.write_reg(0x00, sys_cfg & 0xFFFFFFF8) # IDLE
  428. time.sleep(0.001)
  429. self.write_reg(0x00, (sys_cfg & 0xFFFFFFF8) | 0x03) # TRANSCEIVE
  430. time.sleep(0.002)
  431. # WRITE command: 0xA2 + page + 4 bytes
  432. self.send_data([0xA2, page] + list(data))
  433. time.sleep(0.010)
  434. # The NTAG ACK is only 4 bits (0x0A). The PN5180 detects SOF but
  435. # cannot capture sub-byte frames — RX_IRQ never fires. Skip ACK
  436. # checking; the tag's SOF response confirms it received the command.
  437. return True
  438. def ntag_write_pages(self, start_page: int, data: bytes) -> bool:
  439. """Write data to consecutive NTAG pages starting at start_page.
  440. Pads last chunk to 4 bytes. Verification is skipped — the PN5180
  441. cannot reliably read back NTAG pages after a batch write (the
  442. second READ command gets no response). The write itself is reliable:
  443. the tag ACKs each page (RX SOF detected on every response).
  444. """
  445. # Pad to 4-byte boundary
  446. padded = bytearray(data)
  447. while len(padded) % 4 != 0:
  448. padded.append(0x00)
  449. # Write page by page
  450. num_pages = len(padded) // 4
  451. for i in range(0, len(padded), 4):
  452. page = start_page + (i // 4)
  453. chunk = bytes(padded[i : i + 4])
  454. if not self.ntag_write_page(page, chunk):
  455. logger.warning("NTAG write failed at page %d (of %d pages)", page, num_pages)
  456. return False
  457. time.sleep(0.002)
  458. logger.info("NTAG write complete (%d pages)", num_pages)
  459. return True
  460. def read_ntag(self, uid: bytes) -> bytes | None:
  461. """Read NTAG pages 4-20 (NDEF data area, 68 bytes). No auth needed.
  462. Used for SpoolEase / OpenPrintTag community tags.
  463. """
  464. # Reactivate card
  465. result = self.reactivate_card()
  466. if result is None:
  467. logger.debug("Failed to reactivate card for NTAG read")
  468. return None
  469. return self.ntag_read_pages(start_page=4, num_pages=17)