Tighten PN532 framing and NFC access locking so scan, read, write, and raw operations behave reliably on hardware, and correct Classic versus Type 2 tag classification so common cards hit the right code paths. Refresh the embedded web assets and launcher files to match the corrected firmware behavior. Made-with: Cursor
12 lines
297 B
Bash
Executable File
12 lines
297 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Compatibility wrapper around the repo-root launcher.
|
|
set -euo pipefail
|
|
ROOT="$(cd "$(dirname "$0")" && pwd)"
|
|
PORT="${ESPPORT:-${1:-}}"
|
|
|
|
if [ -n "$PORT" ]; then
|
|
exec "$ROOT/../start-firmware.sh" --port "$PORT" --flash-only
|
|
fi
|
|
|
|
exec "$ROOT/../start-firmware.sh" --flash-only
|