Przeglądaj źródła

Fix SpoolBuddy NFC write failing on NTAG 213/215/216 tags

  Two issues:

  1. SAK gate too strict — NTAG chips can report SAK 0x04 (MIFARE
     Ultralight family) instead of 0x00. Accept both in nfc_reader.py
     and main.py.

  2. TX CRC disabled during WRITE — the NTAG WRITE command (0xA2)
     requires a CRC on the frame. The PN5180 was sending without CRC,
     causing the tag to NAK every write. Enable TX CRC for writes
     (RX CRC stays off for the 4-bit ACK).
maziggy 2 miesięcy temu
rodzic
commit
9d4f57d54d
2 zmienionych plików z 3 dodań i 3 usunięć
  1. 1 1
      CHANGELOG.md
  2. 2 2
      spoolbuddy/daemon/pn5180.py

+ 1 - 1
CHANGELOG.md

@@ -17,7 +17,7 @@ All notable changes to Bambuddy will be documented in this file.
 - **SpoolBuddy Install Script Now Upgrades System Packages** — The install script now runs `apt-get upgrade -y` after installing required packages and the WiFi safeguard. This ensures the Pi is fully up to date before SpoolBuddy is deployed, and the WiFi safeguard protects connectivity during the upgrade.
 
 ### Fixed
-- **SpoolBuddy NFC Write Rejects NTAG 215 Tags (SAK=0x04)** — Some NTAG 213/215/216 chips report SAK `0x04` (MIFARE Ultralight family) instead of `0x00` during anticollision. The write gate only accepted `0x00`, causing "Incompatible tag type" errors on valid NTAG tags. Both SAK values are now accepted for NTAG detection and write operations.
+- **SpoolBuddy NFC Write Fails on NTAG Tags** — Two issues prevented writing to NTAG 213/215/216 tags. First, some chips report SAK `0x04` (MIFARE Ultralight family) instead of `0x00` during anticollision, and the write gate only accepted `0x00`, causing "Incompatible tag type" errors. Both SAK values are now accepted. Second, the PN5180 NTAG WRITE command had TX CRC disabled, but the NTAG spec requires a CRC on the WRITE frame — the tag NAK'd every write attempt with "Write or verification failed". Fixed by enabling TX CRC for WRITE commands (RX CRC stays off since the 4-bit ACK has no CRC).
 - **Database Connection Pool Exhaustion on Large Printer Farms** — Users with 100+ printers connected simultaneously experienced `QueuePool limit of size 10 overflow 20 reached, connection timed out` errors. Increased the SQLAlchemy connection pool from 30 total (10 base + 20 overflow) to 220 (20 base + 200 overflow), and raised the SQLite busy_timeout from 5 to 15 seconds to reduce write contention under heavy concurrent MQTT updates.
 - **SpoolBuddy Update Check Always Shows "Up to Date"** — The SpoolBuddy daemon update check compared the device's firmware version against GitHub releases instead of the running Bambuddy backend version. This meant the check could incorrectly report "up to date" even when the daemon was behind. Fixed by comparing directly against `APP_VERSION` from the backend config.
 - **SpoolBuddy Updates Now Use SSH** — Replaced the fragile self-update mechanism (daemon pulls its own code via git, permission errors on `.git/`, hardcoded `main` branch) with SSH-based updates driven by the Bambuddy backend. Bambuddy now SSHes into the SpoolBuddy Pi and runs git fetch/checkout, pip install, systemctl restart, and kiosk browser restart remotely. Updates automatically use the same branch as Bambuddy. SSH key pairing is fully automatic — Bambuddy generates an ED25519 keypair and includes the public key in the device registration response; the daemon deploys it to `authorized_keys` on first connect. The install script creates the `spoolbuddy` user with a bash shell and sudoers entries for daemon and kiosk restart. A "Force Update" button allows re-deploying even when versions match. The SSH public key is also shown in SpoolBuddy Settings → Updates → SSH Setup for manual pairing if needed.

+ 2 - 2
spoolbuddy/daemon/pn5180.py

@@ -480,8 +480,8 @@ class PN5180:
         if len(data) != 4:
             return False
 
-        # Disable CRC
-        self.write_reg_and(0x19, 0xFFFFFFFE)  # TX CRC off
+        # NTAG WRITE needs TX CRC on (tag expects CRC), RX CRC off (ACK is 4-bit, no CRC)
+        self.write_reg_or(0x19, 0x01)  # TX CRC on
         self.write_reg_and(0x12, 0xFFFFFFFE)  # RX CRC off
 
         # Clear IRQs and set transceive mode