1
0
Files
h8-536-decoder/scripts/serial_table_dump.py
2026-05-25 23:48:22 +10:00

15 lines
276 B
Python

#!/usr/bin/env python3
"""Read-only command-1 serial table sweep helper."""
import sys
from pathlib import Path
sys.path.insert(0, str(Path(__file__).resolve().parents[1]))
from h8536.serial_table_dump import main
if __name__ == "__main__":
raise SystemExit(main())