Now the device id is detected.

This commit is contained in:
François Dausseur
2025-02-12 17:19:33 +01:00
parent a8e7599b96
commit c5fca73cc6
6 changed files with 158 additions and 15 deletions

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

@@ -0,0 +1,15 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "cd build && cmake -DCMAKE_BUILD_TYPE=Debug .. && make",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": ["$gcc"]
}
]
}