initial fork update

This commit is contained in:
2024-06-10 18:23:54 -06:00
parent ffe57fbd30
commit 30691e90ce
17 changed files with 354 additions and 53 deletions
+1
View File
@@ -0,0 +1 @@
$Env:ESPPORT = "COM22"
+3
View File
@@ -0,0 +1,3 @@
idf.py set-target esp32s3
idf.py menuconfig
idf.py flash monitor
+20
View File
@@ -0,0 +1,20 @@
function Test-Delete {
param (
$file
)
if (Test-Path $file) {
rm -r -fo $file
Write-Output "$file DELETED"
} else {
Write-Output "$file NOT present"
}
}
idf.py erase-flash fullclean python-clean
Test-Delete -file .\managed_components
Test-Delete -file .\build
Test-Delete -file .\sdkconfig.old
Test-Delete -file .\dependencies.lock
Test-Delete -file .\sdkconfig.old