@echo off
rem Wrapper so flash.ps1 runs by double-click / plain cmd, ignoring execution policy.
rem   flash.bat                  -> auto-pick the single .bin here
rem   flash.bat esp_tag.bin      -> flash that file
rem   flash.bat esp_tag.bin -Monitor
powershell -NoProfile -ExecutionPolicy Bypass -File "%~dp0flash.ps1" %*
echo.
pause
