add project build automation

This commit is contained in:
Juraj Michalek 2024-09-25 09:03:35 +02:00
commit 399afa8828
7 changed files with 229 additions and 0 deletions

15
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,15 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Wokwi GDB",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build/esp32-c3-lua-test.elf",
"cwd": "${workspaceFolder}",
"MIMode": "gdb",
"miDebuggerPath": "${command:espIdf.getToolchainGdb}",
"miDebuggerServerAddress": "localhost:3333"
}
]
}