Skip to content
Snippets Groups Projects

Initial commit

Merged Dzulfikar Ahmad Samhan requested to merge feat/initial into main
Compare and
30 files
+ 724
5
Preferences
Compare changes
Files
30
+ 97
0
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Build app posix",
"type": "shell",
"command": "./scripts/docker_run.sh west build -b native_sim debug-app/app --build-dir .build-debug-app-native",
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"clear": true
}
},
{
"label": "Build app evk",
"type": "shell",
"command": "./scripts/docker_run.sh west build -b stm32f4_disco debug-app/app --build-dir .build-debug-app-evk",
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"clear": true
}
},
// {
// "label": "Flash app only",
// "type": "shell",
// "command": "./scripts/docker_run.sh west flash --build-dir .build-mtp-lpmcu-lpc55s28-app-only",
// "problemMatcher": [
// "$gcc"
// ],
// "group": {
// "kind": "build",
// "isDefault": true
// },
// "presentation": {
// "clear": true
// }
// },
// {
// "label": "Run Posix",
// "type": "shell",
// "command": " ./scripts/docker_run.sh west build -t run --build-dir .build-debug-app-qemu",
// "problemMatcher": [
// "$gcc"
// ],
// "group": {
// "kind": "build",
// "isDefault": true
// },
// "presentation": {
// "clear": true
// }
// },
{
"label": "Clean",
"type": "shell",
"command": "./scripts/docker_run.sh rm -rf .build-debug-app*",
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"clear": true
}
},
{
"label": "Update",
"type": "shell",
"command": "./scripts/docker_run.sh west update",
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"clear": true
}
}
]
}
\ No newline at end of file