mirror of
https://github.com/stasenso/rp_pico_display_engine.git
synced 2026-06-27 05:42:41 +03:00
Add EngineDemo board presets
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Linux",
|
||||
"includePath": [
|
||||
"${workspaceFolder}/**",
|
||||
"${env:PICO_SDK_PATH}/src/common/pico_stdlib_headers/include"
|
||||
],
|
||||
"defines": [],
|
||||
"cStandard": "c17",
|
||||
"cppStandard": "c++17",
|
||||
"intelliSenseMode": "linux-clang-x64",
|
||||
"configurationProvider": "ms-vscode.cmake-tools",
|
||||
"compileCommands": "${workspaceFolder}/Examples/Thermometr/build/compile_commands.json"
|
||||
}
|
||||
],
|
||||
"version": 4
|
||||
}
|
||||
+41
@@ -0,0 +1,41 @@
|
||||
{
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Pico RP2040 Debug",
|
||||
"type": "cortex-debug",
|
||||
"cwd": "${workspaceFolder}",
|
||||
"executable": "${workspaceFolder}/build-rp2040/engine_demo_example.elf",
|
||||
|
||||
"request": "launch",
|
||||
"servertype": "external",
|
||||
"gdbPath": "gdb-multiarch",
|
||||
"gdbTarget": "localhost:3333",
|
||||
"svdFile": "${env:HOME}/pico/pico-sdk/src/rp2040/hardware_regs/RP2040.svd",
|
||||
"runToEntryPoint": "main",
|
||||
"postRestartCommands": [
|
||||
"break main",
|
||||
"continue"
|
||||
],
|
||||
"showDevDebugOutput": "raw"
|
||||
},
|
||||
{
|
||||
"name": "Pico 2 RP2350 Debug",
|
||||
"type": "cortex-debug",
|
||||
"cwd": "${workspaceFolder}",
|
||||
"executable": "${workspaceFolder}/build-rp2350/engine_demo_example.elf",
|
||||
|
||||
"request": "launch",
|
||||
"servertype": "external",
|
||||
"gdbPath": "gdb-multiarch",
|
||||
"gdbTarget": "localhost:3333",
|
||||
"svdFile": "${env:HOME}/pico/pico-sdk/src/rp2350/hardware_regs/RP2350.svd",
|
||||
"runToEntryPoint": "main",
|
||||
"postRestartCommands": [
|
||||
"break main",
|
||||
"continue"
|
||||
],
|
||||
"showDevDebugOutput": "raw"
|
||||
}
|
||||
]
|
||||
}
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"cmake.ignoreCMakeListsMissing": true,
|
||||
"cmake.useCMakePresets": "always"
|
||||
}
|
||||
Reference in New Issue
Block a user