fome-fw/.vscode/tasks.json

231 lines
5.1 KiB
JSON
Raw Normal View History

2020-11-11 17:36:15 -08:00
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
2024-03-20 11:20:31 -07:00
{
"label": "Clean Firmware",
"type": "shell",
"command": "make clean",
"windows": {
"command": "wsl bash -lc 'make clean'"
},
"options": {
"cwd": "${workspaceRoot}/firmware"
},
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
2020-11-11 17:36:15 -08:00
{
"label": "Build Firmware (Proteus F4)",
"type": "shell",
2024-03-20 02:05:16 -07:00
"command": "bash ./compile_proteus_f4.sh",
"windows": {
2024-03-20 02:05:16 -07:00
"command": "wsl bash -lc 'bash ./compile_proteus_f4.sh'"
2021-05-09 06:17:44 -07:00
},
"options": {
2024-03-20 02:05:16 -07:00
"cwd": "${workspaceRoot}/firmware/config/boards/proteus"
},
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Build Firmware (Proteus F7)",
"type": "shell",
"command": "make -j16 PROJECT_BOARD=proteus PROJECT_CPU=ARCH_STM32F7",
2021-05-09 06:17:44 -07:00
"windows": {
"command": "wsl bash -lc 'make -j12 PROJECT_BOARD=proteus PROJECT_CPU=ARCH_STM32F7'"
},
"options": {
2024-03-20 02:05:16 -07:00
"cwd": "${workspaceRoot}/firmware/config/boards/proteus"
},
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Build Firmware (Proteus H7) EXPERIMENTAL",
"type": "shell",
2024-03-20 02:05:16 -07:00
"command": "bash ./compile_proteus_h7.sh",
2021-05-09 06:17:44 -07:00
"windows": {
2024-03-20 02:05:16 -07:00
"command": "wsl bash -lc 'bash ./compile_proteus_h7.sh'"
2021-05-09 06:17:44 -07:00
},
"options": {
2024-03-20 02:05:16 -07:00
"cwd": "${workspaceRoot}/firmware/config/boards/proteus"
},
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Build Firmware (Nucleo F429)",
"type": "shell",
2024-03-20 02:05:16 -07:00
"command": "bash ./compile_stm32f429_nucleo.sh",
"windows": {
2024-03-20 02:05:16 -07:00
"command": "wsl bash -lc 'bash ./compile_stm32f429_nucleo.sh'"
},
"options": {
2024-03-20 02:05:16 -07:00
"cwd": "${workspaceRoot}/firmware/config/boards/nucleo_f429"
},
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Build Firmware (Nucleo H743)",
"type": "shell",
2024-03-20 02:05:16 -07:00
"command": "bash ./compile_stm32h743_nucleo.sh",
"windows": {
2024-03-20 02:05:16 -07:00
"command": "wsl bash -lc 'bash ./compile_stm32h743_nucleo.sh'"
},
"options": {
2024-03-20 02:05:16 -07:00
"cwd": "${workspaceRoot}/firmware/config/boards/nucleo_h743"
},
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Build Firmware (Atlas H7)",
"type": "shell",
2024-03-20 02:05:16 -07:00
"command": "bash ./compile_atlas.sh",
"windows": {
2024-03-20 02:05:16 -07:00
"command": "wsl bash -lc 'bash ./compile_atlas.sh'"
},
"options": {
2024-03-20 02:05:16 -07:00
"cwd": "${workspaceRoot}/firmware/config/boards/atlas"
},
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Build Firmware (hellen72)",
"type": "shell",
2024-03-20 02:05:16 -07:00
"command": "bash ./compile_hellen72.sh",
2021-05-09 06:17:44 -07:00
"windows": {
2024-03-20 02:05:16 -07:00
"command": "wsl bash -lc 'bash ./compile_hellen72.sh'"
2021-05-09 06:17:44 -07:00
},
"options": {
2024-03-20 02:05:16 -07:00
"cwd": "${workspaceRoot}/firmware/config/boards/hellen/hellen72"
},
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
2020-11-11 17:36:15 -08:00
},
{
2023-03-16 17:00:52 -07:00
"label": "Build Firmware (Hellen NB1)",
"type": "shell",
2024-03-20 02:05:16 -07:00
"command": "bash ./compile_hellen-nb1.sh",
"windows": {
2024-03-20 02:05:16 -07:00
"command": "wsl bash -lc 'bash ./compile_hellen-nb1.sh'"
},
"options": {
2024-03-20 02:05:16 -07:00
"cwd": "${workspaceRoot}/firmware/config/boards/hellen/hellen-nb1"
},
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
2020-11-11 17:36:15 -08:00
{
"label": "Build Firmware (microRusEfi F4)",
"type": "shell",
2024-03-20 02:05:16 -07:00
"command": "bash ./compile_mre_f4.sh",
2021-05-09 06:17:44 -07:00
"windows": {
2024-03-20 02:05:16 -07:00
"command": "wsl bash -lc 'bash ./compile_mre_f4.sh'"
2021-05-09 06:17:44 -07:00
},
"options": {
2024-03-20 02:05:16 -07:00
"cwd": "${workspaceRoot}/firmware/config/boards/microrusefi"
},
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Build Firmware (microRusEfi F7)",
"type": "shell",
2024-03-20 02:05:16 -07:00
"command": "bash ./compile_mre_f7.sh",
"windows": {
2024-03-20 02:05:16 -07:00
"command": "wsl bash -lc 'bash ./compile_mre_f7.sh'"
},
"options": {
2024-03-20 02:05:16 -07:00
"cwd": "${workspaceRoot}/firmware/config/boards/microrusefi"
},
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Build Firmware (F407 \"basic\")",
"type": "shell",
2024-03-20 02:05:16 -07:00
"command": "bash ./compile_f407-discovery.sh",
"windows": {
2024-03-20 02:05:16 -07:00
"command": "wsl bash -lc 'bash ./compile_f407-discovery.sh'"
},
"options": {
2024-03-20 02:05:16 -07:00
"cwd": "${workspaceRoot}/firmware/config/boards/f407-discovery"
},
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Build Unit Tests",
"type": "shell",
"command": "make -j12",
"windows": {
"command": "wsl make -j12"
},
"options": {
"cwd": "${workspaceRoot}/unit_tests"
},
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
2020-11-11 17:36:15 -08:00
},
{
"label": "Build Simulator",
"type": "shell",
"command": "make -j12",
2021-05-09 06:17:44 -07:00
"windows": {
"command": "wsl make -j12"
},
"options": {
"cwd": "${workspaceRoot}/simulator"
},
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
}
2020-11-11 17:36:15 -08:00
]
}