Flash할 때 NVS 보존

This commit is contained in:
2026-06-19 14:22:35 +09:00
parent 08b8d3001e
commit f68b3296ee
4 changed files with 51 additions and 1 deletions
+29
View File
@@ -0,0 +1,29 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Flash: full erase (wipe NVS/bonds)",
"type": "shell",
"command": "powershell",
"args": [
"-ExecutionPolicy",
"Bypass",
"-File",
"${workspaceFolder}\\tools\\flash_full_erase.ps1"
],
"problemMatcher": []
},
{
"label": "Flash: preserve settings/bonds",
"type": "shell",
"command": "powershell",
"args": [
"-ExecutionPolicy",
"Bypass",
"-File",
"${workspaceFolder}\\tools\\flash_preserve_settings.ps1"
],
"problemMatcher": []
}
]
}