153 lines
4.8 KiB
Batchfile
153 lines
4.8 KiB
Batchfile
@echo off
|
|
setlocal enabledelayedexpansion
|
|
|
|
:: monitor.bat -- Open the serial monitor
|
|
::
|
|
:: Reads baud rate from .anvil.toml. No Anvil binary required.
|
|
::
|
|
:: Usage:
|
|
:: monitor.bat Open monitor (auto-detect port)
|
|
:: monitor.bat -p COM3 Specify port
|
|
:: monitor.bat -b 9600 Override baud rate
|
|
:: monitor.bat --board mega Use baud from a named board
|
|
|
|
set "SCRIPT_DIR=%~dp0"
|
|
set "SCRIPT_DIR=%SCRIPT_DIR:~0,-1%"
|
|
set "CONFIG=%SCRIPT_DIR%\.anvil.toml"
|
|
set "LOCAL_CONFIG=%SCRIPT_DIR%\.anvil.local"
|
|
|
|
if not exist "%CONFIG%" (
|
|
echo FAIL: No .anvil.toml found in %SCRIPT_DIR%
|
|
exit /b 1
|
|
)
|
|
|
|
:: -- Parse .anvil.toml (flat keys) ----------------------------------------
|
|
for /f "usebackq tokens=1,* delims==" %%a in ("%CONFIG%") do (
|
|
set "_K=%%a"
|
|
if not "!_K:~0,1!"=="#" if not "!_K:~0,1!"=="[" (
|
|
set "_K=!_K: =!"
|
|
set "_V=%%b"
|
|
if defined _V (
|
|
set "_V=!_V: =!"
|
|
set "_V=!_V:"=!"
|
|
)
|
|
if "!_K!"=="default" set "DEFAULT_BOARD=!_V!"
|
|
if "!_K!"=="baud" set "BAUD=!_V!"
|
|
)
|
|
)
|
|
|
|
:: -- Parse .anvil.local ---------------------------------------------------
|
|
set "LOCAL_PORT="
|
|
set "LOCAL_VID_PID="
|
|
if exist "%LOCAL_CONFIG%" (
|
|
for /f "usebackq tokens=1,* delims==" %%a in ("%LOCAL_CONFIG%") do (
|
|
set "_K=%%a"
|
|
if not "!_K:~0,1!"=="#" (
|
|
set "_K=!_K: =!"
|
|
set "_V=%%b"
|
|
if defined _V (
|
|
set "_V=!_V: =!"
|
|
set "_V=!_V:"=!"
|
|
)
|
|
if "!_K!"=="port" set "LOCAL_PORT=!_V!"
|
|
if "!_K!"=="vid_pid" set "LOCAL_VID_PID=!_V!"
|
|
)
|
|
)
|
|
)
|
|
|
|
if "%BAUD%"=="" set "BAUD=115200"
|
|
|
|
:: -- Parse arguments ------------------------------------------------------
|
|
set "PORT="
|
|
set "BOARD_NAME="
|
|
|
|
:parse_args
|
|
if "%~1"=="" goto done_args
|
|
if "%~1"=="-p" set "PORT=%~2" & shift & shift & goto parse_args
|
|
if "%~1"=="--port" set "PORT=%~2" & shift & shift & goto parse_args
|
|
if "%~1"=="-b" set "BAUD=%~2" & shift & shift & goto parse_args
|
|
if "%~1"=="--baud" set "BAUD=%~2" & shift & shift & goto parse_args
|
|
if "%~1"=="--board" set "BOARD_NAME=%~2" & shift & shift & goto parse_args
|
|
if "%~1"=="--help" goto show_help
|
|
if "%~1"=="-h" goto show_help
|
|
echo FAIL: Unknown option: %~1
|
|
exit /b 1
|
|
|
|
:show_help
|
|
echo Usage: monitor.bat [-p PORT] [-b BAUD] [--board NAME]
|
|
echo Opens serial monitor. Baud rate from .anvil.toml.
|
|
echo --board NAME selects a board from [boards.NAME].
|
|
exit /b 0
|
|
|
|
:done_args
|
|
|
|
:: -- Resolve board --------------------------------------------------------
|
|
if "%BOARD_NAME%"=="" set "BOARD_NAME=%DEFAULT_BOARD%"
|
|
|
|
set "BOARD_SECTION=[boards.%BOARD_NAME%]"
|
|
set "IN_SECTION=0"
|
|
set "BOARD_BAUD="
|
|
for /f "usebackq tokens=*" %%L in ("%CONFIG%") do (
|
|
set "_LINE=%%L"
|
|
if "!_LINE!"=="!BOARD_SECTION!" (
|
|
set "IN_SECTION=1"
|
|
) else if "!IN_SECTION!"=="1" (
|
|
if "!_LINE:~0,1!"=="[" (
|
|
set "IN_SECTION=0"
|
|
) else if not "!_LINE:~0,1!"=="#" (
|
|
for /f "tokens=1,* delims==" %%a in ("!_LINE!") do (
|
|
set "_BK=%%a"
|
|
set "_BK=!_BK: =!"
|
|
set "_BV=%%b"
|
|
if defined _BV (
|
|
set "_BV=!_BV: =!"
|
|
set "_BV=!_BV:"=!"
|
|
)
|
|
if "!_BK!"=="baud" set "BOARD_BAUD=!_BV!"
|
|
)
|
|
)
|
|
)
|
|
)
|
|
|
|
if not "!BOARD_BAUD!"=="" set "BAUD=!BOARD_BAUD!"
|
|
|
|
if not "%BOARD_NAME%"=="%DEFAULT_BOARD%" (
|
|
echo ok Using board: %BOARD_NAME% -- baud: !BAUD!
|
|
)
|
|
|
|
:: -- Preflight ------------------------------------------------------------
|
|
where arduino-cli >nul 2>nul
|
|
if errorlevel 1 (
|
|
echo FAIL: arduino-cli not found in PATH.
|
|
exit /b 1
|
|
)
|
|
|
|
:: -- Resolve port ---------------------------------------------------------
|
|
:: Priority: -p flag > VID:PID resolve > saved port > auto-detect
|
|
if "%PORT%"=="" (
|
|
for /f "delims=" %%p in ('powershell -NoProfile -ExecutionPolicy Bypass -File "%SCRIPT_DIR%\_detect_port.ps1" -VidPid "%LOCAL_VID_PID%" -SavedPort "%LOCAL_PORT%"') do (
|
|
if "!PORT!"=="" set "PORT=%%p"
|
|
)
|
|
if "!PORT!"=="" (
|
|
echo FAIL: No serial port detected. Specify with: monitor.bat -p COM3
|
|
echo Or save a default: anvil devices --set
|
|
exit /b 1
|
|
)
|
|
if not "%LOCAL_VID_PID%"=="" (
|
|
if not "!PORT!"=="%LOCAL_PORT%" (
|
|
echo info Device %LOCAL_VID_PID% found on !PORT! ^(moved from %LOCAL_PORT%^)
|
|
) else (
|
|
echo info Using port !PORT! ^(from .anvil.local^)
|
|
)
|
|
) else if not "%LOCAL_PORT%"=="" (
|
|
echo info Using port !PORT! ^(from .anvil.local^)
|
|
) else (
|
|
echo warn Auto-detected port: !PORT! ^(use -p to override, or: anvil devices --set^)
|
|
)
|
|
)
|
|
|
|
:: -- Monitor --------------------------------------------------------------
|
|
echo Opening serial monitor on %PORT% at %BAUD% baud...
|
|
echo Press Ctrl+C to exit.
|
|
echo.
|
|
arduino-cli monitor -p %PORT% -c "baudrate=%BAUD%" |