diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json new file mode 100644 index 0000000..af33879 --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -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 +} \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..ed284a8 --- /dev/null +++ b/.vscode/launch.json @@ -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" + }, + ] +} \ No newline at end of file