This commit is contained in:
Mithras 2020-04-01 02:09:45 +02:00
parent faee9c1363
commit bd7044b397
2 changed files with 41 additions and 0 deletions

22
.vscode/c_cpp_properties.json vendored Normal file
View File

@ -0,0 +1,22 @@
{
"configurations": [
{
"name": "Linux",
"cStandard": "c11",
"cppStandard": "c++17",
"includePath": [
"~/esp/esp-idf/components/**",
"${workspaceFolder}/**"
],
"browse": {
"path": [
"~/esp/esp-idf/components/**",
"${workspaceFolder}"
],
"limitSymbolsToIncludedHeaders": false
},
"compileCommands": "${workspaceFolder}/build/compile_commands.json"
}
],
"version": 4
}

19
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,19 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "cppdbg",
"request": "launch",
"name": "ESP-IDF: Debug",
"miDebuggerPath": "xtensa-esp32-elf-gdb",
"program": "./build/bakalarka.elf",
"miDebuggerServerAddress": ":3333",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": true,
"MIMode": "gdb"
},
]
}