a91d319839
* scripts: moved ufbt code * ufbt: fixed tool path * ufbt: fixed linter/formatter target descriptions * scripts: ufbt: cleanup * fbt: moved fap launch target to tools; ufbt fixes * fbt: fixed missing headers from SDK * ufbt: removed debug output * ufbt: moved project template to main codebase * ufbt: fixed vscode_dist * ufbt: path naming changes * fbt: error message for older ufbt versions * ufbt: docs fixes * ufbt: fixed build dir location * fbt: fixes for extapps objcopy * fbt: extapps: removed extra debug output; fixed formatting * ufbt: handle launch target for multiple known apps * ufbt: dropping wrapper; linter fixes * ufbt: fixed boostrap path * ufbt: renamed entrypoint * ufbt: updated vscode config * ufbt: moved sconsign db location * ufbt: fixed sconsign path * fbt: SDK builders rework * fbt: reworked sdk packaging * ufbt: additional checks and state processing * ufbt: fixed sdk state file location * dist: not packaging pycache * dump commit json content * Github: more workflow debug prints * Github: fix incorrect commit meta extraction in get_env.py * ufbt, fbt: changed SConsEnvironmentError->StopError * fbtenv: no longer needs SCRIPT_PATH pre-set * ufbt: fixed sdk state check * scripts: exception fixes for storage.py * scripts: fbtenv: added FBT_TOOLCHAIN_PATH for on Windows for compat * ufbt: app template: creating .gitkeep for images folder * ufbt: app template: fixed .gitkeep creation * docs: formatting fixes for AppManifests; added link to ufbt * fbt: added link to PyPI for old ufbt versions * sdk: fixed dir component paths Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
54 lines
1.5 KiB
JSON
54 lines
1.5 KiB
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
"options": {
|
|
"env": {
|
|
"PATH": "${workspaceFolder}@UFBT_VSCODE_PATH_SEP@${env:PATH}@UFBT_VSCODE_PATH_SEP@@UFBT_ROOT_DIR@"
|
|
}
|
|
},
|
|
"tasks": [
|
|
{
|
|
"label": "Launch App on Flipper",
|
|
"group": "build",
|
|
"type": "shell",
|
|
"command": "ufbt launch"
|
|
},
|
|
{
|
|
"label": "Build",
|
|
"group": "build",
|
|
"type": "shell",
|
|
"command": "ufbt"
|
|
},
|
|
{
|
|
"label": "Flash FW (ST-Link)",
|
|
"group": "build",
|
|
"type": "shell",
|
|
"command": "ufbt FORCE=1 flash"
|
|
},
|
|
// {
|
|
// "label": "[NOTIMPL] Flash FW (blackmagic)",
|
|
// "group": "build",
|
|
// "type": "shell",
|
|
// "command": "ufbt flash_blackmagic"
|
|
// },
|
|
// {
|
|
// "label": "[NOTIMPL] Flash FW (JLink)",
|
|
// "group": "build",
|
|
// "type": "shell",
|
|
// "command": "ufbt FORCE=1 jflash"
|
|
// },
|
|
{
|
|
"label": "Flash FW (USB, with resources)",
|
|
"group": "build",
|
|
"type": "shell",
|
|
"command": "ufbt FORCE=1 flash_usb"
|
|
},
|
|
{
|
|
"label": "Update uFBT SDK",
|
|
"group": "build",
|
|
"type": "shell",
|
|
"command": "ufbt update"
|
|
}
|
|
]
|
|
} |