13 lines
271 B
Batchfile
13 lines
271 B
Batchfile
|
|
@echo off
|
||
|
|
REM Set the path of the RflySim tools
|
||
|
|
if not defined PSP_PATH (
|
||
|
|
SET PSP_PATH=C:\PX4PSP
|
||
|
|
SET PSP_PATH_LINUX=/mnt/c/PX4PSP
|
||
|
|
)
|
||
|
|
cd /d %PSP_PATH%\VcXsrv
|
||
|
|
tasklist|find /i "vcxsrv.exe" >nul || Xlaunch.exe -run config1.xlaunch
|
||
|
|
|
||
|
|
cd /d %~dp0
|
||
|
|
wsl -d RflySim-20.04
|
||
|
|
|