| 
									
										
										
										
											2020-05-13 14:00:38 +02:00
										 |  |  | #!/usr/bin/env pwsh | 
					
						
							| 
									
										
										
										
											2023-04-27 14:50:47 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | param( | 
					
						
							|  |  |  |     [Switch]$h | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-27 13:45:50 +08:00
										 |  |  | $IDF_PATH = $PSScriptRoot | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-27 14:50:47 +02:00
										 |  |  | if($h){ | 
					
						
							|  |  |  | python "$IDF_PATH/tools/install_util.py" print_help ps1 | 
					
						
							|  |  |  | Exit | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-16 16:48:03 +02:00
										 |  |  | $TARGETS = (python "$IDF_PATH/tools/install_util.py" extract targets "$args") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-27 13:45:50 +08:00
										 |  |  | Write-Output "Installing ESP-IDF tools" | 
					
						
							| 
									
										
										
										
											2022-08-30 02:26:32 +02:00
										 |  |  | $proces_tools = Start-Process -Wait -PassThru -NoNewWindow -FilePath "python" -Args "`"$IDF_PATH/tools/idf_tools.py`" install --targets=${TARGETS}" | 
					
						
							| 
									
										
										
										
											2022-03-31 17:17:25 +02:00
										 |  |  | $exit_code_tools = $proces_tools.ExitCode | 
					
						
							|  |  |  | if ($exit_code_tools -ne 0) { exit $exit_code_tools }  # if error | 
					
						
							| 
									
										
										
										
											2019-08-27 13:45:50 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-16 16:48:03 +02:00
										 |  |  | $FEATURES = (python "$IDF_PATH/tools/install_util.py" extract features "$args") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-27 13:45:50 +08:00
										 |  |  | Write-Output "Setting up Python environment" | 
					
						
							| 
									
										
										
										
											2022-08-30 02:26:32 +02:00
										 |  |  | $proces_py_env = Start-Process -Wait -PassThru  -NoNewWindow -FilePath "python" -Args "`"$IDF_PATH/tools/idf_tools.py`" install-python-env --features=${FEATURES}" | 
					
						
							| 
									
										
										
										
											2022-03-31 17:17:25 +02: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 13:45:50 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Write-Output "
 | 
					
						
							|  |  |  | All done! You can now run: | 
					
						
							|  |  |  |     export.ps1 | 
					
						
							|  |  |  | "
 |