1
0

Bench testing to find out contents of EPROM

This commit is contained in:
Aiden
2026-05-25 23:48:22 +10:00
parent 3f9f03388c
commit 1e4f87675d
4 changed files with 246 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#!/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())