2020-05-13 12:00:38 +00:00
|
|
|
#!/usr/bin/env pwsh
|
2019-08-27 05:45:50 +00:00
|
|
|
$IDF_PATH = $PSScriptRoot
|
|
|
|
|
2021-04-26 19:34:48 +00:00
|
|
|
if($args.count -eq 0){
|
|
|
|
$TARGETS = "all"
|
|
|
|
}else
|
|
|
|
{
|
|
|
|
$TARGETS = $args[0] -join ','
|
|
|
|
}
|
2019-08-27 05:45:50 +00:00
|
|
|
Write-Output "Installing ESP-IDF tools"
|
2022-03-31 15:17:25 +00:00
|
|
|
$proces_tools = Start-Process -Wait -PassThru -NoNewWindow -FilePath "python" -Args "$IDF_PATH/tools/idf_tools.py install --targets=${TARGETS}"
|
|
|
|
$exit_code_tools = $proces_tools.ExitCode
|
|
|
|
if ($exit_code_tools -ne 0) { exit $exit_code_tools } # if error
|
2019-08-27 05:45:50 +00:00
|
|
|
|
|
|
|
Write-Output "Setting up Python environment"
|
2022-08-16 10:10:02 +00:00
|
|
|
$proces_py_env = Start-Process -Wait -PassThru -NoNewWindow -FilePath "python" -Args "$IDF_PATH/tools/idf_tools.py install-python-env"
|
2022-03-31 15:17:25 +00:00
|
|
|
$exit_code_py_env = $proces_py_env.ExitCode
|
|
|
|
if ($exit_code_py_env -ne 0) { exit $exit_code_py_env } # if error
|
2019-08-27 05:45:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
Write-Output "
|
|
|
|
All done! You can now run:
|
|
|
|
export.ps1
|
|
|
|
"
|