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.
 
 
 
 
 
 

17 regels
315 B

  1. @echo off
  2. cd /d "%~dp0"
  3. python -c "import serial" >nul 2>nul
  4. if errorlevel 1 (
  5. echo Installing pyserial...
  6. python -m pip install -r requirements.txt
  7. if errorlevel 1 (
  8. echo Failed to install pyserial.
  9. pause
  10. exit /b 1
  11. )
  12. )
  13. python modbus_timing_tester.py
  14. if errorlevel 1 pause