read_tag.py 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685
  1. #!/usr/bin/env python3
  2. """PN5180 NFC tag reader — ported from working Pico firmware (pico-nfc-bridge.ino).
  3. Key learnings from pico-nfc-bridge.ino:
  4. - Must call setTransceiveMode() before every SEND_DATA
  5. - waitBusy() must wait for HIGH then LOW (not just LOW)
  6. - Bambu tags are MIFARE Classic 1K (ISO 14443A), not ISO 15693
  7. - SPI at 500kHz, 5µs CS setup, 100µs post-CS delay
  8. - MFC_AUTHENTICATE (0x0C) is a PN5180 host command — Crypto1 handled in hardware
  9. - HKDF-SHA256 derives per-sector keys from master key + UID
  10. """
  11. import hashlib
  12. import hmac
  13. import os
  14. import sys
  15. import time
  16. import gpiod
  17. import spidev
  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. self._spi.no_cs = True
  105. def close(self):
  106. self._spi.close()
  107. self._lines.release()
  108. self._chip.close()
  109. def _cs_low(self):
  110. self._lines.set_value(NSS_PIN, gpiod.line.Value.INACTIVE)
  111. time.sleep(0.000005) # 5µs setup
  112. def _cs_high(self):
  113. self._lines.set_value(NSS_PIN, gpiod.line.Value.ACTIVE)
  114. time.sleep(0.000100) # 100µs post-CS delay
  115. def _wait_busy(self, timeout_s=1.0):
  116. """Wait for BUSY to go HIGH (processing) then LOW (done) — matches Pico firmware."""
  117. deadline = time.monotonic() + min(timeout_s, 0.010)
  118. # Wait for BUSY HIGH (PN5180 started processing)
  119. while self._lines.get_value(BUSY_PIN) != gpiod.line.Value.ACTIVE:
  120. if time.monotonic() > deadline:
  121. break # Timeout waiting for HIGH — command may have processed already
  122. time.sleep(0.00001)
  123. # Wait for BUSY LOW (PN5180 done)
  124. deadline = time.monotonic() + timeout_s
  125. while self._lines.get_value(BUSY_PIN) == gpiod.line.Value.ACTIVE:
  126. if time.monotonic() > deadline:
  127. raise TimeoutError("BUSY timeout")
  128. time.sleep(0.0001)
  129. def _cmd(self, data):
  130. self._cs_low()
  131. self._spi.xfer2(list(data))
  132. self._cs_high()
  133. self._wait_busy()
  134. def _read_response(self, n):
  135. self._cs_low()
  136. result = self._spi.xfer2([0xFF] * n)
  137. self._cs_high()
  138. return result
  139. # -- Register ops --
  140. def write_reg(self, reg, val):
  141. self._cmd([0x00, reg, val & 0xFF, (val >> 8) & 0xFF, (val >> 16) & 0xFF, (val >> 24) & 0xFF])
  142. def write_reg_or(self, reg, mask):
  143. self._cmd([0x01, reg, mask & 0xFF, (mask >> 8) & 0xFF, (mask >> 16) & 0xFF, (mask >> 24) & 0xFF])
  144. def write_reg_and(self, reg, mask):
  145. self._cmd([0x02, reg, mask & 0xFF, (mask >> 8) & 0xFF, (mask >> 16) & 0xFF, (mask >> 24) & 0xFF])
  146. def read_reg(self, reg):
  147. self._cmd([0x04, reg])
  148. time.sleep(0.000100) # Extra 100µs before read
  149. return int.from_bytes(self._read_response(4), "little")
  150. def read_eeprom(self, addr, length):
  151. self._cmd([0x07, addr, length])
  152. time.sleep(0.000100)
  153. return bytes(self._read_response(length))
  154. # -- Commands --
  155. def reset(self):
  156. self._lines.set_value(RST_PIN, gpiod.line.Value.INACTIVE)
  157. time.sleep(0.050)
  158. self._lines.set_value(RST_PIN, gpiod.line.Value.ACTIVE)
  159. time.sleep(0.100)
  160. self._wait_busy(2.0)
  161. time.sleep(0.050)
  162. def load_rf_config(self, tx, rx):
  163. self.write_reg(0x03, 0xFFFFFFFF) # Clear IRQs first
  164. time.sleep(0.000100)
  165. self._cmd([0x11, tx, rx])
  166. time.sleep(0.010)
  167. def rf_on(self):
  168. self._cmd([0x16, 0x00])
  169. time.sleep(0.010)
  170. def rf_off(self):
  171. self._cmd([0x17, 0x00])
  172. time.sleep(0.005)
  173. def set_transceive_mode(self):
  174. """Set SYSTEM_CONFIG command bits to TRANSCEIVE (0x03) — CRITICAL!"""
  175. sys_cfg = self.read_reg(0x00)
  176. sys_cfg = (sys_cfg & 0xFFFFFFF8) | 0x03
  177. self.write_reg(0x00, sys_cfg)
  178. def send_data(self, data, valid_bits=0x00):
  179. self._cs_low()
  180. self._spi.xfer2([0x09, valid_bits] + list(data))
  181. self._cs_high()
  182. time.sleep(0.000100)
  183. self._wait_busy()
  184. def read_data(self, length):
  185. self._cmd([0x0A, 0x00])
  186. return bytes(self._read_response(length))
  187. # -- ISO 14443A --
  188. def activate_type_a(self):
  189. """Full Type A activation: WUPA -> Anticollision -> SELECT. Returns (uid, sak) or None."""
  190. # Crypto off, CRC off
  191. self.write_reg_and(0x00, 0xFFFFFFBF)
  192. self.write_reg_and(0x12, 0xFFFFFFFE)
  193. self.write_reg_and(0x19, 0xFFFFFFFE)
  194. self.write_reg(0x03, 0xFFFFFFFF)
  195. # Reset to IDLE then TRANSCEIVE
  196. sys_cfg = self.read_reg(0x00)
  197. self.write_reg(0x00, sys_cfg & 0xFFFFFFF8) # IDLE
  198. time.sleep(0.001)
  199. self.write_reg(0x00, (sys_cfg & 0xFFFFFFF8) | 0x03) # TRANSCEIVE
  200. time.sleep(0.002)
  201. # WUPA (7-bit)
  202. self.send_data([0x52], valid_bits=0x07)
  203. time.sleep(0.005)
  204. rx_status = self.read_reg(0x13)
  205. rx_len = rx_status & 0x1FF
  206. if rx_len < 2 or rx_len == 511:
  207. # Try REQA
  208. self.write_reg(0x03, 0xFFFFFFFF)
  209. time.sleep(0.002)
  210. self.set_transceive_mode()
  211. time.sleep(0.002)
  212. self.send_data([0x26], valid_bits=0x07)
  213. time.sleep(0.005)
  214. rx_status = self.read_reg(0x13)
  215. rx_len = rx_status & 0x1FF
  216. if rx_len < 2 or rx_len == 511:
  217. return None
  218. atqa = self.read_data(2)
  219. if atqa[0] == 0xFF or atqa[0] == 0x00:
  220. return None
  221. # Anti-collision Level 1
  222. self.write_reg(0x03, 0xFFFFFFFF)
  223. self.set_transceive_mode()
  224. time.sleep(0.002)
  225. self.send_data([0x93, 0x20])
  226. time.sleep(0.010)
  227. rx_status = self.read_reg(0x13)
  228. rx_len = rx_status & 0x1FF
  229. if rx_len < 5 or rx_len > 64:
  230. return None
  231. uid_buf = self.read_data(5)
  232. uid = uid_buf[:4]
  233. bcc = uid[0] ^ uid[1] ^ uid[2] ^ uid[3]
  234. if bcc != uid_buf[4]:
  235. return None
  236. # SELECT
  237. self.write_reg(0x03, 0xFFFFFFFF)
  238. self.set_transceive_mode()
  239. time.sleep(0.002)
  240. # Enable CRC for SELECT
  241. self.write_reg_or(0x19, 0x01)
  242. self.write_reg_or(0x12, 0x01)
  243. self.send_data([0x93, 0x70, uid[0], uid[1], uid[2], uid[3], bcc])
  244. time.sleep(0.010)
  245. rx_status = self.read_reg(0x13)
  246. rx_len = rx_status & 0x1FF
  247. if rx_len < 1:
  248. return None
  249. sak_buf = self.read_data(min(rx_len, 3))
  250. sak = sak_buf[0]
  251. return bytes(uid), sak
  252. # -- MIFARE Classic --
  253. def mfc_authenticate(self, block: int, key: bytes, uid: bytes) -> bool:
  254. """MIFARE Classic authentication via PN5180 MFC_AUTHENTICATE (0x0C).
  255. The PN5180 handles Crypto1 internally. After success, bit 6 of
  256. SYSTEM_CONFIG is set (MFC_CRYPTO1_ON) and all subsequent RF
  257. communication is encrypted/decrypted by the hardware.
  258. Args:
  259. block: Block number to authenticate
  260. key: 6-byte MIFARE Key A
  261. uid: 4-byte tag UID
  262. Returns:
  263. True if authentication succeeded
  264. """
  265. # Wait for BUSY LOW before starting
  266. deadline = time.monotonic() + 0.100
  267. while self._lines.get_value(BUSY_PIN) == gpiod.line.Value.ACTIVE:
  268. if time.monotonic() > deadline:
  269. return False
  270. time.sleep(0.001)
  271. # MFC_AUTHENTICATE: [0x0C][key 6B][keyType][blockNo][uid 4B] = 13 bytes
  272. cmd = [0x0C] + list(key) + [0x60, block] + list(uid[:4])
  273. self._cs_low()
  274. self._spi.xfer2(cmd)
  275. self._cs_high()
  276. # Wait for BUSY HIGH then LOW (auth can take up to 1s)
  277. self._wait_busy(timeout_s=1.0)
  278. # Read 1-byte response: 0x00 = success
  279. self._cs_low()
  280. response = self._spi.xfer2([0xFF])
  281. self._cs_high()
  282. return response[0] == 0x00
  283. def mfc_read_block(self, block: int) -> bytes | None:
  284. """Read a 16-byte MIFARE Classic block (must be authenticated first).
  285. Returns 16 bytes of block data, or None on failure.
  286. """
  287. # Clear IRQs
  288. self.write_reg(0x03, 0xFFFFFFFF)
  289. # Set transceive mode (Crypto1 stays active from MFC_AUTHENTICATE)
  290. self.set_transceive_mode()
  291. time.sleep(0.001)
  292. # Enable TX and RX CRC for encrypted read
  293. self.write_reg_or(0x19, 0x01)
  294. self.write_reg_or(0x12, 0x01)
  295. # Send MIFARE READ command: 0x30 + block number
  296. self.send_data([0x30, block])
  297. time.sleep(0.010)
  298. # Check RX status
  299. rx_status = self.read_reg(0x13)
  300. rx_len = rx_status & 0x1FF
  301. if rx_len != 16:
  302. return None
  303. return self.read_data(16)
  304. def ntag_read_pages(self, start_page: int, num_pages: int) -> bytes | None:
  305. """Read NTAG pages (4 bytes each). No authentication required.
  306. Uses NTAG READ command (0x30) which returns 4 pages (16 bytes) at a time.
  307. """
  308. # One-time setup: Crypto1 off, TX CRC on, RX CRC off, IDLE→TRANSCEIVE
  309. self.write_reg_and(0x00, 0xFFFFFFBF) # Crypto1 off
  310. self.write_reg_or(0x19, 0x01) # TX CRC on
  311. self.write_reg_and(0x12, 0xFFFFFFFE) # RX CRC off
  312. self.write_reg(0x03, 0xFFFFFFFF) # Clear IRQs
  313. sys_cfg = self.read_reg(0x00)
  314. self.write_reg(0x00, sys_cfg & 0xFFFFFFF8) # IDLE
  315. time.sleep(0.001)
  316. self.write_reg(0x00, (sys_cfg & 0xFFFFFFF8) | 0x03) # TRANSCEIVE
  317. time.sleep(0.002)
  318. result = bytearray()
  319. pages_read = 0
  320. while pages_read < num_pages:
  321. if pages_read > 0:
  322. # Subsequent iterations: just clear IRQs and re-enter TRANSCEIVE
  323. self.write_reg(0x03, 0xFFFFFFFF)
  324. self.set_transceive_mode()
  325. time.sleep(0.001)
  326. # READ command: 0x30 + page number → returns 16 bytes (4 pages)
  327. self.send_data([0x30, start_page + pages_read])
  328. time.sleep(0.010)
  329. rx_status = self.read_reg(0x13)
  330. rx_len = rx_status & 0x1FF
  331. if rx_len < 16:
  332. print(f" NTAG read page {start_page + pages_read}: rx_len={rx_len} (expected >=16)")
  333. return None
  334. data = self.read_data(16)
  335. pages_to_copy = min(4, num_pages - pages_read)
  336. result.extend(data[: pages_to_copy * 4])
  337. pages_read += 4 # Always advances by 4 (READ returns 4 pages)
  338. return bytes(result)
  339. def reactivate_card(self) -> tuple[bytes, int] | None:
  340. """RF cycle and full re-select of the card. Returns (uid, sak) or None."""
  341. self.rf_off()
  342. time.sleep(0.010)
  343. self.write_reg(0x03, 0xFFFFFFFF) # Clear IRQs
  344. self.load_rf_config(0x00, 0x80) # ISO 14443A
  345. time.sleep(0.005)
  346. self.rf_on()
  347. time.sleep(0.020)
  348. return self.activate_type_a()
  349. def read_bambu_tag(self, uid: bytes) -> dict[int, bytes] | None:
  350. """Read Bambu tag data blocks using HKDF-derived keys.
  351. Args:
  352. uid: 4-byte tag UID (from activate_type_a)
  353. Returns:
  354. Dict mapping block number -> 16 bytes of data, or None on failure
  355. """
  356. # Derive per-sector keys from UID
  357. keys = hkdf_derive_keys(uid)
  358. # Clear Crypto1 state and IRQs
  359. self.write_reg_and(0x00, 0xFFFFFFBF) # Clear MFC_CRYPTO1_ON (bit 6)
  360. self.write_reg(0x03, 0xFFFFFFFF)
  361. # Reactivate card (may have timed out)
  362. result = self.reactivate_card()
  363. if result is None:
  364. print(" Failed to reactivate card")
  365. return None
  366. uid_check, _ = result
  367. if uid_check != uid:
  368. print(f" UID mismatch after reactivation: {uid_check.hex()} != {uid.hex()}")
  369. return None
  370. # Read blocks with per-sector authentication
  371. blocks = {}
  372. current_sector = -1
  373. for block in BAMBU_BLOCKS:
  374. sector = block // 4
  375. # Authenticate when entering a new sector
  376. if sector != current_sector:
  377. key = get_sector_key(keys, block)
  378. if not self.mfc_authenticate(block, key, uid):
  379. print(f" Auth failed for block {block} (sector {sector})")
  380. return None
  381. current_sector = sector
  382. # Read the block
  383. data = self.mfc_read_block(block)
  384. if data is None:
  385. print(f" Read failed for block {block}")
  386. return None
  387. blocks[block] = data
  388. return blocks
  389. def ntag_write_page(self, page: int, data: bytes) -> bool:
  390. """Write 4 bytes to a single NTAG page.
  391. NTAG WRITE command: 0xA2 + page_number + 4 bytes data.
  392. TX CRC on (tag requires it). Always returns True — the 4-bit ACK
  393. cannot be captured by the PN5180, so verification is deferred to
  394. ntag_write_pages() which reads back all written data.
  395. """
  396. if len(data) != 4:
  397. return False
  398. # Crypto1 off, TX CRC on (tag expects CRC), RX CRC off (ACK is 4-bit, no CRC)
  399. self.write_reg_and(0x00, 0xFFFFFFBF) # Crypto1 off
  400. self.write_reg_or(0x19, 0x01) # TX CRC on
  401. self.write_reg_and(0x12, 0xFFFFFFFE) # RX CRC off
  402. self.write_reg(0x03, 0xFFFFFFFF) # Clear IRQs
  403. # Reset state machine: IDLE then TRANSCEIVE
  404. sys_cfg = self.read_reg(0x00)
  405. self.write_reg(0x00, sys_cfg & 0xFFFFFFF8) # IDLE
  406. time.sleep(0.001)
  407. self.write_reg(0x00, (sys_cfg & 0xFFFFFFF8) | 0x03) # TRANSCEIVE
  408. time.sleep(0.002)
  409. # WRITE command: 0xA2 + page + 4 bytes
  410. self.send_data([0xA2, page] + list(data))
  411. time.sleep(0.005)
  412. # PN5180 cannot reliably capture the 4-bit ACK, so always return True
  413. return True
  414. def ntag_write_pages(self, start_page: int, data: bytes) -> bool:
  415. """Write data to consecutive NTAG pages starting at start_page.
  416. Pads last chunk to 4 bytes. Verification is skipped — the PN5180
  417. cannot reliably read back NTAG pages after a batch write (the
  418. second READ command gets no response). The write itself is reliable:
  419. the tag ACKs each page (RX SOF detected on every response).
  420. """
  421. # Pad to 4-byte boundary
  422. padded = bytearray(data)
  423. while len(padded) % 4 != 0:
  424. padded.append(0x00)
  425. # Write page by page
  426. num_pages = len(padded) // 4
  427. for i in range(0, len(padded), 4):
  428. page = start_page + (i // 4)
  429. chunk = bytes(padded[i : i + 4])
  430. if not self.ntag_write_page(page, chunk):
  431. print(f" NTAG write failed at page {page} (of {num_pages} pages)")
  432. return False
  433. time.sleep(0.002)
  434. print(f" NTAG write complete ({num_pages} pages)")
  435. return True
  436. def read_ntag(self, uid: bytes) -> bytes | None:
  437. """Read NTAG pages 4-20 (NDEF data area, 68 bytes). No auth needed.
  438. Used for SpoolEase / OpenPrintTag community tags.
  439. """
  440. # Reactivate card
  441. result = self.reactivate_card()
  442. if result is None:
  443. print(" Failed to reactivate card")
  444. return None
  445. return self.ntag_read_pages(start_page=4, num_pages=17)
  446. def _print_hex_dump(data: bytes, label: str, bytes_per_line: int = 16):
  447. """Print a hex dump with ASCII sidebar."""
  448. for i in range(0, len(data), bytes_per_line):
  449. chunk = data[i : i + bytes_per_line]
  450. hex_str = " ".join(f"{b:02X}" for b in chunk)
  451. ascii_str = "".join(chr(b) if 32 <= b < 127 else "." for b in chunk)
  452. print(f" {label}{i:3d}: {hex_str:<{bytes_per_line * 3}}|{ascii_str}|")
  453. def main():
  454. print("=" * 60)
  455. print("PN5180 NFC Tag Reader")
  456. print(" Supports: Bambu (MIFARE Classic) + NTAG (SpoolEase/OpenPrintTag)")
  457. print("=" * 60)
  458. try:
  459. nfc = PN5180()
  460. except (OSError, RuntimeError, PermissionError) as e:
  461. print(f"\nERROR: Failed to initialize NFC reader: {e}")
  462. # Check if it's a resource conflict
  463. error_str = str(e).lower()
  464. is_resource_conflict = any(x in error_str for x in ["busy", "resource", "already in use", "permission denied"])
  465. if is_resource_conflict:
  466. print("\nGPIO/SPI RESOURCE IN USE: Another process is using the NFC reader.")
  467. print("This typically means the SpoolBuddy daemon is already reading tags.")
  468. print("\nTo run this diagnostic, stop the daemon first:")
  469. print(" sudo systemctl stop bambuddy")
  470. print(" # Run diagnostic")
  471. print(" .../read_tag.py")
  472. print(" # Restart daemon when done:")
  473. print(" sudo systemctl start bambuddy")
  474. else:
  475. print("\nCheck:")
  476. print(" - Correct GPIO chip is available (/dev/gpiochip0 or /dev/gpiochip4)")
  477. print(f" - SPI device is available (SPI_BUS={SPI_BUS}, SPI_DEVICE={SPI_DEVICE})")
  478. print(" - GPIO and SPI permissions are correct")
  479. # Only print full traceback for unexpected errors
  480. import traceback
  481. traceback.print_exc()
  482. sys.exit(1)
  483. try:
  484. nfc.reset()
  485. ver = nfc.read_eeprom(0x10, 2)
  486. print(f"[1] Reset OK — product v{ver[1]}.{ver[0]}")
  487. nfc.load_rf_config(0x00, 0x80) # ISO 14443A
  488. time.sleep(0.010)
  489. nfc.rf_on()
  490. time.sleep(0.030)
  491. nfc.set_transceive_mode()
  492. rf = nfc.read_reg(0x1D)
  493. print(f"[2] RF ON (RF_STATUS=0x{rf:08X}, TX_RF={'ON' if rf & 1 else 'OFF'})")
  494. print("[3] Scanning for tag...")
  495. result = nfc.activate_type_a()
  496. if result is None:
  497. print(" No tag found.")
  498. sys.exit(1)
  499. uid, sak = result
  500. tag_types = {
  501. 0x00: "NTAG",
  502. 0x04: "NTAG (MIFARE Ultralight)",
  503. 0x08: "MIFARE Classic 1K",
  504. 0x18: "MIFARE Classic 4K",
  505. }
  506. print(f" UID : {uid.hex().upper()}")
  507. print(f" SAK : 0x{sak:02X} ({tag_types.get(sak, 'Unknown')})")
  508. if sak in (0x08, 0x18):
  509. # MIFARE Classic 1K or 4K — Bambu Lab tag
  510. print("[4] Reading Bambu tag data (MIFARE Classic)...")
  511. blocks = nfc.read_bambu_tag(uid)
  512. if blocks is None:
  513. print(" Failed to read tag data.")
  514. nfc.rf_off()
  515. sys.exit(1)
  516. print("[5] Tag data:")
  517. for block_num in BAMBU_BLOCKS:
  518. data = blocks[block_num]
  519. hex_str = " ".join(f"{b:02X}" for b in data)
  520. ascii_str = "".join(chr(b) if 32 <= b < 127 else "." for b in data)
  521. print(f" Block {block_num:2d}: {hex_str} |{ascii_str}|")
  522. raw = b""
  523. for block_num in BAMBU_BLOCKS:
  524. raw += blocks[block_num]
  525. print(f"\n Raw payload ({len(raw)} bytes): {raw.hex().upper()}")
  526. elif sak in (0x00, 0x04):
  527. # NTAG / MIFARE Ultralight family — SpoolEase / OpenPrintTag
  528. print("[4] Reading NTAG data (pages 4-20)...")
  529. ntag_data = nfc.read_ntag(uid)
  530. if ntag_data is None:
  531. print(" Failed to read NTAG data.")
  532. nfc.rf_off()
  533. sys.exit(1)
  534. print(f"[5] NTAG data ({len(ntag_data)} bytes):")
  535. _print_hex_dump(ntag_data, "page ")
  536. else:
  537. print(f" Unsupported tag type (SAK=0x{sak:02X})")
  538. nfc.rf_off()
  539. sys.exit(1)
  540. nfc.rf_off()
  541. print("\n" + "=" * 60)
  542. print("Tag read complete!")
  543. print("=" * 60)
  544. except Exception as e:
  545. print(f"\nERROR: {e}")
  546. import traceback
  547. traceback.print_exc()
  548. sys.exit(1)
  549. finally:
  550. nfc.close()
  551. if __name__ == "__main__":
  552. main()