STM32GENERIC/tools/win/wait_for_serial.bat

12 lines
201 B
Batchfile
Raw Normal View History

2017-05-23 11:17:41 -07:00
echo Waiting for %1 serial...
for /l %%x in (1, 1, 40) do (
ping -w 100 -n 1 192.0.2.1 > nul
2017-05-23 11:17:41 -07:00
mode %1 > nul
if ERRORLEVEL 0 goto comPortFound
)
echo timeout waiting for %1 serial
:comPortFound