2017-03-29 05:50:53 -03:00
|
|
|
rem File run APM:Rover SITL
|
2017-06-11 23:58:45 -03:00
|
|
|
SETLOCAL enableextensions
|
|
|
|
@echo off
|
|
|
|
|
2020-12-12 17:58:10 -04:00
|
|
|
rem Assumes a Cgywin install at C:\cygwin64
|
|
|
|
if "%CYGWIN_LOCATION%" == "" (set "CYGWIN_LOCATION=C:\cygwin64")
|
2017-06-11 23:58:45 -03:00
|
|
|
|
|
|
|
rem get current dir for Cygwin
|
|
|
|
set pth=%CD:~2,99%
|
|
|
|
set pth=%pth:\=/%
|
|
|
|
set drv=%CD:~0,1%
|
|
|
|
set "fullpath=/cygdrive/%drv%%pth%"
|
|
|
|
|
2020-03-26 20:14:17 -03:00
|
|
|
%CYGWIN_LOCATION%\bin\bash.exe --login -i -c "cd ""%fullpath%"" && cd ../../../Rover && ../Tools/autotest/sim_vehicle.py"
|