2017-06-11 23:58:45 -03:00
|
|
|
#Powershell script to download and configure the APM SITL environment
|
|
|
|
|
|
|
|
Import-Module BitsTransfer
|
|
|
|
|
|
|
|
Write-Output "Starting Downloads"
|
|
|
|
|
|
|
|
Write-Output "Downloading MAVProxy (1/6)"
|
|
|
|
Start-BitsTransfer -Source "http://firmware.ardupilot.org/Tools/MAVProxy/MAVProxySetup-latest.exe" -Destination "$PSScriptRoot\MAVProxySetup-latest.exe"
|
|
|
|
|
|
|
|
Write-Output "Downloading Cygwin x64 (2/6)"
|
|
|
|
Start-BitsTransfer -Source "https://cygwin.com/setup-x86_64.exe" -Destination "$PSScriptRoot\setup-x86_64.exe"
|
|
|
|
|
|
|
|
Write-Output "Installing Cygwin x64 (3/6)"
|
2018-01-01 21:48:33 -04:00
|
|
|
Start-Process -wait -FilePath $PSScriptRoot\setup-x86_64.exe -ArgumentList "--root=C:\cygwin --no-startmenu --local-package-dir=$env:USERPROFILE\Downloads --site=http://cygwin.mirror.constant.com --packages autoconf,automake,ccache,gcc-g++,git,libtool,make,gawk,libexpat-devel,libxml2-devel,python2,python2-future,python2-libxml2,libxslt-devel,python2-devel,procps-ng --quiet-mode"
|
2017-06-11 23:58:45 -03:00
|
|
|
|
|
|
|
Write-Output "Copying JSBSim APM install script Cygwin (4/6)"
|
2018-01-01 21:48:33 -04:00
|
|
|
Start-BitsTransfer -Source "https://github.com/ArduPilot/ardupilot/raw/master/Tools/autotest/win_sitl/jsbsimAPM_install.sh" -Destination "C:\cygwin\home\jsbsimAPM_install.sh"
|
2017-06-11 23:58:45 -03:00
|
|
|
|
|
|
|
Write-Output "Downloading JSBSim and APM (5/6)"
|
|
|
|
Start-Process -wait -FilePath "C:\cygwin\bin\bash" -ArgumentList "--login -i -c ../jsbsimAPM_install.sh"
|
|
|
|
|
|
|
|
Write-Output "Installing MAVProxy (6/6)"
|
|
|
|
& $PSScriptRoot\MAVProxySetup-latest.exe /SILENT | Out-Null
|
|
|
|
|
|
|
|
Write-Host "Finished. Press any key to continue ..."
|
2017-03-29 05:50:53 -03:00
|
|
|
$x = $host.UI.RawUI.ReadKey("NoEcho,IncludeKeyDown")
|