Bumped minisatip version to 2.0.75

* Build system was changed to cmake since 2.0.72
This commit is contained in:
2026-02-27 22:16:46 +01:00
parent 47d19b66af
commit 8bc4a162b8
3 changed files with 67 additions and 11 deletions

50
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,50 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Build Packgage",
"type": "shell",
"command": " cd ${input:Package}; abuild -r",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Clean Package",
"type": "shell",
"command": " cd ${input:Package}; abuild clean; abuild cleancache",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Re-generate checksum for package sources",
"type": "shell",
"command": " cd ${input:Package}; abuild clean; abuild cleancache; abuild checksum",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
],
"inputs": [
{
"type": "pickString",
"id": "Package",
"description": "Wich package shoud the command be applied to",
"options": [
"minisatip",
"nut",
"custom-firmware",
"rflink"
],
},
]
}