14 lines
369 B
Batchfile
14 lines
369 B
Batchfile
@echo off
|
|
REM =============================================
|
|
REM ESP32 Serial Monitor using settings.json
|
|
REM =============================================
|
|
|
|
IF NOT EXIST .venv\Scripts\python.exe (
|
|
echo [ERROR] .venv not found. Run setup-env.bat first.
|
|
pause
|
|
exit /b 1
|
|
)
|
|
|
|
call .venv\Scripts\activate.bat
|
|
python flash_tool\flash.py
|
|
python flash_tool\monitor.py |