From ff7aeb24f69c1dc40d081065434ac0af7c23054f Mon Sep 17 00:00:00 2001 From: wesley-santos <53940899+WesleyJoseSantos@users.noreply.github.com> Date: Thu, 2 Nov 2023 09:19:27 -0300 Subject: [PATCH] chore: vscode generated file --- .vscode/launch.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..215dc69 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,24 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "C/C++ Runner: Debug Session", + "type": "cppdbg", + "request": "launch", + "args": [], + "stopAtEntry": false, + "externalConsole": true, + "cwd": "e:/Projetos/ciot-platform/ciot-c/main/infra/nrf", + "program": "e:/Projetos/ciot-platform/ciot-c/main/infra/nrf/build/Debug/outDebug", + "MIMode": "gdb", + "miDebuggerPath": "gdb", + "setupCommands": [ + { + "description": "Enable pretty-printing for gdb", + "text": "-enable-pretty-printing", + "ignoreFailures": true + } + ] + } + ] +} \ No newline at end of file