You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

11 lines
167 B

@echo off
set /p value=please input com num:
if /i "%value:~0,3%" == "com" (
idf.py build
idf.py -p %value% flash
idf.py -p %value% monitor
)else (
echo error
pause
)