BM-Lite/.vscode/tasks.json
Andrey Perminov 27c95abeba Added support for BM-Lite UART interface.
Implemented UART interface support in stm32Wb55 HAL
2021-12-21 12:35:20 -08:00

83 lines
2.7 KiB
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "wb55 make",
"command": "make",
"args": ["-j4", "-C", "BMLite_examples", "PLATFORM=stm32wb55", "PORT=UART", "APP=embedded_app", "DEBUG=y"],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": {
"base": "$gcc",
"fileLocation": ["relative", "${workspaceFolder}"]
},
"group": {
"kind": "build",
"isDefault": true
}
},
{
"type": "shell",
"label": "wb55 make clean",
"command": "make",
"args": ["-C", "BMLite_examples", "PLATFORM=stm32wb55", "APP=embedded_app", "clean"],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": {
"base": "$gcc",
"fileLocation": ["relative", "${workspaceFolder}", "absolute"]
},
"group": "build"
},
{
"type": "shell",
"label": "nRF52840 make",
"command": "make",
"args": ["-j4", "-C", "BMLite_examples", "PLATFORM=nRF52840", "APP=embedded_app", "DEBUG=y"],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": {
"base": "$gcc",
"fileLocation": ["relative", "${workspaceFolder}"]
},
"group": {
"kind": "build",
"isDefault": true
}
},
{
"type": "shell",
"label": "nRF52840 make clean",
"command": "make",
"args": ["-C", "BMLite_examples", "PLATFORM=nRF52840", "APP=embedded_app", "clean"],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": {
"base": "$gcc",
"fileLocation": ["relative", "${workspaceFolder}", "absolute"]
},
"group": "build"
},
{
"type": "shell",
"label": "make clean",
"command": "make",
"args": ["-C", "BMLite_examples", "clean_all"],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": {
"base": "$gcc",
"fileLocation": ["relative", "${workspaceFolder}", "absolute"]
},
"group": "build"
},
]
}