From 606858228cfebe2f34178ccdcf10d1b558f1a129 Mon Sep 17 00:00:00 2001 From: janik Date: Wed, 1 Jul 2026 12:31:50 +0700 Subject: [PATCH] gui: default load port COM11 to match this bench Completes the port migration (CLI already defaults to COM11/COM4); the GUI toolbar field still hardcoded COM1. Supply/meter stay "auto". Co-Authored-By: Claude Opus 4.8 --- testbench/gui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testbench/gui.py b/testbench/gui.py index b924f70..81ac37f 100644 --- a/testbench/gui.py +++ b/testbench/gui.py @@ -158,7 +158,7 @@ class TestbenchGUI(tk.Tk): ttk.Label(bar, text="Load:").pack(side=tk.LEFT) self._load_port = ttk.Entry(bar, width=8) - self._load_port.insert(0, "COM1") + self._load_port.insert(0, "COM11") self._load_port.pack(side=tk.LEFT, padx=(2, 4)) ttk.Label(bar, text="@").pack(side=tk.LEFT) self._load_baud = ttk.Entry(bar, width=7)