Add PN532 toolkit firmware, web UI, and embedded SPIFFS assets

Includes ESP-IDF NFC stack (deep capture, 4K Classic geometry, UL write API,
open SoftAP), React dashboard with live tag diagnostics, and docs. README
updated for APIs and lab Wi-Fi defaults.

Made-with: Cursor
This commit is contained in:
drjones
2026-03-29 09:32:55 -07:00
parent d1068d965b
commit 8968560565
73 changed files with 8802 additions and 28 deletions

9
firmware/partitions.csv Normal file
View File

@@ -0,0 +1,9 @@
# 8MB flash layout (ESP32-S3-DevKitC-1 N8). For 16MB, increase storage size.
# Name, Type, SubType, Offset, Size, Flags
nvs, data, nvs, 0x9000, 0x6000,
otadata, data, ota, 0xf000, 0x2000,
phy_init, data, phy, 0x11000, 0x1000,
factory, app, factory, 0x20000, 0x180000,
ota_0, app, ota_0, 0x1A0000,0x180000,
ota_1, app, ota_1, 0x320000,0x180000,
storage, data, spiffs, 0x4A0000,0x350000,
1 # 8MB flash layout (ESP32-S3-DevKitC-1 N8). For 16MB, increase storage size.
2 # Name, Type, SubType, Offset, Size, Flags
3 nvs, data, nvs, 0x9000, 0x6000,
4 otadata, data, ota, 0xf000, 0x2000,
5 phy_init, data, phy, 0x11000, 0x1000,
6 factory, app, factory, 0x20000, 0x180000,
7 ota_0, app, ota_0, 0x1A0000,0x180000,
8 ota_1, app, ota_1, 0x320000,0x180000,
9 storage, data, spiffs, 0x4A0000,0x350000,