mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-11-03 14:01:53 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			781 B
		
	
	
	
		
			PowerShell
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			781 B
		
	
	
	
		
			PowerShell
		
	
	
	
	
	
#!/usr/bin/env pwsh
 | 
						|
$IDF_PATH = $PSScriptRoot
 | 
						|
 | 
						|
if($args.count -eq 0){
 | 
						|
    $TARGETS = "all"
 | 
						|
}else
 | 
						|
{
 | 
						|
    $TARGETS = $args[0] -join ','
 | 
						|
}
 | 
						|
Write-Output "Installing ESP-IDF tools"
 | 
						|
$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
 | 
						|
 | 
						|
Write-Output "Setting up Python environment"
 | 
						|
$proces_py_env = Start-Process -Wait -PassThru  -NoNewWindow -FilePath "python" -Args "$IDF_PATH/tools/idf_tools.py install-python-env"
 | 
						|
$exit_code_py_env = $proces_py_env.ExitCode
 | 
						|
if ($exit_code_py_env -ne 0) { exit $exit_code_py_env } # if error
 | 
						|
 | 
						|
 | 
						|
Write-Output "
 | 
						|
All done! You can now run:
 | 
						|
    export.ps1
 | 
						|
"
 |