You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
327 B
9 lines
327 B
#导出环境变量
|
|
C:\Espressif/Initialize-Idf.ps1 -IdfId esp-idf-8de2bd0d9cffd2eca3d3f8442939a034
|
|
|
|
#创建软连接到C盘中的SDK,方便代码搜索,查阅,拷贝
|
|
if(-NOT(Test-Path ".\esp-idf-v4.4"))
|
|
{
|
|
$command ="cmd /c mklink /J esp-idf-v4.4 C:\Espressif\frameworks\esp-idf-v4.4"
|
|
invoke-expression "$command"
|
|
}
|