Skip to content

Commit

Permalink
Add tasks.json for uploading filesystem from within VSCode.
Browse files Browse the repository at this point in the history
  • Loading branch information
jakkra committed Oct 17, 2023
1 parent 1b7ea8b commit 077da9b
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Upload Raw FS",
"type": "shell",
"command": "west upload_fs --type raw"
},
{
"label": "Upload LittleFS",
"type": "shell",
"command": "west upload_fs --type lfs"
}
]
}

0 comments on commit 077da9b

Please sign in to comment.