Set default baud rate to 115200 (confirmed working with device)

Tested on COM1 - device responds correctly at 115200 baud with CR+LF
termination. Verified identify and measure commands work.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-11 10:13:19 +07:00
parent 1594a240c0
commit dc4ea820cf
3 changed files with 7 additions and 7 deletions

View File

@@ -269,8 +269,8 @@ examples:
help="Serial port (default: COM1)",
)
parser.add_argument(
"-b", "--baudrate", type=int, default=9600,
help="Baud rate (default: 9600)",
"-b", "--baudrate", type=int, default=115200,
help="Baud rate (default: 115200)",
)
parser.add_argument(
"--timeout", type=float, default=2.0,