- deleted poet

- deleted poet2
This commit is contained in:
2024-01-22 13:13:21 +01:00
parent 938368f1fa
commit 26ab5ccbdb
20 changed files with 26 additions and 24929 deletions
+26 -2
View File
@@ -54,11 +54,35 @@
]
},
{
"name": "Release poet.elf (gdb)",
"name": "Release poet.elf (Forward)",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceRoot}/build/release/poet.elf",
"args": [],
"args": ["f"],
"stopAtEntry": false,
"cwd": "${workspaceRoot}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
},
{
"description": "Set Disassembly Flavor to Intel",
"text": "-gdb-set disassembly-flavor intel",
"ignoreFailures": true
}
]
},
{
"name": "Release poet.elf (Train)",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceRoot}/build/release/poet.elf",
"args": ["t"],
"stopAtEntry": false,
"cwd": "${workspaceRoot}",
"environment": [],